[FFmpeg-cvslog] lavfi/abuffer: increase logging level of the log showing initial parameters
Stefano Sabatini
git at videolan.org
Mon Jun 25 22:49:46 CEST 2012
ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Fri Jun 22 11:39:27 2012 +0200| [6be8cfa0346da0245fd1869f3b872ff9b54082ed] | committer: Stefano Sabatini
lavfi/abuffer: increase logging level of the log showing initial parameters
Also show them in a more parsable/consistent fashion.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6be8cfa0346da0245fd1869f3b872ff9b54082ed
---
libavfilter/buffersrc.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/libavfilter/buffersrc.c b/libavfilter/buffersrc.c
index fc71f59..81beb01 100644
--- a/libavfilter/buffersrc.c
+++ b/libavfilter/buffersrc.c
@@ -317,8 +317,9 @@ static av_cold int init_audio(AVFilterContext *ctx, const char *args, void *opaq
if (!s->time_base.num)
s->time_base = (AVRational){1, s->sample_rate};
- av_log(ctx, AV_LOG_VERBOSE, "tb:%d/%d samplefmt:%s samplerate: %d "
- "ch layout:%s\n", s->time_base.num, s->time_base.den, s->sample_fmt_str,
+ av_log(ctx, AV_LOG_INFO,
+ "tb:%d/%d samplefmt:%s samplerate:%d chlayout:%s\n",
+ s->time_base.num, s->time_base.den, s->sample_fmt_str,
s->sample_rate, s->channel_layout_str);
fail:
More information about the ffmpeg-cvslog
mailing list