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));
_______________________________________________
NUT-devel mailing list
NUT-devel mplayerhq.hu
http://lists.mplayerhq.hu/mailman/listinfo/nut-devel
|