changeset 8113:0d1ef5f06b3d

move timestamp debug printf to higher verbose level (hope it's ok) probably should move to mp_msg
author atmos4
date Tue, 05 Nov 2002 15:28:17 +0000
parents 6d97e935a071
children ba66375adb6f
files libmpdemux/demux_real.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libmpdemux/demux_real.c	Tue Nov 05 13:29:10 2002 +0000
+++ b/libmpdemux/demux_real.c	Tue Nov 05 15:28:17 2002 +0000
@@ -319,7 +319,7 @@
   if(format==0x30335652){ // RV30 timestamps:
     kf=2*(((s[1]&15)<<8)+s[2]); // 12-bit timestamp from frame header
     //kf=((s[1]<<8)+s[2])>>3; // 12-bit timestamp from frame header
-    printf("\nTS: %08X (%04X) %02X %02X %02X %02X\n",timestamp,kf,s[0],s[1],s[2],s[3]);
+    if(verbose>1) printf("\nTS: %08X (%04X) %02X %02X %02X %02X\n",timestamp,kf,s[0],s[1],s[2],s[3]);
     kf|=timestamp&(~0x1fff);	// combine with packet timestamp
     if(kf<timestamp-4096) kf+=8192; else // workaround wrap-around problems
     if(kf>timestamp+4096) kf-=8192;