]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/f_select.c
avfilter: Constify all AVFilters
[ffmpeg] / libavfilter / f_select.c
index 92938c33aa06751f9a43c0d7debccfb9b50a4723..f0468078e8f8b3cd6802909e337b5270a57740a2 100644 (file)
@@ -476,7 +476,7 @@ static const AVFilterPad avfilter_af_aselect_inputs[] = {
     { NULL }
 };
 
-AVFilter ff_af_aselect = {
+const AVFilter ff_af_aselect = {
     .name        = "aselect",
     .description = NULL_IF_CONFIG_SMALL("Select audio frames to pass in output."),
     .init        = aselect_init,
@@ -540,7 +540,7 @@ static const AVFilterPad avfilter_vf_select_inputs[] = {
     { NULL }
 };
 
-AVFilter ff_vf_select = {
+const AVFilter ff_vf_select = {
     .name          = "select",
     .description   = NULL_IF_CONFIG_SMALL("Select video frames to pass in output."),
     .init          = select_init,