summaryrefslogtreecommitdiff
path: root/libavfilter/vf_w3fdif.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2020-12-30 16:31:19 +0100
committerPaul B Mahol <onemda@gmail.com>2020-12-30 16:33:30 +0100
commit2f20e35892c866d4e141e73a3e2df16457f9a21a (patch)
tree71ba676e5b2835c174464f42a260afb38ae6bde9 /libavfilter/vf_w3fdif.c
parentaea3cf4f18d005c01d57d52019f15cf5e84e14ec (diff)
avfilter/vf_w3fdif: add support for commands
Diffstat (limited to 'libavfilter/vf_w3fdif.c')
-rw-r--r--libavfilter/vf_w3fdif.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavfilter/vf_w3fdif.c b/libavfilter/vf_w3fdif.c
index 5d64dbd953..c7c6984241 100644
--- a/libavfilter/vf_w3fdif.c
+++ b/libavfilter/vf_w3fdif.c
@@ -49,7 +49,7 @@ typedef struct W3FDIFContext {
} W3FDIFContext;
#define OFFSET(x) offsetof(W3FDIFContext, x)
-#define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
+#define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
#define CONST(name, help, val, unit) { name, help, 0, AV_OPT_TYPE_CONST, {.i64=val}, 0, 0, FLAGS, unit }
static const AVOption w3fdif_options[] = {
@@ -602,4 +602,5 @@ AVFilter ff_vf_w3fdif = {
.inputs = w3fdif_inputs,
.outputs = w3fdif_outputs,
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL | AVFILTER_FLAG_SLICE_THREADS,
+ .process_command = ff_filter_process_command,
};