From 4654bf44a767b4c3894d3f9e09ba29445877bad9 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 2 Sep 2012 05:01:08 +0200 Subject: [PATCH] flvdec: fix creation of lots of phantom data streams Signed-off-by: Michael Niedermayer --- libavformat/flvdec.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libavformat/flvdec.c b/libavformat/flvdec.c index 822f38104f..c7b692273f 100644 --- a/libavformat/flvdec.c +++ b/libavformat/flvdec.c @@ -720,8 +720,9 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt) flv_same_video_codec(st->codec, flags)) { break; } - } else if (st->id == stream_type) { - break; + } else if (stream_type == FLV_STREAM_TYPE_DATA) { + if (st->codec->codec_type == AVMEDIA_TYPE_DATA) + break; } } if(i == s->nb_streams){