diff options
author | Josep Torra <n770galaxy@gmail.com> | 2009-03-10 21:18:20 +0100 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2009-03-10 21:18:20 +0100 |
commit | bfdfc069aafccf7a207fd19e52707d7d3ff0ad79 (patch) | |
tree | a181330c876b0270006dcd1272a23b0fe925551b | |
parent | 1fc688715dd99541f86d65f8be911a350b5769b1 (diff) | |
download | gst-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
-rw-r--r-- | gst/mpegdemux/gstmpegdemux.c | 2 |
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) { |