mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
dnxhddec: initialize with mb-aligned dimensions
The coded size is a multiple of the macroblock size, which is 16. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
160556c9ad
commit
7e4070d2e7
@ -87,6 +87,9 @@ static av_cold int dnxhd_decode_init(AVCodecContext *avctx)
|
||||
ctx->cid = -1;
|
||||
avctx->colorspace = AVCOL_SPC_BT709;
|
||||
|
||||
avctx->coded_width = FFALIGN(avctx->width, 16);
|
||||
avctx->coded_height = FFALIGN(avctx->height, 16);
|
||||
|
||||
ctx->rows = av_mallocz_array(avctx->thread_count, sizeof(RowContext));
|
||||
if (!ctx->rows)
|
||||
return AVERROR(ENOMEM);
|
||||
|
Loading…
Reference in New Issue
Block a user