Lines Matching refs:mb_height
62 unsigned int mb_width, mb_height;
299 ctx->mb_height = AV_RB16(buf + 0x16c);
301 if ((ctx->height + 15) >> 4 == ctx->mb_height && frame->interlaced_frame)
309 if (ctx->mb_height > 68 && ff_dnxhd_check_header_prefix_hr(header_prefix)) {
310 ctx->data_offset = 0x170 + (ctx->mb_height << 2);
312 if (ctx->mb_height > 68) {
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);
331 if (ctx->mb_height > FF_ARRAY_ELEMS(ctx->mb_scan_index)) {
333 "mb_height too big (%d > %"SIZE_SPECIFIER").\n", ctx->mb_height, FF_ARRAY_ELEMS(ctx->mb_scan_index));
337 for (i = 0; i < ctx->mb_height; i++) {
660 avctx->execute2(avctx, dnxhd_decode_row, picture, NULL, ctx->mb_height);