Commit 66daf3b8 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'c7921a48'

* commit 'c7921a48':
  libfdk-aacdec: Fix a boundary check
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 2a428db5 c7921a48
......@@ -100,7 +100,7 @@ static int get_stream_info(AVCodecContext *avctx)
for (i = 0; i < info->numChannels; i++) {
AUDIO_CHANNEL_TYPE ctype = info->pChannelType[i];
if (ctype <= ACT_NONE || ctype > FF_ARRAY_ELEMS(channel_counts)) {
if (ctype <= ACT_NONE || ctype >= FF_ARRAY_ELEMS(channel_counts)) {
av_log(avctx, AV_LOG_WARNING, "unknown channel type\n");
break;
}
......
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