Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
68c80dc3
Commit
68c80dc3
authored
Sep 02, 2019
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tools/target_dec_fuzzer: Set max_samples
Signed-off-by:
Michael Niedermayer
<
michael@niedermayer.cc
>
parent
f8406ab4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
target_dec_fuzzer.c
tools/target_dec_fuzzer.c
+4
-0
No files found.
tools/target_dec_fuzzer.c
View file @
68c80dc3
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment