Lines Matching defs:height
285 frame->height = avctx->height;
362 frame->height = avctx->height;
387 "Frame: width=%d stride=%d height=%d slice-height=%d "
390 avctx->width, s->stride, avctx->height, s->slice_height,
443 int height = 0;
462 AMEDIAFORMAT_GET_INT32(s->height, "height", 1);
467 AMEDIAFORMAT_GET_INT32(s->slice_height, "slice-height", 0);
470 s->slice_height = FFALIGN(s->height, 16);
472 s->slice_height = avctx->height;
475 s->slice_height = s->height;
493 height = s->crop_bottom + 1 - s->crop_top;
496 AMEDIAFORMAT_GET_INT32(s->display_height, "display-height", 0);
501 (AVRational){ width, height });
521 "resulting dimensions width=%d height=%d\n",
523 width, height);
526 return ff_set_dimensions(avctx, width, height);