# HG changeset patch # User michael # Date 1162926338 0 # Node ID a2a3094c5c09b2aae6458fd36251434b0718fa5b # Parent 6e206b0ed9e39d0f46d680a8eb171cb5235d3799 fprintf -> mp_msg diff -r 6e206b0ed9e3 -r a2a3094c5c09 libmpdemux/muxer_lavf.c --- a/libmpdemux/muxer_lavf.c Tue Nov 07 18:57:25 2006 +0000 +++ b/libmpdemux/muxer_lavf.c Tue Nov 07 19:05:38 2006 +0000 @@ -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); }