Signed-off-by: Andreas Rheinhardt <[email protected]>
---
libavfilter/vf_convolve.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/libavfilter/vf_convolve.c b/libavfilter/vf_convolve.c
index ab6d1a271f..2fa33587e3 100644
--- a/libavfilter/vf_convolve.c
+++ b/libavfilter/vf_convolve.c
@@ -655,9 +655,11 @@ static const AVFilterPad convolve_outputs[] = {
},
};
+FRAMESYNC_AUXILIARY_FUNCS(convolve, ConvolveContext, fs)
+
#if CONFIG_CONVOLVE_FILTER
-FRAMESYNC_DEFINE_CLASS(convolve, ConvolveContext, fs);
+FRAMESYNC_DEFINE_PURE_CLASS(convolve, "convolve", convolve, convolve_options);
const AVFilter ff_vf_convolve = {
.name = "convolve",
@@ -687,12 +689,12 @@ static const AVOption deconvolve_options[] = {
{ NULL },
};
-FRAMESYNC_DEFINE_CLASS(deconvolve, ConvolveContext, fs);
+FRAMESYNC_DEFINE_PURE_CLASS(deconvolve, "deconvolve", convolve,
deconvolve_options);
const AVFilter ff_vf_deconvolve = {
.name = "deconvolve",
.description = NULL_IF_CONFIG_SMALL("Deconvolve first video stream with
second video stream."),
- .preinit = deconvolve_framesync_preinit,
+ .preinit = convolve_framesync_preinit,
.init = init,
.uninit = uninit,
.query_formats = query_formats,
--
2.30.2
_______________________________________________
ffmpeg-devel mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".