1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-29 10:32:15 +00:00

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
This commit is contained in:
diego 2008-06-15 12:13:29 +00:00
parent b3cf918e20
commit c31a0a07c7
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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
{