aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2019-10-09 09:53:26 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2019-12-31 19:51:56 +0100
commit59a2b67c792b1881a8da36a9d8dbecc03677543e (patch)
tree561397422d53ca1ecbd39f60f9ae842d4718cef7
parent5cf9d6c58686bdf6d36dba2305e6cf0b3b889209 (diff)
downloadffmpeg-59a2b67c792b1881a8da36a9d8dbecc03677543e.tar.gz
avcodec/aptx: Check the number of channels
Fixes: store to null pointer of type 'uint32_t' (aka 'unsigned int') Fixes: 18021/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_APTX_HD_fuzzer-5761738313564160 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 98a257c3235bdc18151534134148845728418248) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--libavcodec/aptx.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/aptx.c b/libavcodec/aptx.c
index e3fb064a6d..a2620a9212 100644
--- a/libavcodec/aptx.c
+++ b/libavcodec/aptx.c
@@ -989,6 +989,9 @@ static av_cold int aptx_init(AVCodecContext *avctx)
AptXContext *s = avctx->priv_data;
int chan, subband;
+ if (avctx->channels != 2)
+ return AVERROR_INVALIDDATA;
+
s->hd = avctx->codec->id == AV_CODEC_ID_APTX_HD;
s->block_size = s->hd ? 6 : 4;