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
69b83f59
Commit
69b83f59
authored
May 14, 2017
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/af_compand: fix default companding to avoid clipping
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
8630b2cd
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
filters.texi
doc/filters.texi
+1
-1
af_compand.c
libavfilter/af_compand.c
+1
-1
No files found.
doc/filters.texi
View file @
69b83f59
...
@@ -2080,7 +2080,7 @@ the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
...
@@ -2080,7 +2080,7 @@ the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
The input values must be in strictly increasing order but the transfer function
The input values must be in strictly increasing order but the transfer function
does not have to be monotonically rising. The point @code{0/0} is assumed but
does not have to be monotonically rising. The point @code{0/0} is assumed but
may be overridden (by @code{0/out-dBn}). Typical values for the transfer
may be overridden (by @code{0/out-dBn}). Typical values for the transfer
function are @code{-70/-70|-60/-20}.
function are @code{-70/-70|-60/-20
|1/0
}.
@item soft-knee
@item soft-knee
Set the curve radius in dB for all joints. It defaults to 0.01.
Set the curve radius in dB for all joints. It defaults to 0.01.
...
...
libavfilter/af_compand.c
View file @
69b83f59
...
@@ -74,7 +74,7 @@ typedef struct CompandContext {
...
@@ -74,7 +74,7 @@ typedef struct CompandContext {
static
const
AVOption
compand_options
[]
=
{
static
const
AVOption
compand_options
[]
=
{
{
"attacks"
,
"set time over which increase of volume is determined"
,
OFFSET
(
attacks
),
AV_OPT_TYPE_STRING
,
{
.
str
=
"0.3"
},
0
,
0
,
A
},
{
"attacks"
,
"set time over which increase of volume is determined"
,
OFFSET
(
attacks
),
AV_OPT_TYPE_STRING
,
{
.
str
=
"0.3"
},
0
,
0
,
A
},
{
"decays"
,
"set time over which decrease of volume is determined"
,
OFFSET
(
decays
),
AV_OPT_TYPE_STRING
,
{
.
str
=
"0.8"
},
0
,
0
,
A
},
{
"decays"
,
"set time over which decrease of volume is determined"
,
OFFSET
(
decays
),
AV_OPT_TYPE_STRING
,
{
.
str
=
"0.8"
},
0
,
0
,
A
},
{
"points"
,
"set points of transfer function"
,
OFFSET
(
points
),
AV_OPT_TYPE_STRING
,
{
.
str
=
"-70/-70|-60/-20"
},
0
,
0
,
A
},
{
"points"
,
"set points of transfer function"
,
OFFSET
(
points
),
AV_OPT_TYPE_STRING
,
{
.
str
=
"-70/-70|-60/-20
|1/0
"
},
0
,
0
,
A
},
{
"soft-knee"
,
"set soft-knee"
,
OFFSET
(
curve_dB
),
AV_OPT_TYPE_DOUBLE
,
{
.
dbl
=
0
.
01
},
0
.
01
,
900
,
A
},
{
"soft-knee"
,
"set soft-knee"
,
OFFSET
(
curve_dB
),
AV_OPT_TYPE_DOUBLE
,
{
.
dbl
=
0
.
01
},
0
.
01
,
900
,
A
},
{
"gain"
,
"set output gain"
,
OFFSET
(
gain_dB
),
AV_OPT_TYPE_DOUBLE
,
{
.
dbl
=
0
},
-
900
,
900
,
A
},
{
"gain"
,
"set output gain"
,
OFFSET
(
gain_dB
),
AV_OPT_TYPE_DOUBLE
,
{
.
dbl
=
0
},
-
900
,
900
,
A
},
{
"volume"
,
"set initial volume"
,
OFFSET
(
initial_volume
),
AV_OPT_TYPE_DOUBLE
,
{
.
dbl
=
0
},
-
900
,
0
,
A
},
{
"volume"
,
"set initial volume"
,
OFFSET
(
initial_volume
),
AV_OPT_TYPE_DOUBLE
,
{
.
dbl
=
0
},
-
900
,
0
,
A
},
...
...
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