[Mplayer-cvslog] CVS: main/libmpdemux demux_real.c,1.31,1.32
Atmosfear
atmos4 at mplayerhq.hu
Tue Nov 5 16:28:36 CET 2002
Update of /cvsroot/mplayer/main/libmpdemux
In directory mail:/var/tmp.root/cvs-serv20498/libmpdemux
Modified Files:
demux_real.c
Log Message:
move timestamp debug printf to higher verbose level (hope it's ok)
probably should move to mp_msg
Index: demux_real.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpdemux/demux_real.c,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- demux_real.c 5 Nov 2002 00:54:30 -0000 1.31
+++ demux_real.c 5 Nov 2002 15:28:17 -0000 1.32
@@ -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;
More information about the MPlayer-cvslog
mailing list