mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-12 19:36:38 +00:00
tsdemux: Fix flags comparison operator precedence
Fix operator precedence, so the whole operation is negated instead of only flags variable. https://bugzilla.gnome.org/show_bug.cgi?id=722096
This commit is contained in:
parent
1122b56ff6
commit
44a87d2109
1 changed files with 1 additions and 1 deletions
|
@ -328,7 +328,7 @@ mpegts_parse_pes_header (const guint8 * data, gsize length, PESHeader * res)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* jump if we don't have a PES 2nd extension */
|
/* jump if we don't have a PES 2nd extension */
|
||||||
if (!flags & 0x01)
|
if (!(flags & 0x01))
|
||||||
goto stuffing_byte;
|
goto stuffing_byte;
|
||||||
|
|
||||||
/* Extension flag 2 */
|
/* Extension flag 2 */
|
||||||
|
|
Loading…
Reference in a new issue