aboutsummaryrefslogtreecommitdiffstats
path: root/tools/target_dec_fuzzer.c
diff options
context:
space:
mode:
authorKacper Michajłow <kasper93@gmail.com>2025-07-26 05:01:14 +0200
committerKacper Michajłow <kasper93@gmail.com>2025-08-05 03:27:54 +0200
commitc24b9b4b73989fb360f486f5f45e63b36e42c9b2 (patch)
treed098809542abe9d6e9e88465b8edbaff149c1721 /tools/target_dec_fuzzer.c
parent8b5db38dc6d0bec05ce7e4c1451986055032ed9c (diff)
downloadffmpeg-c24b9b4b73989fb360f486f5f45e63b36e42c9b2.tar.gz
tools/target_fuzzer: don't spam stderr
Printing dummy logs during fuzzing can significantly slow the process and blow the size of logs, making them both unredable and huge. Keep the loggging commented-out for easy local restore if needed. Signed-off-by: Kacper Michajłow <kasper93@gmail.com>
Diffstat (limited to 'tools/target_dec_fuzzer.c')
-rw-r--r--tools/target_dec_fuzzer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/target_dec_fuzzer.c b/tools/target_dec_fuzzer.c
index dcfc64b18a..e2fc2bff44 100644
--- a/tools/target_dec_fuzzer.c
+++ b/tools/target_dec_fuzzer.c
@@ -622,7 +622,7 @@ maximums_reached:
break;
} while (got_frame == 1 && it++ < maxiteration);
- fprintf(stderr, "pixels decoded: %"PRId64", samples decoded: %"PRId64", iterations: %d\n", ec_pixels, nb_samples, it);
+ // fprintf(stderr, "pixels decoded: %"PRId64", samples decoded: %"PRId64", iterations: %d\n", ec_pixels, nb_samples, it);
av_frame_free(&frame);
avcodec_free_context(&ctx);