[FFmpeg-cvslog] avfilter/vf_il: add support for commands

Paul B Mahol git at videolan.org
Fri Dec 27 22:21:12 EET 2019


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Fri Dec 27 21:17:00 2019 +0100| [50cfe9662dcd601f34ce0f81b2738f3bcad64661] | committer: Paul B Mahol

avfilter/vf_il: add support for commands

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=50cfe9662dcd601f34ce0f81b2738f3bcad64661
---

 doc/filters.texi    | 4 ++++
 libavfilter/vf_il.c | 3 ++-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/doc/filters.texi b/doc/filters.texi
index ca12bf1b91..655a155c6a 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -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
 
+ at subsection Commands
+
+This filter supports the all above options as @ref{commands}.
+
 @section inflate
 
 Apply inflate effect to the video.
diff --git a/libavfilter/vf_il.c b/libavfilter/vf_il.c
index ae0cc1938a..6cd5f89f76 100644
--- a/libavfilter/vf_il.c
+++ b/libavfilter/vf_il.c
@@ -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,
 };



More information about the ffmpeg-cvslog mailing list