Commit 5fe026f2 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/aacdec: reduce noisiness of missing channel elements

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 8d87c0b3
...@@ -2780,7 +2780,7 @@ static void spectral_to_sample(AACContext *ac) ...@@ -2780,7 +2780,7 @@ static void spectral_to_sample(AACContext *ac)
apply_channel_coupling(ac, che, type, i, AFTER_IMDCT, apply_independent_coupling); apply_channel_coupling(ac, che, type, i, AFTER_IMDCT, apply_independent_coupling);
che->present = 0; che->present = 0;
} else if (che) { } 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);
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment