mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-19 05:55:07 +00:00
tools/target_dec_fuzzer: Adjust threshold for BONK
The decoder is quite slow with max n taps Fixes: Timeout Fixes: 54063/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_BONK_fuzzer-5087362407596032 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
bbe95f7353
commit
35871c26d2
@ -215,6 +215,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
||||
case AV_CODEC_ID_ARGO: maxpixels /= 1024; break;
|
||||
case AV_CODEC_ID_BETHSOFTVID: maxpixels /= 8192; break;
|
||||
case AV_CODEC_ID_BINKVIDEO: maxpixels /= 32; break;
|
||||
case AV_CODEC_ID_BONK: maxsamples /= 1<<20; break;
|
||||
case AV_CODEC_ID_CDTOONS: maxpixels /= 1024; break;
|
||||
case AV_CODEC_ID_CFHD: maxpixels /= 16384; break;
|
||||
case AV_CODEC_ID_CINEPAK: maxpixels /= 128; break;
|
||||
|
Loading…
Reference in New Issue
Block a user