summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2019-09-03 00:04:00 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2019-09-25 17:18:37 +0200
commit68c80dc31245f0d173b6df622c2321fada79047a (patch)
tree4e6cbdd75baf35e4791b028a48e76bf2ae100a19 /tools
parentf8406ab4b9f40408f0c559fa1c0aab5ecd159970 (diff)
tools/target_dec_fuzzer: Set max_samples
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'tools')
-rw-r--r--tools/target_dec_fuzzer.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/target_dec_fuzzer.c b/tools/target_dec_fuzzer.c
index ba45b6ac05..0dc1854738 100644
--- a/tools/target_dec_fuzzer.c
+++ b/tools/target_dec_fuzzer.c
@@ -93,6 +93,8 @@ const uint32_t maxiteration = 8096;
const uint64_t maxpixels_per_frame = 4096 * 4096;
uint64_t maxpixels;
+const uint64_t maxsamples_per_frame = 256*1024*32;
+
static const uint64_t FUZZ_TAG = 0x4741542D5A5A5546ULL;
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
@@ -160,6 +162,8 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
ctx->max_pixels = maxpixels_per_frame; //To reduce false positive OOM and hangs
ctx->refcounted_frames = 1; //To reduce false positive timeouts and focus testing on the refcounted API
+ ctx->max_samples = maxsamples_per_frame;
+
if (size > 1024) {
GetByteContext gbc;
int extradata_size;