Browse Source

avcodec/ac3dec: Use frame_size if superframe_size is 0

Fixes: Infinite loop
Fixes: 7669/clusterfuzz-testcase-ffmpeg_AV_CODEC_ID_AC3_FIXED_fuzzer-4689042185650176
Fixes: 7670/clusterfuzz-testcase-ffmpeg_AV_CODEC_ID_AC3_fuzzer-4706306762997760
Fixes: 7672/clusterfuzz-testcase-ffmpeg_AV_CODEC_ID_EAC3_fuzzer-4702108499574784

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n4.1
Michael Niedermayer 7 years ago
parent
commit
f77eee67e2
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      libavcodec/ac3dec.c

+ 3
- 0
libavcodec/ac3dec.c View File

@@ -1800,6 +1800,9 @@ dependent_frame:

*got_frame_ptr = 1;

if (!s->superframe_size)
return FFMIN(full_buf_size, s->frame_size);

return FFMIN(full_buf_size, s->superframe_size);
}



Loading…
Cancel
Save