mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-24 08:12:44 +00:00
tools/target_dec_fuzzer: Adjust GDV pixel threshold down by a factor of 2
Fixes: Timeout (7sec -> 1sec) Fixes: 14709/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_GDV_fuzzer-5704215281795072 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
738ff94f7c
commit
96efaa9a1a
@ -134,7 +134,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
||||
case AV_CODEC_ID_SANM: maxpixels /= 16; break;
|
||||
case AV_CODEC_ID_GIF: maxpixels /= 16; break;
|
||||
// Performs slow frame rescaling in C
|
||||
case AV_CODEC_ID_GDV: maxpixels /= 256; break;
|
||||
case AV_CODEC_ID_GDV: maxpixels /= 512; break;
|
||||
// Postprocessing in C
|
||||
case AV_CODEC_ID_HNM4_VIDEO:maxpixels /= 128; break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user