summaryrefslogtreecommitdiff
path: root/libavfilter/vf_dedot.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/vf_dedot.c')
-rw-r--r--libavfilter/vf_dedot.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/libavfilter/vf_dedot.c b/libavfilter/vf_dedot.c
index 6ca47c262a..fb62c183d7 100644
--- a/libavfilter/vf_dedot.c
+++ b/libavfilter/vf_dedot.c
@@ -375,13 +375,6 @@ static const AVOption dedot_options[] = {
{ NULL },
};
-static const AVFilterPad inputs[] = {
- {
- .name = "default",
- .type = AVMEDIA_TYPE_VIDEO,
- },
-};
-
static const AVFilterPad outputs[] = {
{
.name = "default",
@@ -399,7 +392,7 @@ const AVFilter ff_vf_dedot = {
.priv_class = &dedot_class,
.activate = activate,
.uninit = uninit,
- FILTER_INPUTS(inputs),
+ FILTER_INPUTS(ff_video_default_filterpad),
FILTER_OUTPUTS(outputs),
FILTER_PIXFMTS_ARRAY(pixel_fmts),
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL | AVFILTER_FLAG_SLICE_THREADS,