[FFmpeg-cvslog] mpc8: Make sure the first stream exists before parsing the seek table

Martin Storsjö git at videolan.org
Tue Oct 8 00:55:47 CEST 2013


ffmpeg | branch: release/1.1 | Martin Storsjö <martin at martin.st> | Wed Sep 11 22:53:15 2013 +0300| [557df77eab7d3726c34221aeb999afe9e7818d52] | committer: Luca Barbato

mpc8: Make sure the first stream exists before parsing the seek table

Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
CC: libav-stable at libav.org
Signed-off-by: Martin Storsjö <martin at martin.st>
(cherry picked from commit 17d57848fc14e82f76a65ffb25c90f2f011dc4a0)
Signed-off-by: Luca Barbato <lu_zero at gentoo.org>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=557df77eab7d3726c34221aeb999afe9e7818d52
---

 libavformat/mpc8.c |    5 +++++
 1 file changed, 5 insertions(+)

diff --git a/libavformat/mpc8.c b/libavformat/mpc8.c
index 66cf01a..c7aa875 100644
--- a/libavformat/mpc8.c
+++ b/libavformat/mpc8.c
@@ -139,6 +139,11 @@ static void mpc8_parse_seektable(AVFormatContext *s, int64_t off)
     int i, t, seekd;
     GetBitContext gb;
 
+    if (s->nb_streams == 0) {
+        av_log(s, AV_LOG_ERROR, "No stream added before parsing seek table\n");
+        return;
+    }
+
     avio_seek(s->pb, off, SEEK_SET);
     mpc8_get_chunk_header(s->pb, &tag, &size);
     if(tag != TAG_SEEKTABLE){



More information about the ffmpeg-cvslog mailing list