mirror of https://git.ffmpeg.org/ffmpeg.git
Merge commit 'c7921a480467876ece06566e0efd8f6bce9d1903'
* commit 'c7921a480467876ece06566e0efd8f6bce9d1903': libfdk-aacdec: Fix a boundary check Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
66daf3b811
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue