[FFmpeg-cvslog] avfilter/af_biquads: Remove l from %lf in av_log environment
Michael Niedermayer
git at videolan.org
Sun Oct 7 04:07:39 EEST 2018
ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Wed Sep 19 18:05:27 2018 +0200| [64144158890baece498a9b9ebdb67f2466f28fdb] | committer: Michael Niedermayer
avfilter/af_biquads: Remove l from %lf in av_log environment
The l modifier does nothing in C99 and it was undefined in C89 for %f
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=64144158890baece498a9b9ebdb67f2466f28fdb
---
libavfilter/af_biquads.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavfilter/af_biquads.c b/libavfilter/af_biquads.c
index 56d3035d77..ae5e1c6ade 100644
--- a/libavfilter/af_biquads.c
+++ b/libavfilter/af_biquads.c
@@ -383,7 +383,7 @@ static int config_filter(AVFilterLink *outlink, int reset)
av_assert0(0);
}
- av_log(ctx, AV_LOG_VERBOSE, "a=%lf %lf %lf:b=%lf %lf %lf\n", s->a0, s->a1, s->a2, s->b0, s->b1, s->b2);
+ av_log(ctx, AV_LOG_VERBOSE, "a=%f %f %f:b=%f %f %f\n", s->a0, s->a1, s->a2, s->b0, s->b1, s->b2);
s->a1 /= s->a0;
s->a2 /= s->a0;
More information about the ffmpeg-cvslog
mailing list