[MPlayer-cvslog] r30662 - trunk/libmpdemux/demux_lavf.c

reimar subversion at mplayerhq.hu
Sat Feb 20 12:21:51 CET 2010


Author: reimar
Date: Sat Feb 20 12:21:51 2010
New Revision: 30662

Log:
Print all 64 bits of seek position.

Modified:
   trunk/libmpdemux/demux_lavf.c

Modified: trunk/libmpdemux/demux_lavf.c
==============================================================================
--- trunk/libmpdemux/demux_lavf.c	Sat Feb 20 12:13:01 2010	(r30661)
+++ trunk/libmpdemux/demux_lavf.c	Sat Feb 20 12:21:51 2010	(r30662)
@@ -96,7 +96,7 @@ static int mp_read(void *opaque, uint8_t
 static int64_t mp_seek(void *opaque, int64_t pos, int whence) {
     stream_t *stream = opaque;
     int64_t current_pos;
-    mp_msg(MSGT_HEADER,MSGL_DBG2,"mp_seek(%p, %d, %d)\n", stream, (int)pos, whence);
+    mp_msg(MSGT_HEADER,MSGL_DBG2,"mp_seek(%p, %"PRId64", %d)\n", stream, pos, whence);
     if(whence == SEEK_CUR)
         pos +=stream_tell(stream);
     else if(whence == SEEK_END && stream->end_pos > 0)


More information about the MPlayer-cvslog mailing list