mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/libxvid: fix potential integer overflow
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
dfffc4aadc
commit
e00499eb4c
@ -713,7 +713,7 @@ static int xvid_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
|
|||||||
xvid_enc_frame_t xvid_enc_frame = { 0 };
|
xvid_enc_frame_t xvid_enc_frame = { 0 };
|
||||||
xvid_enc_stats_t xvid_enc_stats = { 0 };
|
xvid_enc_stats_t xvid_enc_stats = { 0 };
|
||||||
|
|
||||||
if ((ret = ff_alloc_packet2(avctx, pkt, mb_width*mb_height*MAX_MB_BYTES + FF_MIN_BUFFER_SIZE)) < 0)
|
if ((ret = ff_alloc_packet2(avctx, pkt, mb_width*(int64_t)mb_height*MAX_MB_BYTES + FF_MIN_BUFFER_SIZE)) < 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
/* Start setting up the frame */
|
/* Start setting up the frame */
|
||||||
|
Loading…
Reference in New Issue
Block a user