summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-09-04 22:57:06 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-09-04 22:57:06 +0000
commit7177af73f1b1f040df55c00f5506d29079003666 (patch)
treef330bd7e59cd6d2cc75462c98d7eca7c0bfe7eb0 /libvo
parent7cef65489f611eba2fec9f56bfa4e556d486040f (diff)
downloadmpv-7177af73f1b1f040df55c00f5506d29079003666.tar.bz2
mpv-7177af73f1b1f040df55c00f5506d29079003666.tar.xz
Move debug message to verbose output level.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24341 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/mga_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/mga_common.c b/libvo/mga_common.c
index 9eff37bb1e..8a20ba5c67 100644
--- a/libvo/mga_common.c
+++ b/libvo/mga_common.c
@@ -418,7 +418,7 @@ static int mga_init(int width,int height,unsigned int format){
}
}
- mp_msg(MSGT_VO,MSGL_INFO, MSGTR_LIBVO_MGA_UsingBuffers,mga_vid_config.num_frames);
+ mp_msg(MSGT_VO,MSGL_V,"[MGA] Using %d buffers.\n",mga_vid_config.num_frames);
frames[0] = (char*)mmap(0,mga_vid_config.frame_size*mga_vid_config.num_frames,PROT_WRITE,MAP_SHARED,f,0);
frames[1] = frames[0] + 1*mga_vid_config.frame_size;