]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/vf_tinterlace.c
avfilter: Constify all AVFilters
[ffmpeg] / libavfilter / vf_tinterlace.c
index 542b66898e7a39c4a796a19b53e042fce9dc218c..40d8879871030b44c3a03ac4be2dde9a636b47e4 100644 (file)
@@ -555,7 +555,7 @@ static const AVFilterPad tinterlace_outputs[] = {
     { NULL }
 };
 
-AVFilter ff_vf_tinterlace = {
+const AVFilter ff_vf_tinterlace = {
     .name          = "tinterlace",
     .description   = NULL_IF_CONFIG_SMALL("Perform temporal field interlacing."),
     .priv_size     = sizeof(TInterlaceContext),
@@ -567,7 +567,7 @@ AVFilter ff_vf_tinterlace = {
 };
 
 
-AVFilter ff_vf_interlace = {
+const AVFilter ff_vf_interlace = {
     .name          = "interlace",
     .description   = NULL_IF_CONFIG_SMALL("Convert progressive video into interlaced."),
     .priv_size     = sizeof(TInterlaceContext),