Commit e0623953 authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/vf_frei0r: fix build with DEBUG enabled

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 353cf95f
...@@ -175,7 +175,7 @@ static int set_params(AVFilterContext *ctx, const char *params) ...@@ -175,7 +175,7 @@ static int set_params(AVFilterContext *ctx, const char *params)
switch (info.type) { switch (info.type) {
void *v; void *v;
double d; double d;
char s[128]; char str[128];
f0r_param_color_t col; f0r_param_color_t col;
f0r_param_position_t pos; f0r_param_position_t pos;
...@@ -200,9 +200,9 @@ static int set_params(AVFilterContext *ctx, const char *params) ...@@ -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); av_log(ctx, AV_LOG_DEBUG, "%f/%f", pos.x, pos.y);
break; break;
default: /* F0R_PARAM_STRING */ default: /* F0R_PARAM_STRING */
v = s; v = str;
s->get_param_value(s->instance, v, i); 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; break;
} }
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment