Commit f6b5a5c7 authored by Paul B Mahol's avatar Paul B Mahol

avcodec/dnxhdenc: fix recent regression

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent b9e4bbc6
......@@ -477,7 +477,7 @@ static av_cold int dnxhd_encode_init(AVCodecContext *avctx)
if (ctx->cid_table->frame_size == DNXHD_VARIABLE) {
ctx->frame_size = ff_dnxhd_get_hr_frame_size(ctx->cid,
ctx->m.mb_width, ctx->m.mb_height);
avctx->width, avctx->height);
ctx->coding_unit_size = ctx->frame_size;
} else {
ctx->frame_size = ctx->cid_table->frame_size;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment