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
faa9cd31
Commit
faa9cd31
authored
Aug 12, 2019
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tools/target_dec_fuzzer: Add missing breaks
Signed-off-by:
Michael Niedermayer
<
michael@niedermayer.cc
>
parent
9e0e9a5f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
target_dec_fuzzer.c
tools/target_dec_fuzzer.c
+4
-4
No files found.
tools/target_dec_fuzzer.c
View file @
faa9cd31
...
@@ -170,12 +170,12 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
...
@@ -170,12 +170,12 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
maxpixels
=
maxpixels_per_frame
*
maxiteration
;
maxpixels
=
maxpixels_per_frame
*
maxiteration
;
switch
(
c
->
id
)
{
switch
(
c
->
id
)
{
// Allows a small input to generate gigantic output
// Allows a small input to generate gigantic output
case
AV_CODEC_ID_QTRLE
:
maxpixels
/=
16
;
case
AV_CODEC_ID_QTRLE
:
maxpixels
/=
16
;
break
;
case
AV_CODEC_ID_GIF
:
maxpixels
/=
16
;
case
AV_CODEC_ID_GIF
:
maxpixels
/=
16
;
break
;
// Performs slow frame rescaling in C
// Performs slow frame rescaling in C
case
AV_CODEC_ID_GDV
:
maxpixels
/=
256
;
case
AV_CODEC_ID_GDV
:
maxpixels
/=
256
;
break
;
// Postprocessing in C
// Postprocessing in C
case
AV_CODEC_ID_HNM4_VIDEO
:
maxpixels
/=
128
;
case
AV_CODEC_ID_HNM4_VIDEO
:
maxpixels
/=
128
;
break
;
}
}
...
...
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