summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2020-02-11 13:57:43 +0100
committerPaul B Mahol <onemda@gmail.com>2020-02-11 14:00:21 +0100
commit52cd7a63374c1d62a188a0e425fb998848a70bf8 (patch)
tree7b8d1fd8a07ea925873ebf4fa1407920f102eef0 /libavfilter
parente8cbdb9adbe5fff49f9fca8879ad8660801c007e (diff)
downloadffmpeg-52cd7a63374c1d62a188a0e425fb998848a70bf8.tar.gz
avfilter/vf_colorkey: add support for commands
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/vf_colorkey.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libavfilter/vf_colorkey.c b/libavfilter/vf_colorkey.c
index 4e37c7f0c9..3cc3961a92 100644
--- a/libavfilter/vf_colorkey.c
+++ b/libavfilter/vf_colorkey.c
@@ -199,7 +199,7 @@ static const AVFilterPad colorkey_outputs[] = {
};
#define OFFSET(x) offsetof(ColorkeyContext, 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
#if CONFIG_COLORKEY_FILTER
@@ -222,6 +222,7 @@ AVFilter ff_vf_colorkey = {
.inputs = colorkey_inputs,
.outputs = colorkey_outputs,
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC | AVFILTER_FLAG_SLICE_THREADS,
+ .process_command = ff_filter_process_command,
};
#endif /* CONFIG_COLORKEY_FILTER */
@@ -246,6 +247,7 @@ AVFilter ff_vf_colorhold = {
.inputs = colorkey_inputs,
.outputs = colorkey_outputs,
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC | AVFILTER_FLAG_SLICE_THREADS,
+ .process_command = ff_filter_process_command,
};
#endif /* CONFIG_COLORHOLD_FILTER */