diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-01-17 15:41:23 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-01-17 15:41:23 +0100 |
commit | e0623953e1e6a5b709d497af601c08fd9b358e2b (patch) | |
tree | 53392cf2d56d97e61f1ea2de6315b0c465ab211c /libavfilter/vf_frei0r.c | |
parent | 353cf95f948ef7c6139c8ead79e9eeb9eb8d2e6e (diff) | |
download | ffmpeg-e0623953e1e6a5b709d497af601c08fd9b358e2b.tar.gz |
avfilter/vf_frei0r: fix build with DEBUG enabled
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/vf_frei0r.c')
-rw-r--r-- | libavfilter/vf_frei0r.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavfilter/vf_frei0r.c b/libavfilter/vf_frei0r.c index 8dcb177f56..e5d5e11c98 100644 --- a/libavfilter/vf_frei0r.c +++ b/libavfilter/vf_frei0r.c @@ -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 |