aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2018-06-27 16:51:51 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2018-07-07 12:27:14 +0200
commit36c779bffe2ceef48a0fa4d7a6691c6895faf9e2 (patch)
treecedce81563f2fd3ea26140e8124c9e15a5d60243
parent93a77afdaca7df6074f5422e2218331122c6caa6 (diff)
downloadffmpeg-36c779bffe2ceef48a0fa4d7a6691c6895faf9e2.tar.gz
avformat/movenc: Check that frame_types other than EAC3_FRAME_TYPE_INDEPENDENT have a supported substream id
Fixes: out of array access Fixes: ffmpeg_bof_1.avi Found-by: Thuan Pham, Marcel Böhme, Andrew Santosa and Alexandru Razvan Caciulescu with AFLSmart Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit ed22dc22216f74c75ee7901f82649e1ff725ba50) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--libavformat/movenc.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c
index c44ed48dec..aab3e31010 100644
--- a/libavformat/movenc.c
+++ b/libavformat/movenc.c
@@ -388,6 +388,11 @@ static int handle_eac3(MOVMuxContext *mov, AVPacket *pkt, MOVTrack *track)
info->ec3_done = 1;
goto concatenate;
}
+ } else {
+ if (hdr->substreamid != 0) {
+ avpriv_request_sample(mov->fc, "Multiple non EAC3 independent substreams");
+ return AVERROR_PATCHWELCOME;
+ }
}
/* fill the info needed for the "dec3" atom */