forked from FFmpeg/FFmpeg
tools/target_dec_fuzzer: Adjust threshold for binkvideo
Fixes: Timeout (89sec -> 7sec) Fixes: 17035/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_BINK_fuzzer-5737222422134784 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Reviewed-by: Peter Ross <pross@xvid.org> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
093d1f4250
commit
65589ad553
1 changed files with 1 additions and 0 deletions
|
@ -128,6 +128,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
|||
maxpixels = maxpixels_per_frame * maxiteration;
|
||||
switch (c->id) {
|
||||
// Allows a small input to generate gigantic output
|
||||
case AV_CODEC_ID_BINKVIDEO: maxpixels /= 32; break;
|
||||
case AV_CODEC_ID_DIRAC: maxpixels /= 8192; break;
|
||||
case AV_CODEC_ID_MSRLE: maxpixels /= 16; break;
|
||||
case AV_CODEC_ID_QTRLE: maxpixels /= 16; break;
|
||||
|
|
Loading…
Add table
Reference in a new issue