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:52:32 +0100 |
commit | 5fe026f2bda68a129d70b9609c4902917db9ca2e (patch) | |
tree | da349c3e56fd73293d413cddc3b5604a1fe42e31 /libavcodec/aacdec.c | |
parent | 8d87c0b3ad76796a359a297b14ef62de88457fdf (diff) | |
download | ffmpeg-5fe026f2bda68a129d70b9609c4902917db9ca2e.tar.gz |
avcodec/aacdec: reduce noisiness of missing channel elements
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/aacdec.c')
-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); } } } |