mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/ffv1enc: fix size used for ff_alloc_packet2()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
9a0e20817a
commit
904a2864bd
@ -1015,9 +1015,10 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
|
|||||||
uint8_t keystate = 128;
|
uint8_t keystate = 128;
|
||||||
uint8_t *buf_p;
|
uint8_t *buf_p;
|
||||||
int i, ret;
|
int i, ret;
|
||||||
|
int64_t maxsize = FF_MIN_BUFFER_SIZE
|
||||||
|
+ avctx->width*avctx->height*35LL*4;
|
||||||
|
|
||||||
if ((ret = ff_alloc_packet2(avctx, pkt, avctx->width*avctx->height*((8*2+1+1)*4)/8
|
if ((ret = ff_alloc_packet2(avctx, pkt, maxsize)) < 0)
|
||||||
+ FF_MIN_BUFFER_SIZE)) < 0)
|
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
ff_init_range_encoder(c, pkt->data, pkt->size);
|
ff_init_range_encoder(c, pkt->data, pkt->size);
|
||||||
|
Loading…
Reference in New Issue
Block a user