From f39b891ba03fef27003f91386c3c940f31029376 Mon Sep 17 00:00:00 2001 From: rathann Date: Tue, 10 Jan 2006 11:09:03 +0000 Subject: [PATCH] convert some printfs to mp_msg git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17356 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpcodecs/ve_lavc.c | 2 +- libmpdemux/demux_viv.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libmpcodecs/ve_lavc.c b/libmpcodecs/ve_lavc.c index 519a638237..16a55756af 100644 --- a/libmpcodecs/ve_lavc.c +++ b/libmpcodecs/ve_lavc.c @@ -346,7 +346,7 @@ static int config(struct vf_instance_s* vf, mux_v->bih->biHeight=height; mux_v->bih->biSizeImage=mux_v->bih->biWidth*mux_v->bih->biHeight*(mux_v->bih->biBitCount/8); - printf("videocodec: libavcodec (%dx%d fourcc=%x [%.4s])\n", + mp_msg(MSGT_MENCODER, MSGL_INFO,"videocodec: libavcodec (%dx%d fourcc=%x [%.4s])\n", mux_v->bih->biWidth, mux_v->bih->biHeight, mux_v->bih->biCompression, (char *)&mux_v->bih->biCompression); diff --git a/libmpdemux/demux_viv.c b/libmpdemux/demux_viv.c index e31f558ee9..ac70989d3e 100644 --- a/libmpdemux/demux_viv.c +++ b/libmpdemux/demux_viv.c @@ -625,7 +625,7 @@ static demuxer_t* demux_open_vivo(demuxer_t* demuxer){ /* disable seeking */ demuxer->seekable = 0; - printf("VIVO Video stream %d size: display: %dx%d, codec: %ux%u\n", + mp_msg(MSGT_DEMUX,MSGL_STATUS,"VIVO Video stream %d size: display: %dx%d, codec: %ux%u\n", demuxer->video->id, sh->disp_w, sh->disp_h, sh->bih->biWidth, sh->bih->biHeight); }