This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

The following commit(s) were added to refs/heads/master by this push:
     new 5622d515e8 tools/target_dec_fuzzer: reduce 4XM max pixels to avoid 
timeout
5622d515e8 is described below

commit 5622d515e83482ed61a275a36bf6dcf1133956a5
Author:     Michael Niedermayer <[email protected]>
AuthorDate: Wed Jun 3 20:07:08 2026 +0200
Commit:     michaelni <[email protected]>
CommitDate: Mon Jun 8 01:21:12 2026 +0000

    tools/target_dec_fuzzer: reduce 4XM max pixels to avoid timeout
    
    Fixes: Timeout
    Fixes: 
511356573/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FOURXM_fuzzer-5010010110492672
    Found-by: continuous fuzzing process 
https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <[email protected]>
---
 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 723f7996d7..6f19e9210a 100644
--- a/tools/target_dec_fuzzer.c
+++ b/tools/target_dec_fuzzer.c
@@ -211,6 +211,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t 
size) {
     maxpixels = maxpixels_per_frame * maxiteration;
     maxsamples = maxsamples_per_frame * maxiteration;
     switch (c->p.id) {
+    case AV_CODEC_ID_4XM:         maxpixels  /= 64;    break;
     case AV_CODEC_ID_AASC:        maxpixels  /= 1024;  break;
     case AV_CODEC_ID_AGM:         maxpixels  /= 1024;  break;
     case AV_CODEC_ID_ANM:         maxpixels  /= 1024;  break;

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to