diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-07-30 20:29:46 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-07-30 22:24:42 +0200 |
commit | 1bbf94d84fa02d717bd88b1f149b754bbc45da6c (patch) | |
tree | 7f79933264abba202e708988535a8df971837b29 | |
parent | 121fc05b4dad59dbebcb15d93226e40f8413aeb6 (diff) | |
download | ffmpeg-1bbf94d84fa02d717bd88b1f149b754bbc45da6c.tar.gz |
avfilter/af_compand: %f is for printing doubles
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavfilter/af_compand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_compand.c b/libavfilter/af_compand.c index 8630cdacac..6cbfbf43a1 100644 --- a/libavfilter/af_compand.c +++ b/libavfilter/af_compand.c @@ -355,7 +355,7 @@ static int config_output(AVFilterLink *outlink) return AVERROR(EINVAL); } S(i).y -= S(i).x; - av_log(ctx, AV_LOG_DEBUG, "%d: x=%lf y=%lf\n", i, S(i).x, S(i).y); + av_log(ctx, AV_LOG_DEBUG, "%d: x=%f y=%f\n", i, S(i).x, S(i).y); new_nb_items++; } num = new_nb_items; |