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
c85f56bb
Commit
c85f56bb
authored
Apr 11, 2013
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/tinterlace: switch to an AVOptions-based system.
parent
64a10313
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
10 deletions
+2
-10
filters.texi
doc/filters.texi
+1
-7
avfilter.c
libavfilter/avfilter.c
+1
-0
vf_tinterlace.c
libavfilter/vf_tinterlace.c
+0
-3
No files found.
doc/filters.texi
View file @
c85f56bb
...
@@ -5465,13 +5465,7 @@ Perform various types of temporal field interlacing.
...
@@ -5465,13 +5465,7 @@ Perform various types of temporal field interlacing.
Frames are counted starting from 1, so the first input frame is
Frames are counted starting from 1, so the first input frame is
considered odd.
considered odd.
This filter accepts options in the form of @var{key}=@var{value} pairs
The filter accepts the following options:
separated by ":".
Alternatively, the @var{mode} option can be specified as a value alone,
optionally followed by a ":" and further ":" separated @var{key}=@var{value}
pairs.
A description of the accepted options follows.
@table @option
@table @option
...
...
libavfilter/avfilter.c
View file @
c85f56bb
...
@@ -758,6 +758,7 @@ int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque
...
@@ -758,6 +758,7 @@ int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque
!
strcmp
(
filter
->
filter
->
name
,
"testsrc"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"testsrc"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"thumbnail"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"thumbnail"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"tile"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"tile"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"tinterlace"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"transpose"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"transpose"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"treble"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"treble"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"unsharp"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"unsharp"
)
||
...
...
libavfilter/vf_tinterlace.c
View file @
c85f56bb
...
@@ -385,8 +385,6 @@ static const AVFilterPad tinterlace_outputs[] = {
...
@@ -385,8 +385,6 @@ static const AVFilterPad tinterlace_outputs[] = {
{
NULL
}
{
NULL
}
};
};
static
const
char
*
const
shorthand
[]
=
{
"mode"
,
NULL
};
AVFilter
avfilter_vf_tinterlace
=
{
AVFilter
avfilter_vf_tinterlace
=
{
.
name
=
"tinterlace"
,
.
name
=
"tinterlace"
,
.
description
=
NULL_IF_CONFIG_SMALL
(
"Perform temporal field interlacing."
),
.
description
=
NULL_IF_CONFIG_SMALL
(
"Perform temporal field interlacing."
),
...
@@ -396,5 +394,4 @@ AVFilter avfilter_vf_tinterlace = {
...
@@ -396,5 +394,4 @@ AVFilter avfilter_vf_tinterlace = {
.
inputs
=
tinterlace_inputs
,
.
inputs
=
tinterlace_inputs
,
.
outputs
=
tinterlace_outputs
,
.
outputs
=
tinterlace_outputs
,
.
priv_class
=
&
tinterlace_class
,
.
priv_class
=
&
tinterlace_class
,
.
shorthand
=
shorthand
,
};
};
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