[MPlayer-cvslog] r20756 - trunk/libmpdemux/muxer_lavf.c

michael subversion at mplayerhq.hu
Tue Nov 7 20:05:38 CET 2006


Author: michael
Date: Tue Nov  7 20:05:38 2006
New Revision: 20756

Modified:
   trunk/libmpdemux/muxer_lavf.c

Log:
fprintf -> mp_msg


Modified: trunk/libmpdemux/muxer_lavf.c
==============================================================================
--- trunk/libmpdemux/muxer_lavf.c	(original)
+++ trunk/libmpdemux/muxer_lavf.c	Tue Nov  7 20:05:38 2006
@@ -83,7 +83,7 @@
 
 static int mp_read(URLContext *h, unsigned char *buf, int size)
 {
-	fprintf(stderr, "READ %d\n", size);
+	mp_msg(MSGT_MUXER, MSGL_WARN, "READ %d\n", size);
 	return -1;
 }
 
@@ -96,7 +96,7 @@
 static offset_t mp_seek(URLContext *h, offset_t pos, int whence)
 {
 	muxer_t *muxer = (muxer_t*)h->priv_data;
-	fprintf(stderr, "SEEK %"PRIu64"\n", (int64_t)pos);
+	mp_msg(MSGT_MUXER, MSGL_DBG2, "SEEK %"PRIu64"\n", (int64_t)pos);
 	return fseeko(muxer->file, pos, whence);
 }
 



More information about the MPlayer-cvslog mailing list