]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/vf_frei0r.c
avfilter/vf_frei0r: fix build with DEBUG enabled
[ffmpeg] / libavfilter / vf_frei0r.c
index 8dcb177f56e7d2b17eefac51200f66f8302fa5b5..e5d5e11c988b6828a455029cedd9c3337a228fc4 100644 (file)
@@ -175,7 +175,7 @@ static int set_params(AVFilterContext *ctx, const char *params)
         switch (info.type) {
             void *v;
             double d;
-            char s[128];
+            char str[128];
             f0r_param_color_t col;
             f0r_param_position_t pos;
 
@@ -200,9 +200,9 @@ static int set_params(AVFilterContext *ctx, const char *params)
             av_log(ctx, AV_LOG_DEBUG, "%f/%f", pos.x, pos.y);
             break;
         default: /* F0R_PARAM_STRING */
-            v = s;
+            v = str;
             s->get_param_value(s->instance, v, i);
-            av_log(ctx, AV_LOG_DEBUG, "'%s'", s);
+            av_log(ctx, AV_LOG_DEBUG, "'%s'", str);
             break;
         }
 #endif