avcodec/cfhdenc: readjust packet allocation

This commit is contained in:
Paul B Mahol 2022-12-01 00:39:05 +01:00
parent 6a7c70fd8b
commit f52963b48e

View File

@ -548,7 +548,7 @@ static int cfhd_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
width, height * 2);
}
ret = ff_alloc_packet(avctx, pkt, 64LL + s->planes * (2LL * avctx->width * avctx->height + 1000LL));
ret = ff_alloc_packet(avctx, pkt, 256LL + s->planes * (2LL * avctx->width * (avctx->height + 15) + 2048LL));
if (ret < 0)
return ret;