From 50d3c5bd8ca5a1181c1a57dbb8006c9aa87d3c4d Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Wed, 1 Nov 2023 08:50:13 +0100 Subject: [PATCH] avfilter/vf_convolve: Deduplicate outputs Signed-off-by: Andreas Rheinhardt --- 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",