Searched refs:cursor_w (Results 1 - 3 of 3) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
H A D | tdsc.c | 68 int cursor_w, cursor_h, cursor_x, cursor_y; member 152 int w = ctx->cursor_w; in tdsc_paint_cursor() 199 ctx->cursor_w = bytestream2_get_le16(&ctx->gbc); in tdsc_load_cursor() 202 ctx->cursor_stride = FFALIGN(ctx->cursor_w, 32) * 4; in tdsc_load_cursor() 211 if (ctx->cursor_w < 1 || ctx->cursor_w > 256 || in tdsc_load_cursor() 215 ctx->cursor_w, ctx->cursor_h); in tdsc_load_cursor() 218 if (ctx->cursor_hot_x > ctx->cursor_w || in tdsc_load_cursor() 222 ctx->cursor_hot_x = FFMIN(ctx->cursor_hot_x, ctx->cursor_w - 1); in tdsc_load_cursor() 237 for (i = 0; i < ctx->cursor_w; in tdsc_load_cursor() [all...] |
H A D | rasc.c | 57 unsigned cursor_w; member 573 s->cursor_w = w; in decode_mous() 607 if (s->cursor_x + s->cursor_w > avctx->width || in draw_cursor() 614 for (int j = 0; j < s->cursor_w; j++) { in draw_cursor() 615 int cr = s->cursor[3 * s->cursor_w * (s->cursor_h - i - 1) + 3 * j + 0]; in draw_cursor() 616 int cg = s->cursor[3 * s->cursor_w * (s->cursor_h - i - 1) + 3 * j + 1]; in draw_cursor() 617 int cb = s->cursor[3 * s->cursor_w * (s->cursor_h - i - 1) + 3 * j + 2]; in draw_cursor() 642 for (int j = 0; j < s->cursor_w; j++) { in draw_cursor() 643 int cr = s->cursor[3 * s->cursor_w * (s->cursor_h - i - 1) + 3 * j + 0]; in draw_cursor() 644 int cg = s->cursor[3 * s->cursor_w * ( in draw_cursor() [all...] |
H A D | g2meet.c | 161 int cursor_w, cursor_h, cursor_x, cursor_y; member 1210 uint32_t cur_size, cursor_w, cursor_h, cursor_stride; in g2m_load_cursor() local 1215 cursor_w = bytestream2_get_byte(gb); in g2m_load_cursor() 1221 cursor_stride = FFALIGN(cursor_w, cursor_fmt==1 ? 32 : 1) * 4; in g2m_load_cursor() 1223 if (cursor_w < 1 || cursor_w > 256 || in g2m_load_cursor() 1226 cursor_w, cursor_h); in g2m_load_cursor() 1229 if (cursor_hot_x > cursor_w || cursor_hot_y > cursor_h) { in g2m_load_cursor() 1232 cursor_hot_x = FFMIN(cursor_hot_x, cursor_w - 1); in g2m_load_cursor() 1236 c->cursor_w * in g2m_load_cursor() [all...] |
Completed in 6 milliseconds