forked from FFmpeg/FFmpeg
tools/target_dec_fuzzer: Adjust threshold for LOCO
Fixes: Timeout Fixes: 48584/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_LOCO_fuzzer-5741269015461888 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
6003fe6344
commit
248d981071
1 changed files with 1 additions and 0 deletions
|
@ -240,6 +240,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
|||
case AV_CODEC_ID_INTERPLAY_ACM: maxsamples /= 16384; break;
|
||||
case AV_CODEC_ID_JPEG2000: maxpixels /= 16; break;
|
||||
case AV_CODEC_ID_LAGARITH: maxpixels /= 1024; break;
|
||||
case AV_CODEC_ID_LOCO: maxpixels /= 1024; break;
|
||||
case AV_CODEC_ID_VORBIS: maxsamples /= 1024; break;
|
||||
case AV_CODEC_ID_LSCR: maxpixels /= 16; break;
|
||||
case AV_CODEC_ID_MOTIONPIXELS:maxpixels /= 256; break;
|
||||
|
|
Loading…
Add table
Reference in a new issue