gst/mpegstream/gstmpegdemux.c: recognize the padding stream

Original commit message from CVS:
* gst/mpegstream/gstmpegdemux.c:
recognize the padding stream
This commit is contained in:
Thijs Vermeir 2007-11-11 20:41:32 +00:00
parent db4e736086
commit 4cbb91cb02
3 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2007-11-11 Thijs Vermeir <thijsvermeir@gmail.com>
* gst/mpegstream/gstmpegdemux.c:
recognize the padding stream
2007-10-31 Tim-Philipp Müller <tim at centricular dot net>
* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_ext_content_desc):

2
common

@ -1 +1 @@
Subproject commit 34d7d649b972ea4915611a6ed88f01613bf32777
Subproject commit 423e2ea96b5f79281f4dd20d734bd968b3d95e89

View file

@ -763,6 +763,9 @@ done:
id - 0xE0, GST_MPEG_DEMUX_VIDEO_MPEG, &mpeg_version);
ret = CLASS (mpeg_demux)->send_subbuffer (mpeg_demux, outstream, buffer,
timestamp, headerlen + 4, datalen);
} else if (id == 0xBE) {
/* padding stream */
GST_DEBUG_OBJECT (mpeg_demux, "we have a padding packet");
} else {
GST_WARNING_OBJECT (mpeg_demux, "unknown stream id 0x%02x", id);
}