[nut]: r618 - src/trunk/nututils/nutparse.c

Author: cladisch Date: Wed Feb 13 09:03:14 2008 New Revision: 618 Log: Do not print the unneeded intermediate value of the sync point back pointer calculation. Modified: src/trunk/nututils/nutparse.c Modified: src/trunk/nututils/nutparse.c ============================================================================== --- src/trunk/nututils/nutparse.c (original) +++ src/trunk/nututils/nutparse.c Wed Feb 13 09:03:14 2008 @@ -490,7 +490,7 @@ static void parse_syncpoint(uint64_t pos for (i = 0; i < stream_count; ++i) streams[i].last_pts = convert_ts(pts, tbid, streams[i].time_base_id); value = read_var(); - printf(" back_ptr_div16: %"PRIu64" (%"PRIu64") -> 0x%"PRIx64"\n", value, value * 16 + 15, pos - (value * 16 + 15)); + printf(" back_ptr_div16: %"PRIu64" (0x%"PRIx64")\n", value, pos - (value * 16 + 15)); } static void parse_index(void)
participants (1)
-
cladisch