mirror of https://git.ffmpeg.org/ffmpeg.git
lavf/brstm: allow larger block sizes
Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
d4c9eced98
commit
db426031dd
|
@ -223,7 +223,7 @@ static int read_header(AVFormatContext *s)
|
|||
}
|
||||
|
||||
b->block_size = read32(s);
|
||||
if (b->block_size > UINT16_MAX / st->codec->channels)
|
||||
if (b->block_size > UINT32_MAX / st->codec->channels)
|
||||
return AVERROR_INVALIDDATA;
|
||||
b->block_size *= st->codec->channels;
|
||||
|
||||
|
|
Loading…
Reference in New Issue