mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-11 14:21:20 +00:00
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:
parent
db4e736086
commit
4cbb91cb02
3 changed files with 9 additions and 1 deletions
|
@ -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>
|
2007-10-31 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_ext_content_desc):
|
* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_ext_content_desc):
|
||||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
||||||
Subproject commit 34d7d649b972ea4915611a6ed88f01613bf32777
|
Subproject commit 423e2ea96b5f79281f4dd20d734bd968b3d95e89
|
|
@ -763,6 +763,9 @@ done:
|
||||||
id - 0xE0, GST_MPEG_DEMUX_VIDEO_MPEG, &mpeg_version);
|
id - 0xE0, GST_MPEG_DEMUX_VIDEO_MPEG, &mpeg_version);
|
||||||
ret = CLASS (mpeg_demux)->send_subbuffer (mpeg_demux, outstream, buffer,
|
ret = CLASS (mpeg_demux)->send_subbuffer (mpeg_demux, outstream, buffer,
|
||||||
timestamp, headerlen + 4, datalen);
|
timestamp, headerlen + 4, datalen);
|
||||||
|
} else if (id == 0xBE) {
|
||||||
|
/* padding stream */
|
||||||
|
GST_DEBUG_OBJECT (mpeg_demux, "we have a padding packet");
|
||||||
} else {
|
} else {
|
||||||
GST_WARNING_OBJECT (mpeg_demux, "unknown stream id 0x%02x", id);
|
GST_WARNING_OBJECT (mpeg_demux, "unknown stream id 0x%02x", id);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue