[FFmpeg-cvslog] tools/target_dec_fuzzer: Adjust threshold for LSCR

Michael Niedermayer git at videolan.org
Tue Sep 10 00:05:15 EEST 2019


ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Sun Aug 25 17:42:19 2019 +0200| [9d1e98afeecbd0c08b414f452967c47f7d846921] | committer: Michael Niedermayer

tools/target_dec_fuzzer: Adjust threshold for LSCR

Fixes: Timeout (12sec -> 3sec)
Fixes: 15327/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_LSCR_fuzzer-5702887719567360

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9d1e98afeecbd0c08b414f452967c47f7d846921
---

 tools/target_dec_fuzzer.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/target_dec_fuzzer.c b/tools/target_dec_fuzzer.c
index 3a19efd031..6fb53d5ab2 100644
--- a/tools/target_dec_fuzzer.c
+++ b/tools/target_dec_fuzzer.c
@@ -139,6 +139,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
     case AV_CODEC_ID_HNM4_VIDEO:maxpixels /= 128; break;
         // Cliping in C, generally slow even with small input
     case AV_CODEC_ID_INDEO4:    maxpixels /= 128; break;
+    case AV_CODEC_ID_LSCR:        maxpixels /= 16; break;
     case AV_CODEC_ID_TRUEMOTION2: maxpixels /= 1024; break;
     }
 



More information about the ffmpeg-cvslog mailing list