]> git.sesse.net Git - vlc/blob - plugins/x11/x11.c
5fc4acd0e9f2fcadbdd16f4b1dba7e9ff01cc585
[vlc] / plugins / x11 / x11.c
1 /*****************************************************************************
2  * x11.c : X11 plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 1998-2001 VideoLAN
5  * $Id: x11.c,v 1.12 2002/02/24 20:51:10 gbazin Exp $
6  *
7  * Authors: Vincent Seguin <seguin@via.ecp.fr>
8  *          Samuel Hocevar <sam@zoy.org>
9  *          David Kennedy <dkennedy@tinytoad.com>
10  *      
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  * 
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * Preamble
28  *****************************************************************************/
29 #include <stdlib.h>                                      /* malloc(), free() */
30 #include <string.h>                                            /* strerror() */
31
32 #include <videolan/vlc.h>
33
34 #include "xcommon.h"
35
36 /*****************************************************************************
37  * Building configuration tree
38  *****************************************************************************/
39 MODULE_CONFIG_START
40 MODULE_CONFIG_STOP
41
42 MODULE_INIT_START
43     SET_DESCRIPTION( "X11 module" )
44     ADD_CAPABILITY( VOUT, 50 )
45     ADD_SHORTCUT( "x11" )
46 MODULE_INIT_STOP
47
48 MODULE_ACTIVATE_START
49     _M( vout_getfunctions )( &p_module->p_functions->vout );
50 MODULE_ACTIVATE_STOP
51
52 MODULE_DEACTIVATE_START
53 MODULE_DEACTIVATE_STOP
54
55 #if 0
56 /*****************************************************************************
57  * vout_SetPalette: sets an 8 bpp palette
58  *****************************************************************************
59  * This function sets the palette given as an argument. It does not return
60  * anything, but could later send information on which colors it was unable
61  * to set.
62  *****************************************************************************/
63 static void vout_SetPalette( p_vout_thread_t p_vout,
64                              u16 *red, u16 *green, u16 *blue, u16 *transp )
65 {
66     int i, j;
67     XColor p_colors[255];
68
69     /* allocate palette */
70     for( i = 0, j = 255; i < 255; i++, j-- )
71     {
72         /* kludge: colors are indexed reversely because color 255 seems
73          * to be reserved for black even if we try to set it to white */
74         p_colors[ i ].pixel = j;
75         p_colors[ i ].pad   = 0;
76         p_colors[ i ].flags = DoRed | DoGreen | DoBlue;
77         p_colors[ i ].red   = red[ j ];
78         p_colors[ i ].blue  = blue[ j ];
79         p_colors[ i ].green = green[ j ];
80     }
81
82     XStoreColors( p_vout->p_sys->p_display,
83                   p_vout->p_sys->colormap, p_colors, 256 );
84 }
85 #endif
86