Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
2b17e581
Commit
2b17e581
authored
Apr 10, 2013
by
Matthieu Bouron
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/afade: switch to AVOption-base system
parent
6afed2ae
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_afade.c
libavfilter/af_afade.c
+0
-3
avfilter.c
libavfilter/avfilter.c
+1
-0
No files found.
doc/filters.texi
View file @
2b17e581
...
@@ -610,9 +610,6 @@ Beware of clipping when using a positive gain.
...
@@ -610,9 +610,6 @@ Beware of clipping when using a positive gain.
Apply fade-in/out effect to input audio.
Apply fade-in/out effect to input audio.
The filter accepts parameters as a list of @var{key}=@var{value}
pairs, separated by ":".
A description of the accepted parameters follows.
A description of the accepted parameters follows.
@table @option
@table @option
...
...
libavfilter/af_afade.c
View file @
2b17e581
...
@@ -288,8 +288,6 @@ static const AVFilterPad avfilter_af_afade_outputs[] = {
...
@@ -288,8 +288,6 @@ static const AVFilterPad avfilter_af_afade_outputs[] = {
{
NULL
}
{
NULL
}
};
};
static
const
char
*
const
shorthand
[]
=
{
NULL
};
AVFilter
avfilter_af_afade
=
{
AVFilter
avfilter_af_afade
=
{
.
name
=
"afade"
,
.
name
=
"afade"
,
.
description
=
NULL_IF_CONFIG_SMALL
(
"Fade in/out input audio."
),
.
description
=
NULL_IF_CONFIG_SMALL
(
"Fade in/out input audio."
),
...
@@ -299,5 +297,4 @@ AVFilter avfilter_af_afade = {
...
@@ -299,5 +297,4 @@ AVFilter avfilter_af_afade = {
.
inputs
=
avfilter_af_afade_inputs
,
.
inputs
=
avfilter_af_afade_inputs
,
.
outputs
=
avfilter_af_afade_outputs
,
.
outputs
=
avfilter_af_afade_outputs
,
.
priv_class
=
&
afade_class
,
.
priv_class
=
&
afade_class
,
.
shorthand
=
shorthand
,
};
};
libavfilter/avfilter.c
View file @
2b17e581
...
@@ -656,6 +656,7 @@ int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque
...
@@ -656,6 +656,7 @@ int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque
AVDictionaryEntry
*
e
;
AVDictionaryEntry
*
e
;
int
ret
=
0
;
int
ret
=
0
;
int
anton_options
=
int
anton_options
=
!
strcmp
(
filter
->
filter
->
name
,
"afade"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"aformat"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"aformat"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"ass"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"ass"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"blackframe"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"blackframe"
)
||
...
...
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