mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01: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>
This commit is contained in:
parent
3e97d96e6f
commit
32556fa62b
1 changed files with 3 additions and 0 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue