diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2010-01-27 20:02:18 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2010-01-27 20:02:18 +0000 |
commit | d780511b94855a305003f33ac63630dc9cba5084 (patch) | |
tree | 2a4daa80ab6564f78ef0f6603317755b5b35325f /libavcodec/mlpdec.c | |
parent | d30a8beb99caad9738fc17ca36ad19b545c911c4 (diff) | |
download | ffmpeg-d780511b94855a305003f33ac63630dc9cba5084.tar.gz |
Reduce log level of "Extracting .. channel downmix" to AV_LOG_DEBUG, the
message is pointless to ordinary users and is printed once per frame.
Originally committed as revision 21486 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mlpdec.c')
-rw-r--r-- | libavcodec/mlpdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mlpdec.c b/libavcodec/mlpdec.c index bfde83c09f..aa3b9cd2cd 100644 --- a/libavcodec/mlpdec.c +++ b/libavcodec/mlpdec.c @@ -397,7 +397,7 @@ static int read_restart_header(MLPDecodeContext *m, GetBitContext *gbp, if (m->avctx->request_channels > 0 && s->max_channel + 1 >= m->avctx->request_channels && substr < m->max_decoded_substream) { - av_log(m->avctx, AV_LOG_INFO, + av_log(m->avctx, AV_LOG_DEBUG, "Extracting %d channel downmix from substream %d. " "Further substreams will be skipped.\n", s->max_channel + 1, substr); |