You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
mpc8: Make sure the first stream exists before parsing the seek table
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
@@ -139,6 +139,11 @@ static void mpc8_parse_seektable(AVFormatContext *s, int64_t off)
|
|||||||
int i, t, seekd;
|
int i, t, seekd;
|
||||||
GetBitContext gb;
|
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);
|
avio_seek(s->pb, off, SEEK_SET);
|
||||||
mpc8_get_chunk_header(s->pb, &tag, &size);
|
mpc8_get_chunk_header(s->pb, &tag, &size);
|
||||||
if(tag != TAG_SEEKTABLE){
|
if(tag != TAG_SEEKTABLE){
|
||||||
|
Reference in New Issue
Block a user