1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-13 21:28:01 +02:00

lavfi/abuffer: increase logging level of the log showing initial parameters

Also show them in a more parsable/consistent fashion.
This commit is contained in:
Stefano Sabatini 2012-06-22 11:39:27 +02:00
parent 8a3544149f
commit 6be8cfa034

View File

@ -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: