mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-08 22:39:44 +02:00
avformat/avr: Check sample rate
Fixes: 54979/clusterfuzz-testcase-minimized-ffmpeg_dem_AVR_fuzzer-6681035461230592 Fixes: Timeout Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Reviewed-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 32556fa62b1d0615f621fd8f71bdfe3b72e43896) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
2496162217
commit
b527b2e1d4
@ -70,6 +70,9 @@ static int avr_read_header(AVFormatContext *s)
|
||||
avio_skip(s->pb, 1); // replay speed
|
||||
|
||||
st->codecpar->sample_rate = avio_rb24(s->pb);
|
||||
if (st->codecpar->sample_rate == 0)
|
||||
return AVERROR_INVALIDDATA;
|
||||
|
||||
avio_skip(s->pb, 4 * 3);
|
||||
avio_skip(s->pb, 2 * 3);
|
||||
avio_skip(s->pb, 20);
|
||||
|
Loading…
x
Reference in New Issue
Block a user