From 6c7c2f7bb3cdb3b1484bff00572c905f63965fc2 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Wed, 27 May 2009 01:29:55 +0000 Subject: [PATCH] support AVDISCARD_ALL in mpegts demuxer Originally committed as revision 18964 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/mpegts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index 2b983a57e8..ab1c42e1b3 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -869,7 +869,7 @@ static int mpegts_push_data(MpegTSFilter *filter, pes->header[2] == 0x01) { /* it must be an mpeg2 PES stream */ code = pes->header[3] | 0x100; - if (!pes->st || + if (!pes->st || pes->st->discard == AVDISCARD_ALL || !((code >= 0x1c0 && code <= 0x1df) || (code >= 0x1e0 && code <= 0x1ef) || (code == 0x1bd) || (code == 0x1fd)))