]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/vf_blend.c
avfilter: Constify all AVFilters
[ffmpeg] / libavfilter / vf_blend.c
index d12bfffbedf446d320a76fc88dc7235b313c8d23..0b33107b79b28ec2419f383c17a36b470d502645 100644 (file)
@@ -906,7 +906,7 @@ static const AVFilterPad blend_outputs[] = {
     { NULL }
 };
 
-AVFilter ff_vf_blend = {
+const AVFilter ff_vf_blend = {
     .name          = "blend",
     .description   = NULL_IF_CONFIG_SMALL("Blend two video frames into each other."),
     .preinit       = blend_framesync_preinit,
@@ -968,7 +968,7 @@ static const AVFilterPad tblend_outputs[] = {
     { NULL }
 };
 
-AVFilter ff_vf_tblend = {
+const AVFilter ff_vf_tblend = {
     .name          = "tblend",
     .description   = NULL_IF_CONFIG_SMALL("Blend successive frames."),
     .priv_size     = sizeof(BlendContext),