diff options
author | Rodger Combs <rodger.combs@gmail.com> | 2015-06-20 05:01:16 -0500 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-06-20 19:21:08 +0200 |
commit | db426031dd27d28df76e833da7f4490c11240981 (patch) | |
tree | aab9af37cc055e7d55a95ce7811616960aa8e5b2 | |
parent | d4c9eced98bbb8f63132c039016abb1f1c4812ed (diff) | |
download | ffmpeg-db426031dd27d28df76e833da7f4490c11240981.tar.gz |
lavf/brstm: allow larger block sizes
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/brstm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/brstm.c b/libavformat/brstm.c index 15e63b8170..564be16ac6 100644 --- a/libavformat/brstm.c +++ b/libavformat/brstm.c @@ -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; |