[FFmpeg-cvslog] lavc/mpeg4audio: add chan_config check to avoid indeterminate channels
Jun Zhao
git at videolan.org
Sat Sep 28 04:27:55 EEST 2019
ffmpeg | branch: release/4.1 | Jun Zhao <barryjzhao at tencent.com> | Sat Sep 21 19:29:47 2019 +0800| [4fbeaaa2208e723707bcc8bed7cac4e3a7da5359] | committer: James Almer
lavc/mpeg4audio: add chan_config check to avoid indeterminate channels
add chan_config check to avoid indeterminate channels.
Signed-off-by: Jun Zhao <barryjzhao at tencent.com>
Signed-off-by: James Almer <jamrial at gmail.com>
(cherry picked from commit 333109f46961946d3c6fab05210a8d543697c91b)
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4fbeaaa2208e723707bcc8bed7cac4e3a7da5359
---
libavcodec/mpeg4audio.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/libavcodec/mpeg4audio.c b/libavcodec/mpeg4audio.c
index 219714752f..2dbd972eaf 100644
--- a/libavcodec/mpeg4audio.c
+++ b/libavcodec/mpeg4audio.c
@@ -93,6 +93,10 @@ int ff_mpeg4audio_get_config_gb(MPEG4AudioConfig *c, GetBitContext *gb,
c->chan_config = get_bits(gb, 4);
if (c->chan_config < FF_ARRAY_ELEMS(ff_mpeg4audio_channels))
c->channels = ff_mpeg4audio_channels[c->chan_config];
+ else {
+ av_log(NULL, AV_LOG_ERROR, "Invalid chan_config %d\n", c->chan_config);
+ return AVERROR_INVALIDDATA;
+ }
c->sbr = -1;
c->ps = -1;
if (c->object_type == AOT_SBR || (c->object_type == AOT_PS &&
More information about the ffmpeg-cvslog
mailing list