1
mirror of https://github.com/mpv-player/mpv synced 2024-10-18 10:25:02 +02:00

fprintf -> mp_msg

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20756 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
michael 2006-11-07 19:05:38 +00:00
parent 021c724671
commit 1052ab502a

View File

@ -83,7 +83,7 @@ static int mp_close(URLContext *h)
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 int mp_write(URLContext *h, unsigned char *buf, int size)
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);
}