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:
authorMichael Niedermayer <michael@niedermayer.cc>2021-09-05 22:24:15 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2021-09-13 22:13:05 +0300
commit3dd5a8a13510d08a4e25e8f138d718672a0fed4a (patch)
tree7cace1f680e89ba590eac9bbac35b236e568f34c /libavformat/mxfdec.c
parent441b292592075b771dff7ee46293157eeb804252 (diff)
avformat/mxfdec: check channel number in mxf_get_d10_aes3_packet()
Fixes: Out of array access Fixes: 37030/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-5387719147651072 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Reviewed-by: Tomas Härdin <tjoppen@acc.umu.se> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/mxfdec.c')
-rw-r--r--libavformat/mxfdec.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c
index 55f2e5c767..ebe411b04d 100644
--- a/libavformat/mxfdec.c
+++ b/libavformat/mxfdec.c
@@ -552,6 +552,10 @@ static int mxf_get_d10_aes3_packet(AVIOContext *pb, AVStream *st, AVPacket *pkt,
data_ptr = pkt->data;
end_ptr = pkt->data + length;
buf_ptr = pkt->data + 4; /* skip SMPTE 331M header */
+
+ if (st->codecpar->channels > 8)
+ return AVERROR_INVALIDDATA;
+
for (; end_ptr - buf_ptr >= st->codecpar->channels * 4; ) {
for (i = 0; i < st->codecpar->channels; i++) {
uint32_t sample = bytestream_get_le32(&buf_ptr);