[FFmpeg-cvslog] avfilter/vf_convolve: Deduplicate outputs

Andreas Rheinhardt git at videolan.org
Sat Nov 4 02:36:25 EET 2023


ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at outlook.com> | Wed Nov  1 08:50:13 2023 +0100| [50d3c5bd8ca5a1181c1a57dbb8006c9aa87d3c4d] | committer: Andreas Rheinhardt

avfilter/vf_convolve: Deduplicate outputs

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=50d3c5bd8ca5a1181c1a57dbb8006c9aa87d3c4d
---

 libavfilter/vf_convolve.c | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/libavfilter/vf_convolve.c b/libavfilter/vf_convolve.c
index 3246868888..25dc92e988 100644
--- a/libavfilter/vf_convolve.c
+++ b/libavfilter/vf_convolve.c
@@ -955,13 +955,7 @@ static const AVFilterPad xcorrelate_inputs[] = {
     },
 };
 
-static const AVFilterPad xcorrelate_outputs[] = {
-    {
-        .name          = "default",
-        .type          = AVMEDIA_TYPE_VIDEO,
-        .config_props  = config_output,
-    },
-};
+#define xcorrelate_outputs convolve_outputs
 
 const AVFilter ff_vf_xcorrelate = {
     .name          = "xcorrelate",



More information about the ffmpeg-cvslog mailing list