[NUT-devel] [nut]: r216 - trunk/libnut/demuxer.c
ods15
subversion at mplayerhq.hu
Thu Nov 16 08:22:37 CET 2006
Author: ods15
Date: Thu Nov 16 08:22:36 2006
New Revision: 216
Modified:
trunk/libnut/demuxer.c
Log:
100000l, mixed up != and ==
Modified: trunk/libnut/demuxer.c
==============================================================================
--- trunk/libnut/demuxer.c (original)
+++ trunk/libnut/demuxer.c Thu Nov 16 08:22:36 2006
@@ -411,7 +411,7 @@
int err;
uint64_t tmp;
CHECK(get_bytes(nut->i, 8, &tmp));
- while (tmp >> 56 != 'N') {
+ while (tmp >> 56 == 'N') {
if (tmp == stop_startcode || tmp == SYNCPOINT_STARTCODE) break;
CHECK(get_header(nut->i, NULL));
CHECK(get_bytes(nut->i, 8, &tmp));
More information about the NUT-devel
mailing list