mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 18:05:37 +00:00
mpegtspacketizer: Correct condition check for current next indicator
https://bugzilla.gnome.org/show_bug.cgi?id=708106
This commit is contained in:
parent
b15177645b
commit
27739e8bb6
1 changed files with 1 additions and 1 deletions
|
@ -1084,7 +1084,7 @@ section_start:
|
|||
* version_number : 5 bit
|
||||
* current_next_indicator : 1 bit */
|
||||
/* Bail out now if current_next_indicator == 0 */
|
||||
if (G_UNLIKELY (!data & 0x01)) {
|
||||
if (G_UNLIKELY (!(*data & 0x01))) {
|
||||
GST_DEBUG
|
||||
("PID 0x%04x table_id 0x%02x section does not apply (current_next_indicator == 0)",
|
||||
packet->pid, table_id);
|
||||
|
|
Loading…
Reference in a new issue