]> git.sesse.net Git - vlc/blob - plugins/x11/xvideo.c
* ALL: internationalized all configuration strings.
[vlc] / plugins / x11 / xvideo.c
1 /*****************************************************************************
2  * xvideo.c : Xvideo plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 1998-2001 VideoLAN
5  * $Id: xvideo.c,v 1.10 2002/04/19 13:56:11 sam Exp $
6  *
7  * Authors: Shane Harper <shanegh@optusnet.com.au>
8  *          Vincent Seguin <seguin@via.ecp.fr>
9  *          Samuel Hocevar <sam@zoy.org>
10  *          David Kennedy <dkennedy@tinytoad.com>
11  *      
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  * 
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
25  *****************************************************************************/
26
27 /*****************************************************************************
28  * Preamble
29  *****************************************************************************/
30 #include <stdlib.h>                                      /* malloc(), free() */
31 #include <string.h>                                            /* strerror() */
32
33 #include <videolan/vlc.h>
34
35 #include "xcommon.h"
36
37 /*****************************************************************************
38  * Building configuration tree
39  *****************************************************************************/
40 #define ADAPTOR_TEXT N_("XVideo adaptor number")
41 #define ADAPTOR_LONGTEXT N_( \
42     "If you graphics card provides several adaptors, this option allows you " \
43     "to choose which one will be used (you shouldn't have to change this).")
44
45 #define ALT_FS_TEXT N_("alternate fullscreen method")
46 #define ALT_FS_LONGTEXT N_( \
47     "There are two ways to make a fullscreen window, unfortunately each one " \
48     "has its drawbacks.\n" \
49     "1) Let the window manager handle your fullscreen window (default). But " \
50     "things like taskbars will likely show on top of the video.\n" \
51     "2) Completly bypass the window manager, but then nothing will be able " \
52     "to show on top of the video.")
53
54 #define DISPLAY_TEXT N_("X11 display name")
55 #define DISPLAY_LONGTEXT N_( \
56     "Specify the X11 hardware display you want to use.\nBy default vlc will " \
57     "use the value of the DISPLAY environment variable.")
58
59 MODULE_CONFIG_START
60 ADD_CATEGORY_HINT( N_("Miscellaneous"), NULL )
61 ADD_STRING  ( "xvideo_display", NULL, NULL, DISPLAY_TEXT, DISPLAY_LONGTEXT )
62 ADD_INTEGER ( "xvideo_adaptor", -1, NULL, ADAPTOR_TEXT, ADAPTOR_LONGTEXT )
63 ADD_BOOL    ( "xvideo_altfullscreen", NULL, ALT_FS_TEXT, ALT_FS_LONGTEXT )
64 MODULE_CONFIG_STOP
65
66 MODULE_INIT_START
67     SET_DESCRIPTION( _("XVideo extension module") )
68     ADD_CAPABILITY( VOUT, 150 )
69     ADD_SHORTCUT( "xvideo" )
70 MODULE_INIT_STOP
71
72 MODULE_ACTIVATE_START
73     _M( vout_getfunctions )( &p_module->p_functions->vout );
74 MODULE_ACTIVATE_STOP
75
76 MODULE_DEACTIVATE_START
77 MODULE_DEACTIVATE_STOP
78
79 /* following functions are local */
80
81 #if 0
82 /*****************************************************************************
83  * XVideoSetAttribute
84  *****************************************************************************
85  * This function can be used to set attributes, e.g. XV_BRIGHTNESS and
86  * XV_CONTRAST. "f_value" should be in the range of 0 to 1.
87  *****************************************************************************/
88 static void XVideoSetAttribute( vout_thread_t *p_vout,
89                                 char *attr_name, float f_value )
90 {
91     int             i_attrib;
92     XvAttribute    *p_attrib;
93     Display        *p_display = p_vout->p_sys->p_display;
94     int             i_xvport  = p_vout->p_sys->i_xvport;
95
96     p_attrib = XvQueryPortAttributes( p_display, i_xvport, &i_attrib );
97
98     do
99     {
100         i_attrib--;
101
102         if( i_attrib >= 0 && !strcmp( p_attrib[ i_attrib ].name, attr_name ) )
103         {
104             int i_sv = f_value * ( p_attrib[ i_attrib ].max_value
105                                     - p_attrib[ i_attrib ].min_value + 1 )
106                         + p_attrib[ i_attrib ].min_value;
107
108             XvSetPortAttribute( p_display, i_xvport,
109                             XInternAtom( p_display, attr_name, False ), i_sv );
110             break;
111         }
112
113     } while( i_attrib > 0 );
114
115     if( p_attrib )
116         XFree( p_attrib );
117 }
118 #endif
119