Lines Matching defs:width
295 int x, int y, int width, int height, ptrdiff_t stride,
306 for (i = 0; i < width; i++) {
311 i, j, width - i - 1);
327 int x, int y, int width, int height)
335 width * 3);
338 width);
343 int x, int y, int width, int height)
345 if (x + c->mvX < 0 || x + c->mvX + width > c->avctx->width ||
365 memmove(dst, src, width);
366 memmove(rgb_dst, rgb_src, width * 3);
379 int width, int height,
389 for (i = 0; i < width; i++) {
405 i, j, width - i - 1);
468 int x, int y, int width, int height)
487 memset(dst, pix, width);
489 for (j = 0; j < width * 3; j += 3)
496 x, y, width, height, c->pal_stride, c->rgb_stride,
504 int x, int y, int width, int height)
522 copy_rectangles(c, x, y, width, height);
524 return motion_compensation(c, x, y, width, height);
526 return decode_region_intra(sc, acoder, x, y, width, height);
529 x, y, width, height, c->mask_stride, 0,
535 x, y, width, height,
543 int x, int y, int width, int height)
555 if (ff_mss12_decode_rect(sc, acoder, x, y, width, pivot))
557 if (ff_mss12_decode_rect(sc, acoder, x, y + pivot, width, height - pivot))
561 if ((pivot = decode_pivot(sc, acoder, width)) < 1)
565 if (ff_mss12_decode_rect(sc, acoder, x + pivot, y, width - pivot, height))
570 return decode_region_intra(sc, acoder, x, y, width, height);
572 return decode_region_inter(sc, acoder, x, y, width, height);
600 avctx->coded_width = FFMAX(AV_RB32(avctx->extradata + 20), avctx->width);
674 c->mask_stride = FFALIGN(avctx->width, 16);