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
6f46403c
Commit
6f46403c
authored
Apr 10, 2013
by
Matthieu Bouron
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/il: switch to AVOption-based system
parent
2040b428
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
5 deletions
+2
-5
filters.texi
doc/filters.texi
+1
-2
avfilter.c
libavfilter/avfilter.c
+1
-0
vf_il.c
libavfilter/vf_il.c
+0
-3
No files found.
doc/filters.texi
View file @
6f46403c
...
...
@@ -3750,8 +3750,7 @@ fields (so called half pictures). Odd lines are moved to the top
half of the output image, even lines to the bottom half.
You can process (filter) them independently and then re-interleave them.
It accepts a list of options in the form of @var{key}=@var{value} pairs
separated by ":". A description of the accepted options follows.
The filter accepts the following options:
@table @option
@item luma_mode, l
...
...
libavfilter/avfilter.c
View file @
6f46403c
...
...
@@ -678,6 +678,7 @@ int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque
!
strcmp
(
filter
->
filter
->
name
,
"geq"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"gradfun"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"hqdn3d"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"il"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"ocv"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"lut"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"lutyuv"
)
||
...
...
libavfilter/vf_il.c
View file @
6f46403c
...
...
@@ -204,8 +204,6 @@ static const AVFilterPad outputs[] = {
{
NULL
}
};
static
const
char
*
const
shorthand
[]
=
{
NULL
};
AVFilter
avfilter_vf_il
=
{
.
name
=
"il"
,
.
description
=
NULL_IF_CONFIG_SMALL
(
"Deinterleave or interleave fields."
),
...
...
@@ -214,5 +212,4 @@ AVFilter avfilter_vf_il = {
.
inputs
=
inputs
,
.
outputs
=
outputs
,
.
priv_class
=
&
il_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