From a04ad248a05e7b613abe09b3bb067f555108d794 Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Mon, 19 Apr 2021 18:33:56 +0200 Subject: avfilter: Constify all AVFilters This is possible now that the next-API is gone. Signed-off-by: Andreas Rheinhardt Signed-off-by: James Almer --- libavfilter/vf_mix.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavfilter/vf_mix.c') diff --git a/libavfilter/vf_mix.c b/libavfilter/vf_mix.c index ee4d95791a..0ca60d5522 100644 --- a/libavfilter/vf_mix.c +++ b/libavfilter/vf_mix.c @@ -358,7 +358,7 @@ static const AVFilterPad outputs[] = { #if CONFIG_MIX_FILTER AVFILTER_DEFINE_CLASS(mix); -AVFilter ff_vf_mix = { +const AVFilter ff_vf_mix = { .name = "mix", .description = NULL_IF_CONFIG_SMALL("Mix video inputs."), .priv_size = sizeof(MixContext), @@ -435,7 +435,7 @@ static const AVFilterPad inputs[] = { AVFILTER_DEFINE_CLASS(tmix); -AVFilter ff_vf_tmix = { +const AVFilter ff_vf_tmix = { .name = "tmix", .description = NULL_IF_CONFIG_SMALL("Mix successive video frames."), .priv_size = sizeof(MixContext), -- cgit v1.2.3