]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/vf_lut.c
avfilter: Constify all AVFilters
[ffmpeg] / libavfilter / vf_lut.c
index 1a94e1cf71c25de2f2f28440ebb88d5b668612f6..47c2416da713116d541d073b29c1992f7625604d 100644 (file)
@@ -593,7 +593,7 @@ static const AVFilterPad outputs[] = {
 };
 
 #define DEFINE_LUT_FILTER(name_, description_)                          \
-    AVFilter ff_vf_##name_ = {                                          \
+    const AVFilter ff_vf_##name_ = {                                    \
         .name          = #name_,                                        \
         .description   = NULL_IF_CONFIG_SMALL(description_),            \
         .priv_size     = sizeof(LutContext),                            \