[MPlayer-cvslog] CVS: main/libmpdemux demux_mpg.c,1.81,1.82

Nico Sabbi CVS syncmail at mplayerhq.hu
Wed May 3 20:18:28 CEST 2006


CVS change done by Nico Sabbi CVS

Update of /cvsroot/mplayer/main/libmpdemux
In directory mail:/var2/tmp/cvs-serv8653

Modified Files:
	demux_mpg.c 
Log Message:
fixed %d->PRIu64 in read_mpeg_timestamp()

Index: demux_mpg.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpdemux/demux_mpg.c,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- demux_mpg.c	3 May 2006 18:12:38 -0000	1.81
+++ demux_mpg.c	3 May 2006 18:18:25 -0000	1.82
@@ -162,7 +162,7 @@
     return 0; // invalid pts
   }
   pts=(((uint64_t)((c>>1)&7))<<30)|((d>>1)<<15)|(e>>1);
-  mp_dbg(MSGT_DEMUX,MSGL_DBG3,"{%d}",pts);
+  mp_dbg(MSGT_DEMUX,MSGL_DBG3," pts {%"PRIu64"}",pts);
   return pts;
 }
 




More information about the MPlayer-cvslog mailing list