Lines Matching defs:height
295 int x, int y, int width, int height, ptrdiff_t stride,
305 for (j = 0; j < height; j++) {
327 int x, int y, int width, int height)
332 for (j = y; j < y + height; j++) {
343 int x, int y, int width, int height)
346 y + c->mvY < 0 || y + c->mvY + height > c->avctx->height ||
364 for (j = 0; j < height; j++) {
379 int width, int height,
388 for (j = 0; j < height; j++) {
468 int x, int y, int width, int height)
486 for (i = 0; i < height; i++, dst += stride) {
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)
553 if ((pivot = decode_pivot(sc, acoder, height)) < 1)
557 if (ff_mss12_decode_rect(sc, acoder, x, y + pivot, width, height - pivot))
563 if (ff_mss12_decode_rect(sc, acoder, x, y, pivot, height))
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);
601 avctx->coded_height = FFMAX(AV_RB32(avctx->extradata + 24), avctx->height);
675 c->mask = av_malloc_array(c->mask_stride, avctx->height);