support AVDISCARD_ALL in mpegts demuxer

Originally committed as revision 18964 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Baptiste Coudurier 2009-05-27 01:29:55 +00:00
parent bdfa98249a
commit 6c7c2f7bb3
1 changed files with 1 additions and 1 deletions

View File

@ -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)))