Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/alac.c')
-rw-r--r--libavcodec/alac.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/libavcodec/alac.c b/libavcodec/alac.c
index c714d40841..69384dc432 100644
--- a/libavcodec/alac.c
+++ b/libavcodec/alac.c
@@ -463,9 +463,8 @@ static int alac_decode_frame(AVCodecContext *avctx, void *data,
}
channels = (element == TYPE_CPE) ? 2 : 1;
- if ( ch + channels > alac->channels
- || ff_alac_channel_layout_offsets[alac->channels - 1][ch] + channels > alac->channels
- ) {
+ if (ch + channels > alac->channels ||
+ ff_alac_channel_layout_offsets[alac->channels - 1][ch] + channels > alac->channels) {
av_log(avctx, AV_LOG_ERROR, "invalid element channel count\n");
return AVERROR_INVALIDDATA;
}