[FFmpeg-cvslog] avfilter/af_compand: %f is for printing doubles

Michael Niedermayer git at videolan.org
Tue Jul 30 22:29:38 CEST 2013


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Tue Jul 30 20:29:46 2013 +0200| [1bbf94d84fa02d717bd88b1f149b754bbc45da6c] | committer: Michael Niedermayer

avfilter/af_compand: %f is for printing doubles

Reviewed-by: Paul B Mahol <onemda at gmail.com>
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1bbf94d84fa02d717bd88b1f149b754bbc45da6c
---

 libavfilter/af_compand.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavfilter/af_compand.c b/libavfilter/af_compand.c
index 8630cda..6cbfbf4 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;



More information about the ffmpeg-cvslog mailing list