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
f43da3de
Commit
f43da3de
authored
Apr 10, 2013
by
Matthieu Bouron
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/aphaser: switch to AVOption-based system
parent
a5ce5ac9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
6 deletions
+1
-6
filters.texi
doc/filters.texi
+0
-3
af_aphaser.c
libavfilter/af_aphaser.c
+0
-3
avfilter.c
libavfilter/avfilter.c
+1
-0
No files found.
doc/filters.texi
View file @
f43da3de
...
...
@@ -6343,9 +6343,6 @@ Add a phasing effect to the input audio.
A phaser filter creates series of peaks and troughs in the frequency spectrum.
The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
The filter accepts parameters as a list of @var{key}=@var{value}
pairs, separated by ":".
A description of the accepted parameters follows.
@table @option
...
...
libavfilter/af_aphaser.c
View file @
f43da3de
...
...
@@ -344,8 +344,6 @@ static const AVFilterPad aphaser_outputs[] = {
{
NULL
}
};
static
const
char
*
const
shorthand
[]
=
{
"in_gain"
,
"out_gain"
,
"delay"
,
"decay"
,
"speed"
,
"type"
,
NULL
};
AVFilter
avfilter_af_aphaser
=
{
.
name
=
"aphaser"
,
.
description
=
NULL_IF_CONFIG_SMALL
(
"Add a phasing effect to the audio."
),
...
...
@@ -356,5 +354,4 @@ AVFilter avfilter_af_aphaser = {
.
inputs
=
aphaser_inputs
,
.
outputs
=
aphaser_outputs
,
.
priv_class
=
&
aphaser_class
,
.
shorthand
=
shorthand
,
};
libavfilter/avfilter.c
View file @
f43da3de
...
...
@@ -659,6 +659,7 @@ int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque
!
strcmp
(
filter
->
filter
->
name
,
"afade"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"aformat"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"apad"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"aphaser"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"ass"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"blackframe"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"blend"
)
||
...
...
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