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/f_streamselect.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavfilter/f_streamselect.c') diff --git a/libavfilter/f_streamselect.c b/libavfilter/f_streamselect.c index b3ae4bed62..22eb76d4d7 100644 --- a/libavfilter/f_streamselect.c +++ b/libavfilter/f_streamselect.c @@ -327,7 +327,7 @@ static int query_formats(AVFilterContext *ctx) return 0; } -AVFilter ff_vf_streamselect = { +const AVFilter ff_vf_streamselect = { .name = "streamselect", .description = NULL_IF_CONFIG_SMALL("Select video streams"), .init = init, @@ -343,7 +343,7 @@ AVFilter ff_vf_streamselect = { #define astreamselect_options streamselect_options AVFILTER_DEFINE_CLASS(astreamselect); -AVFilter ff_af_astreamselect = { +const AVFilter ff_af_astreamselect = { .name = "astreamselect", .description = NULL_IF_CONFIG_SMALL("Select audio streams"), .init = init, -- cgit v1.2.3