aboutsummaryrefslogtreecommitdiffstats
path: root/libavfilter/vf_convolve.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2023-11-01 08:50:13 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2023-11-04 01:24:09 +0100
commit50d3c5bd8ca5a1181c1a57dbb8006c9aa87d3c4d (patch)
treec576cd6f53142ef7a99f6c496755ef91fa2f8eb2 /libavfilter/vf_convolve.c
parente557d89ac109e4c6353481803f2feeb3313fc6ce (diff)
downloadffmpeg-50d3c5bd8ca5a1181c1a57dbb8006c9aa87d3c4d.tar.gz
avfilter/vf_convolve: Deduplicate outputs
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/vf_convolve.c')
-rw-r--r--libavfilter/vf_convolve.c8
1 files changed, 1 insertions, 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",