]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/f_streamselect.c
avfilter: Constify all AVFilters
[ffmpeg] / libavfilter / f_streamselect.c
index b3ae4bed62e189f24bb95d1fcc396ff72b427ab6..22eb76d4d755fc687a8e687dbeca209933785668 100644 (file)
@@ -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,