From c31a0a07c74ef3edfe9c6b3b53a5149fcbfa6e77 Mon Sep 17 00:00:00 2001 From: diego Date: Sun, 15 Jun 2008 12:13:29 +0000 Subject: [PATCH] Move message about which adapter is used to verbose mode. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27063 b3059339-0415-0410-9bf9-f77b7e298cf2 --- help/help_mp-en.h | 1 - libvo/vo_xv.c | 5 +++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/help/help_mp-en.h b/help/help_mp-en.h index 882c402000..aaaf1005a5 100644 --- a/help/help_mp-en.h +++ b/help/help_mp-en.h @@ -1959,7 +1959,6 @@ static char help_text[]= "[VO_XV] DOCS/HTML/en/video.html#xv!\n"\ "[VO_XV] See 'mplayer -vo help' for other (non-xv) video out drivers.\n"\ "[VO_XV] Try -vo x11.\n" -#define MSGTR_LIBVO_XV_Adaptor "[VO_XV] Using Xv Adaptor #%d (%s)\n" // loader/ldt_keeper.c diff --git a/libvo/vo_xv.c b/libvo/vo_xv.c index 16f0b2d806..b4e20f59d8 100644 --- a/libvo/vo_xv.c +++ b/libvo/vo_xv.c @@ -812,8 +812,9 @@ static int preinit(const char *arg) if (!XvGrabPort(mDisplay, xv_p, CurrentTime)) { xv_port = xv_p; - mp_msg(MSGT_VO, MSGL_INFO, - MSGTR_LIBVO_XV_Adaptor, i, ai[i].name); + mp_msg(MSGT_VO, MSGL_V, + "[VO_XV] Using Xv Adapter #%d (%s)\n", + i, ai[i].name); break; } else {