summaryrefslogtreecommitdiffstats
path: root/gst/mpegdemux/gstmpegdemux.c
diff options
context:
space:
mode:
authorJosep Torra <n770galaxy@gmail.com>2009-03-10 21:18:20 +0100
committerEdward Hervey <bilboed@bilboed.com>2009-03-10 21:18:20 +0100
commitbfdfc069aafccf7a207fd19e52707d7d3ff0ad79 (patch)
treea181330c876b0270006dcd1272a23b0fe925551b /gst/mpegdemux/gstmpegdemux.c
parent1fc688715dd99541f86d65f8be911a350b5769b1 (diff)
downloadgst-plugins-bad-bfdfc069aafccf7a207fd19e52707d7d3ff0ad79.tar.gz
gst-plugins-bad-bfdfc069aafccf7a207fd19e52707d7d3ff0ad79.tar.bz2
gst-plugins-bad-bfdfc069aafccf7a207fd19e52707d7d3ff0ad79.zip
mpegdemux: Fixed a bug in the TS scanner. Fixes #574009
Diffstat (limited to 'gst/mpegdemux/gstmpegdemux.c')
-rw-r--r--gst/mpegdemux/gstmpegdemux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/mpegdemux/gstmpegdemux.c b/gst/mpegdemux/gstmpegdemux.c
index 1794cfc5..060fa851 100644
--- a/gst/mpegdemux/gstmpegdemux.c
+++ b/gst/mpegdemux/gstmpegdemux.c
@@ -2106,7 +2106,7 @@ gst_flups_demux_scan_ts (GstFluPSDemux * demux, const guint8 * data,
/* STD buffer size, never for mpeg2 */
if ((*data & 0xc0) == 0x40)
- data += 3;
+ data += 2;
/* PTS but no DTS, never for mpeg2 */
if ((*data & 0xf0) == 0x20) {