mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
mpegdemux: Fixed a bug in the TS scanner. Fixes #574009
This commit is contained in:
parent
1fc688715d
commit
bfdfc069aa
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue