This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit f81d6479ecf68d514f386372d2c6553cf73d89bc Author: Michael Niedermayer <[email protected]> AuthorDate: Tue Feb 10 02:58:23 2026 +0100 Commit: Michael Niedermayer <[email protected]> CommitDate: Mon Feb 23 23:15:19 2026 +0100 tools/target_dec_fuzzer: Adjust threshold for MPC8 Fixes: Timeout Fixes: 471587345/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MPC8_fuzzer-4824233864921088 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 75323018b8..6e30ae6056 100644 --- a/tools/target_dec_fuzzer.c +++ b/tools/target_dec_fuzzer.c @@ -274,6 +274,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { case AV_CODEC_ID_MP4ALS: maxsamples /= 65536; av_dict_set_int(&opts, "max_order", 15, 0); break; + case AV_CODEC_ID_MUSEPACK8: maxsamples /= 16384; break; case AV_CODEC_ID_MSA1: maxpixels /= 16384; break; case AV_CODEC_ID_MSCC: maxpixels /= 4096; break; case AV_CODEC_ID_MSRLE: maxpixels /= 16; break; _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
