Lines Matching defs:cursor
55 uint8_t *cursor;
560 av_fast_padded_malloc(&s->cursor, &s->cursor_size, uncompressed_size);
561 if (!s->cursor)
569 memcpy(s->cursor, s->delta, uncompressed_size);
601 if (!s->cursor)
615 int cr = s->cursor[3 * s->cursor_w * (s->cursor_h - i - 1) + 3 * j + 0];
616 int cg = s->cursor[3 * s->cursor_w * (s->cursor_h - i - 1) + 3 * j + 1];
617 int cb = s->cursor[3 * s->cursor_w * (s->cursor_h - i - 1) + 3 * j + 2];
622 if (cr == s->cursor[0] && cg == s->cursor[1] && cb == s->cursor[2])
643 int cr = s->cursor[3 * s->cursor_w * (s->cursor_h - i - 1) + 3 * j + 0];
644 int cg = s->cursor[3 * s->cursor_w * (s->cursor_h - i - 1) + 3 * j + 1];
645 int cb = s->cursor[3 * s->cursor_w * (s->cursor_h - i - 1) + 3 * j + 2];
647 if (cr == s->cursor[0] && cg == s->cursor[1] && cb == s->cursor[2])
658 int cr = s->cursor[3 * s->cursor_w * (s->cursor_h - i - 1) + 3 * j + 0];
659 int cg = s->cursor[3 * s->cursor_w * (s->cursor_h - i - 1) + 3 * j + 1];
660 int cb = s->cursor[3 * s->cursor_w * (s->cursor_h - i - 1) + 3 * j + 2];
662 if (cr == s->cursor[0] && cg == s->cursor[1] && cb == s->cursor[2])
769 av_freep(&s->cursor);
789 { "skip_cursor", "skip the cursor", offsetof(RASCContext, skip_cursor), AV_OPT_TYPE_BOOL, {.i64 = 0 }, 0, 1, AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_VIDEO_PARAM },