mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
avcodec/speexdec: further check for sane frame_size values
Prevent potential integer overflows. Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
d897bbb48d
commit
0895ef0d6d
@ -1421,9 +1421,10 @@ static int parse_speex_extradata(AVCodecContext *avctx,
|
||||
return AVERROR_INVALIDDATA;
|
||||
s->bitrate = bytestream_get_le32(&buf);
|
||||
s->frame_size = bytestream_get_le32(&buf);
|
||||
if (s->frame_size < NB_FRAME_SIZE << (s->mode > 0))
|
||||
if (s->frame_size < NB_FRAME_SIZE << (s->mode > 0) ||
|
||||
s->frame_size > INT32_MAX >> (s->mode > 0))
|
||||
return AVERROR_INVALIDDATA;
|
||||
s->frame_size *= 1 + (s->mode > 0);
|
||||
s->frame_size <<= (s->mode > 0);
|
||||
s->vbr = bytestream_get_le32(&buf);
|
||||
s->frames_per_packet = bytestream_get_le32(&buf);
|
||||
if (s->frames_per_packet <= 0 ||
|
||||
|
Loading…
Reference in New Issue
Block a user