mpegtspacketizer: Correct condition check for current next indicator

https://bugzilla.gnome.org/show_bug.cgi?id=708106
This commit is contained in:
Sudip Jain 2013-09-15 17:09:16 +05:30 committed by Sebastian Dröge
parent b15177645b
commit 27739e8bb6

View file

@ -1084,7 +1084,7 @@ section_start:
* version_number : 5 bit * version_number : 5 bit
* current_next_indicator : 1 bit */ * current_next_indicator : 1 bit */
/* Bail out now if current_next_indicator == 0 */ /* Bail out now if current_next_indicator == 0 */
if (G_UNLIKELY (!data & 0x01)) { if (G_UNLIKELY (!(*data & 0x01))) {
GST_DEBUG GST_DEBUG
("PID 0x%04x table_id 0x%02x section does not apply (current_next_indicator == 0)", ("PID 0x%04x table_id 0x%02x section does not apply (current_next_indicator == 0)",
packet->pid, table_id); packet->pid, table_id);