summaryrefslogtreecommitdiff
path: root/libavfilter/vf_elbg.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/vf_elbg.c')
-rw-r--r--libavfilter/vf_elbg.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/libavfilter/vf_elbg.c b/libavfilter/vf_elbg.c
index d1166714fc..cc49b8e240 100644
--- a/libavfilter/vf_elbg.c
+++ b/libavfilter/vf_elbg.c
@@ -253,13 +253,6 @@ static const AVFilterPad elbg_inputs[] = {
},
};
-static const AVFilterPad elbg_outputs[] = {
- {
- .name = "default",
- .type = AVMEDIA_TYPE_VIDEO,
- },
-};
-
const AVFilter ff_vf_elbg = {
.name = "elbg",
.description = NULL_IF_CONFIG_SMALL("Apply posterize effect, using the ELBG algorithm."),
@@ -268,6 +261,6 @@ const AVFilter ff_vf_elbg = {
.init = init,
.uninit = uninit,
FILTER_INPUTS(elbg_inputs),
- FILTER_OUTPUTS(elbg_outputs),
+ FILTER_OUTPUTS(ff_video_default_filterpad),
FILTER_QUERY_FUNC(query_formats),
};