mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
tools/target_dec_fuzzer: Adjust threshold for MXPEG
Fixes: Timeout Fixes: 39813/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MXPEG_fuzzer-6010298067189760 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
e154353fdb
commit
6bba9d960b
@ -184,6 +184,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
||||
case AV_CODEC_ID_MSRLE: maxpixels /= 16; break;
|
||||
case AV_CODEC_ID_MSS2: maxpixels /= 16384; break;
|
||||
case AV_CODEC_ID_MSZH: maxpixels /= 128; break;
|
||||
case AV_CODEC_ID_MXPEG: maxpixels /= 128; break;
|
||||
case AV_CODEC_ID_OPUS: maxsamples /= 16384; break;
|
||||
case AV_CODEC_ID_PNG: maxpixels /= 128; break;
|
||||
case AV_CODEC_ID_APNG: maxpixels /= 128; break;
|
||||
|
Loading…
Reference in New Issue
Block a user