Fix an unwanted double negation from last commit

This commit is contained in:
Thibault Saunier 2012-03-10 20:53:54 -03:00
parent 20669d461a
commit 1188120eba

View file

@ -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;
}