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
fff7f2df
Commit
fff7f2df
authored
Dec 03, 2015
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/af_agate: change default for detection to rms
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
4a43e559
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
filters.texi
doc/filters.texi
+2
-2
af_agate.c
libavfilter/af_agate.c
+1
-1
No files found.
doc/filters.texi
View file @
fff7f2df
...
@@ -769,7 +769,7 @@ Default is 2.828427125. Allowed range is from 1 to 8.
...
@@ -769,7 +769,7 @@ Default is 2.828427125. Allowed range is from 1 to 8.
@item detection
@item detection
Choose if exact signal should be taken for detection or an RMS like one.
Choose if exact signal should be taken for detection or an RMS like one.
Default is
peak
. Can be peak or rms.
Default is
rms
. Can be peak or rms.
@item link
@item link
Choose if the average level between all channels or the louder channel affects
Choose if the average level between all channels or the louder channel affects
...
@@ -2650,7 +2650,7 @@ Default is 2.828427125. Allowed range is from 1 to 8.
...
@@ -2650,7 +2650,7 @@ Default is 2.828427125. Allowed range is from 1 to 8.
@item detection
@item detection
Choose if exact signal should be taken for detection or an RMS like one.
Choose if exact signal should be taken for detection or an RMS like one.
Default is
peak
. Can be peak or rms.
Default is
rms
. Can be peak or rms.
@item link
@item link
Choose if the average level between all channels or the louder channel affects
Choose if the average level between all channels or the louder channel affects
...
...
libavfilter/af_agate.c
View file @
fff7f2df
...
@@ -69,7 +69,7 @@ static const AVOption options[] = {
...
@@ -69,7 +69,7 @@ static const AVOption options[] = {
{
"release"
,
"set release"
,
OFFSET
(
release
),
AV_OPT_TYPE_DOUBLE
,
{.
dbl
=
250
},
0
.
01
,
9000
,
A
},
{
"release"
,
"set release"
,
OFFSET
(
release
),
AV_OPT_TYPE_DOUBLE
,
{.
dbl
=
250
},
0
.
01
,
9000
,
A
},
{
"makeup"
,
"set makeup gain"
,
OFFSET
(
makeup
),
AV_OPT_TYPE_DOUBLE
,
{.
dbl
=
1
},
1
,
64
,
A
},
{
"makeup"
,
"set makeup gain"
,
OFFSET
(
makeup
),
AV_OPT_TYPE_DOUBLE
,
{.
dbl
=
1
},
1
,
64
,
A
},
{
"knee"
,
"set knee"
,
OFFSET
(
knee
),
AV_OPT_TYPE_DOUBLE
,
{.
dbl
=
2
.
828427125
},
1
,
8
,
A
},
{
"knee"
,
"set knee"
,
OFFSET
(
knee
),
AV_OPT_TYPE_DOUBLE
,
{.
dbl
=
2
.
828427125
},
1
,
8
,
A
},
{
"detection"
,
"set detection"
,
OFFSET
(
detection
),
AV_OPT_TYPE_INT
,
{.
i64
=
0
},
0
,
1
,
A
,
"detection"
},
{
"detection"
,
"set detection"
,
OFFSET
(
detection
),
AV_OPT_TYPE_INT
,
{.
i64
=
1
},
0
,
1
,
A
,
"detection"
},
{
"peak"
,
0
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
0
},
0
,
0
,
A
,
"detection"
},
{
"peak"
,
0
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
0
},
0
,
0
,
A
,
"detection"
},
{
"rms"
,
0
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
1
},
0
,
0
,
A
,
"detection"
},
{
"rms"
,
0
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
1
},
0
,
0
,
A
,
"detection"
},
{
"link"
,
"set link"
,
OFFSET
(
link
),
AV_OPT_TYPE_INT
,
{.
i64
=
0
},
0
,
1
,
A
,
"link"
},
{
"link"
,
"set link"
,
OFFSET
(
link
),
AV_OPT_TYPE_INT
,
{.
i64
=
0
},
0
,
1
,
A
,
"link"
},
...
...
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