mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 01:00:37 +00:00
Fix an unwanted double negation from last commit
This commit is contained in:
parent
20669d461a
commit
1188120eba
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ find_start_code (GstBitReader * b)
|
|||
while (gst_bit_reader_peek_bits_uint32 (b, &bits, 32)) {
|
||||
if (bits >> 8 == 0x1) {
|
||||
return TRUE;
|
||||
} else if (!gst_bit_reader_skip (b, 8) == FALSE)
|
||||
} else if (gst_bit_reader_skip (b, 8) == FALSE)
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue