]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/af_flanger.c
hwcontext_vulkan: dynamically load functions
[ffmpeg] / libavfilter / af_flanger.c
index b7497a12eda7ee76425482c6b4b41ab6b67f13e8..6984ab12d3bbeda9b07b546197447fa4d89634bc 100644 (file)
@@ -72,7 +72,7 @@ static const AVOption flanger_options[] = {
 
 AVFILTER_DEFINE_CLASS(flanger);
 
-static int init(AVFilterContext *ctx)
+static av_cold int init(AVFilterContext *ctx)
 {
     FlangerContext *s = ctx->priv;
 
@@ -233,7 +233,7 @@ static const AVFilterPad flanger_outputs[] = {
     { NULL }
 };
 
-AVFilter ff_af_flanger = {
+const AVFilter ff_af_flanger = {
     .name          = "flanger",
     .description   = NULL_IF_CONFIG_SMALL("Apply a flanging effect to the audio."),
     .query_formats = query_formats,