mpegdemux: Fixed a bug in the TS scanner. Fixes #574009

This commit is contained in:
Josep Torra 2009-03-10 21:18:20 +01:00 committed by Edward Hervey
parent 1fc688715d
commit bfdfc069aa

View file

@ -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) {