Browse Source

ffv1enc: use 64bit in maxsize calculation

This isnt needed but it cant hurt, its also more consistent with
how its calculated a few lines before.

See: CID1108593
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.1
Michael Niedermayer 11 years ago
parent
commit
62533eab6f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/ffv1enc.c

+ 1
- 1
libavcodec/ffv1enc.c View File

@@ -1069,7 +1069,7 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
+ avctx->width*avctx->height*35LL*4;

if (f->version > 3)
maxsize = FF_MIN_BUFFER_SIZE + avctx->width*avctx->height*3*4;
maxsize = FF_MIN_BUFFER_SIZE + avctx->width*avctx->height*3LL*4;

if ((ret = ff_alloc_packet2(avctx, pkt, maxsize)) < 0)
return ret;


Loading…
Cancel
Save