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
50cfe966
Commit
50cfe966
authored
Dec 27, 2019
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/vf_il: add support for commands
parent
5fb37598
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
filters.texi
doc/filters.texi
+4
-0
vf_il.c
libavfilter/vf_il.c
+2
-1
No files found.
doc/filters.texi
View file @
50cfe966
...
...
@@ -12188,6 +12188,10 @@ Default value is @code{none}.
Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
@end table
@subsection Commands
This filter supports the all above options as @ref{commands}.
@section inflate
Apply inflate effect to the video.
...
...
libavfilter/vf_il.c
View file @
50cfe966
...
...
@@ -46,7 +46,7 @@ typedef struct IlContext {
}
IlContext
;
#define OFFSET(x) offsetof(IlContext, x)
#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
|AV_OPT_FLAG_RUNTIME_PARAM
static
const
AVOption
il_options
[]
=
{
{
"luma_mode"
,
"select luma mode"
,
OFFSET
(
luma_mode
),
AV_OPT_TYPE_INT
,
{.
i64
=
MODE_NONE
},
MODE_NONE
,
MODE_DEINTERLEAVE
,
FLAGS
,
"luma_mode"
},
...
...
@@ -210,4 +210,5 @@ AVFilter ff_vf_il = {
.
outputs
=
outputs
,
.
priv_class
=
&
il_class
,
.
flags
=
AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
,
.
process_command
=
ff_filter_process_command
,
};
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