Commit 50cfe966 authored by Paul B Mahol's avatar Paul B Mahol

avfilter/vf_il: add support for commands

parent 5fb37598
...@@ -12188,6 +12188,10 @@ Default value is @code{none}. ...@@ -12188,6 +12188,10 @@ Default value is @code{none}.
Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}. Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
@end table @end table
@subsection Commands
This filter supports the all above options as @ref{commands}.
@section inflate @section inflate
Apply inflate effect to the video. Apply inflate effect to the video.
......
...@@ -46,7 +46,7 @@ typedef struct IlContext { ...@@ -46,7 +46,7 @@ typedef struct IlContext {
} IlContext; } IlContext;
#define OFFSET(x) offsetof(IlContext, x) #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[] = { 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"}, {"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 = { ...@@ -210,4 +210,5 @@ AVFilter ff_vf_il = {
.outputs = outputs, .outputs = outputs,
.priv_class = &il_class, .priv_class = &il_class,
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC, .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC,
.process_command = ff_filter_process_command,
}; };
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment