summaryrefslogtreecommitdiff
path: root/libavfilter/vf_program_opencl.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-08-10 07:08:53 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-08-16 17:15:38 +0200
commit8f51c12f8750efa1f05a61a2535298e64daad1e1 (patch)
tree2175d5895d752d86095f3c77adf257bcda2bbbad /libavfilter/vf_program_opencl.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_program_opencl.c')
-rw-r--r--libavfilter/vf_program_opencl.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/vf_program_opencl.c b/libavfilter/vf_program_opencl.c
index 4b38baeb3c..5f455e9afa 100644
--- a/libavfilter/vf_program_opencl.c
+++ b/libavfilter/vf_program_opencl.c
@@ -367,6 +367,7 @@ const AVFilter ff_vf_program_opencl = {
.description = NULL_IF_CONFIG_SMALL("Filter video using an OpenCL program"),
.priv_size = sizeof(ProgramOpenCLContext),
.priv_class = &program_opencl_class,
+ .flags = AVFILTER_FLAG_DYNAMIC_INPUTS,
.preinit = &program_opencl_framesync_preinit,
.init = &program_opencl_init,
.uninit = &program_opencl_uninit,