Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-08-10 08:08:53 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-08-16 18:15:38 +0300
commit8f51c12f8750efa1f05a61a2535298e64daad1e1 (patch)
tree2175d5895d752d86095f3c77adf257bcda2bbbad /libavfilter/vf_guided.c
parent694ec84ae92f64694c6d6dcd57dcd0bfaf0596f9 (diff)
avfilter/vf_(guided|program_opencl): Add missing dynamic inputs flag
The code for inserting inpads can't be reached by ff_vsrc_openclsrc (unsurprising given that it is a source filter), so it didn't get the flag. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/vf_guided.c')
-rw-r--r--libavfilter/vf_guided.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavfilter/vf_guided.c b/libavfilter/vf_guided.c
index 5d8796c7bf..4003b9578f 100644
--- a/libavfilter/vf_guided.c
+++ b/libavfilter/vf_guided.c
@@ -500,6 +500,7 @@ const AVFilter ff_vf_guided = {
.activate = activate,
.inputs = NULL,
.outputs = guided_outputs,
- .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC | AVFILTER_FLAG_SLICE_THREADS,
+ .flags = AVFILTER_FLAG_DYNAMIC_INPUTS | AVFILTER_FLAG_SLICE_THREADS |
+ AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC,
.process_command = process_command,
};