]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/f_interleave.c
avfilter: Constify all AVFilters
[ffmpeg] / libavfilter / f_interleave.c
index 024657c024d8f4d0f5935bf9e2506c31b6f16b19..259952b5912d94f8a706c7179e59a04b899b749e 100644 (file)
@@ -238,7 +238,7 @@ static const AVFilterPad interleave_outputs[] = {
     { NULL }
 };
 
-AVFilter ff_vf_interleave = {
+const AVFilter ff_vf_interleave = {
     .name        = "interleave",
     .description = NULL_IF_CONFIG_SMALL("Temporally interleave video inputs."),
     .priv_size   = sizeof(InterleaveContext),
@@ -266,7 +266,7 @@ static const AVFilterPad ainterleave_outputs[] = {
     { NULL }
 };
 
-AVFilter ff_af_ainterleave = {
+const AVFilter ff_af_ainterleave = {
     .name        = "ainterleave",
     .description = NULL_IF_CONFIG_SMALL("Temporally interleave audio inputs."),
     .priv_size   = sizeof(InterleaveContext),