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
ddaf543a
Commit
ddaf543a
authored
Nov 20, 2013
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/showspectrum: use 0 dummies for range in const.
This is consistent with other options.
parent
9343fc30
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
avf_showspectrum.c
libavfilter/avf_showspectrum.c
+3
-3
No files found.
libavfilter/avf_showspectrum.c
View file @
ddaf543a
...
...
@@ -82,9 +82,9 @@ static const AVOption showspectrum_options[] = {
{
"lin"
,
"linear"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
LINEAR
},
0
,
0
,
FLAGS
,
"scale"
},
{
"saturation"
,
"color saturation multiplier"
,
OFFSET
(
saturation
),
AV_OPT_TYPE_FLOAT
,
{.
dbl
=
1
},
-
10
,
10
,
FLAGS
},
{
"win_func"
,
"set window function"
,
OFFSET
(
win_func
),
AV_OPT_TYPE_INT
,
{.
i64
=
WFUNC_HANN
},
0
,
NB_WFUNC
-
1
,
FLAGS
,
"win_func"
},
{
"hann"
,
"Hann window"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
WFUNC_HANN
},
INT_MIN
,
INT_MAX
,
FLAGS
,
"win_func"
},
{
"hamming"
,
"Hamming window"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
WFUNC_HAMMING
},
INT_MIN
,
INT_MAX
,
FLAGS
,
"win_func"
},
{
"blackman"
,
"Blackman window"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
WFUNC_BLACKMAN
},
INT_MIN
,
INT_MAX
,
FLAGS
,
"win_func"
},
{
"hann"
,
"Hann window"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
WFUNC_HANN
},
0
,
0
,
FLAGS
,
"win_func"
},
{
"hamming"
,
"Hamming window"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
WFUNC_HAMMING
},
0
,
0
,
FLAGS
,
"win_func"
},
{
"blackman"
,
"Blackman window"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
WFUNC_BLACKMAN
},
0
,
0
,
FLAGS
,
"win_func"
},
{
NULL
}
};
...
...
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