]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/af_afftfilt.c
avformat: remove deprecated AVStream.codec
[ffmpeg] / libavfilter / af_afftfilt.c
index a6156bf852d68e54415027346ef55d6cdba5fefb..9b9001a44b4d2f0eff20c4c2a49fdf224a0b01bf 100644 (file)
@@ -118,7 +118,7 @@ static double realf(void *priv, double x, double ch) { return getreal(priv, x, c
 static double imagf(void *priv, double x, double ch) { return getimag(priv, x, ch); }
 
 static const char *const func2_names[]    = { "real", "imag", NULL };
-double (*func2[])(void *, double, double) = {  realf,  imagf, NULL };
+static double (*const func2[])(void *, double, double) = {  realf,  imagf, NULL };
 
 static int config_input(AVFilterLink *inlink)
 {