gst/mpegstream/gstmpegdemux.c: recognize the padding stream
authorThijs Vermeir <thijsvermeir@gmail.com>
Sun, 11 Nov 2007 20:41:32 +0000 (20:41 +0000)
committerThijs Vermeir <thijsvermeir@gmail.com>
Sun, 11 Nov 2007 20:41:32 +0000 (20:41 +0000)
Original commit message from CVS:
* gst/mpegstream/gstmpegdemux.c:
recognize the padding stream

ChangeLog
common
gst/mpegstream/gstmpegdemux.c

index d1b98aa..26be600 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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):
diff --git a/common b/common
index 34d7d64..423e2ea 160000 (submodule)
--- a/common
+++ b/common
@@ -1 +1 @@
-Subproject commit 34d7d649b972ea4915611a6ed88f01613bf32777
+Subproject commit 423e2ea96b5f79281f4dd20d734bd968b3d95e89
index 5066919..3a1a24d 100644 (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);
   }