diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-12-04 01:47:55 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-12-04 01:58:32 +0100 |
commit | a588e1e5609c19c1a1ee8c61739c858444ffa110 (patch) | |
tree | f95a79478144c76037667313b2963e85b615a80c | |
parent | 36e7385d0eb7e3f40040ad469a911b67dd86b8d0 (diff) | |
download | ffmpeg-a588e1e5609c19c1a1ee8c61739c858444ffa110.tar.gz |
avcodec/aacdec: reduce noisiness of missing channel elements
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 5fe026f2bda68a129d70b9609c4902917db9ca2e)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/aacdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacdec.c b/libavcodec/aacdec.c index db2a9b676e..d00b3d0d27 100644 --- a/libavcodec/aacdec.c +++ b/libavcodec/aacdec.c @@ -2780,7 +2780,7 @@ static void spectral_to_sample(AACContext *ac) apply_channel_coupling(ac, che, type, i, AFTER_IMDCT, apply_independent_coupling); che->present = 0; } else if (che) { - av_log(ac->avctx, AV_LOG_WARNING, "ChannelElement %d.%d missing \n", type, i); + av_log(ac->avctx, AV_LOG_VERBOSE, "ChannelElement %d.%d missing \n", type, i); } } } |