forked from FFmpeg/FFmpeg
tools/target_dec_fuzzer: Adjust threshold for VP6
Fixes: Timeout (would need 62sec) Fixes: 376731123/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_VP6_fuzzer-5926437896388608 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
f7cc023f06
commit
70514ff0ec
1 changed files with 1 additions and 0 deletions
|
@ -319,6 +319,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
|||
case AV_CODEC_ID_VP3: maxpixels /= 4096; break;
|
||||
case AV_CODEC_ID_VP4: maxpixels /= 4096; break;
|
||||
case AV_CODEC_ID_VP5: maxpixels /= 256; break;
|
||||
case AV_CODEC_ID_VP6: maxpixels /= 4096; break;
|
||||
case AV_CODEC_ID_VP6F: maxpixels /= 4096; break;
|
||||
case AV_CODEC_ID_VP6A: maxpixels /= 4096; break;
|
||||
case AV_CODEC_ID_VP7: maxpixels /= 256; break;
|
||||
|
|
Loading…
Add table
Reference in a new issue