Lines Matching defs:height
60 unsigned int width, height;
105 avctx->coded_height = FFALIGN(avctx->height, 16);
211 ctx->height = AV_RB16(buf + 0x18);
301 if ((ctx->height + 15) >> 4 == ctx->mb_height && frame->interlaced_frame)
302 ctx->height <<= 1;
305 ctx->width, ctx->height, ctx->is_444 ? "4:4" : "2:2",
314 "mb height too big: %d\n", ctx->mb_height);
319 if ((ctx->mb_height << frame->interlaced_frame) > (ctx->height + 15) >> 4) {
321 "mb height too big: %d\n", ctx->mb_height);
634 if ((avctx->width || avctx->height) &&
635 (ctx->width != avctx->width || ctx->height != avctx->height)) {
637 avctx->width, avctx->height, ctx->width, ctx->height);
647 ret = ff_set_dimensions(avctx, ctx->width, ctx->height);