diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-07-14 18:26:04 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-07-15 15:07:03 +0200 |
commit | fda968aa8febe384038aa0a41df8b8e1bb28c5ae (patch) | |
tree | 868ea2f8e0ec157707520365217bf1c5ef4a3537 /libavfilter/buffersrc.c | |
parent | a1e52c94411de56bb1071a162524be51f32d31f0 (diff) | |
download | ffmpeg-fda968aa8febe384038aa0a41df8b8e1bb28c5ae.tar.gz |
lavfi: decrease logging level of message showing initial parameters
Reduce log clutter, consistent with 1a49a169eb74a97.
Diffstat (limited to 'libavfilter/buffersrc.c')
-rw-r--r-- | libavfilter/buffersrc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/buffersrc.c b/libavfilter/buffersrc.c index 2592cfb64a..72ee268e1b 100644 --- a/libavfilter/buffersrc.c +++ b/libavfilter/buffersrc.c @@ -268,7 +268,7 @@ static av_cold int init_video(AVFilterContext *ctx, const char *args) goto fail; } - av_log(ctx, AV_LOG_INFO, "w:%d h:%d pixfmt:%s tb:%d/%d fr:%d/%d sar:%d/%d sws_param:%s\n", + av_log(ctx, AV_LOG_VERBOSE, "w:%d h:%d pixfmt:%s tb:%d/%d fr:%d/%d sar:%d/%d sws_param:%s\n", c->w, c->h, av_pix_fmt_descriptors[c->pix_fmt].name, c->time_base.num, c->time_base.den, c->frame_rate.num, c->frame_rate.den, c->pixel_aspect.num, c->pixel_aspect.den, (char *)av_x_if_null(c->sws_param, "")); @@ -328,7 +328,7 @@ static av_cold int init_audio(AVFilterContext *ctx, const char *args) if (!s->time_base.num) s->time_base = (AVRational){1, s->sample_rate}; - av_log(ctx, AV_LOG_INFO, + av_log(ctx, AV_LOG_VERBOSE, "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); |