summaryrefslogtreecommitdiff
path: root/libavfilter/vf_colorcontrast.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/vf_colorcontrast.c')
-rw-r--r--libavfilter/vf_colorcontrast.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/libavfilter/vf_colorcontrast.c b/libavfilter/vf_colorcontrast.c
index 7561d21259..2cb46cc35a 100644
--- a/libavfilter/vf_colorcontrast.c
+++ b/libavfilter/vf_colorcontrast.c
@@ -359,13 +359,6 @@ static const AVFilterPad colorcontrast_inputs[] = {
},
};
-static const AVFilterPad colorcontrast_outputs[] = {
- {
- .name = "default",
- .type = AVMEDIA_TYPE_VIDEO,
- },
-};
-
#define OFFSET(x) offsetof(ColorContrastContext, x)
#define VF AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
@@ -388,7 +381,7 @@ const AVFilter ff_vf_colorcontrast = {
.priv_size = sizeof(ColorContrastContext),
.priv_class = &colorcontrast_class,
FILTER_INPUTS(colorcontrast_inputs),
- FILTER_OUTPUTS(colorcontrast_outputs),
+ FILTER_OUTPUTS(ff_video_default_filterpad),
FILTER_PIXFMTS_ARRAY(pixel_fmts),
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC | AVFILTER_FLAG_SLICE_THREADS,
.process_command = ff_filter_process_command,