]> git.sesse.net Git - vlc/blob - plugins/x11/x11.c
Some heavy changes today:
[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.10 2001/12/30 07:09:56 sam 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     ADD_WINDOW( "Configuration for X11 module" )
41         ADD_COMMENT( "For now, the X11 module cannot be configured" )
42 MODULE_CONFIG_STOP
43
44 MODULE_INIT_START
45     SET_DESCRIPTION( "X11 module" )
46     ADD_CAPABILITY( VOUT, 50 )
47     ADD_SHORTCUT( "x11" )
48 MODULE_INIT_STOP
49
50 MODULE_ACTIVATE_START
51     _M( vout_getfunctions )( &p_module->p_functions->vout );
52 MODULE_ACTIVATE_STOP
53
54 MODULE_DEACTIVATE_START
55 MODULE_DEACTIVATE_STOP
56
57 #if 0
58 /*****************************************************************************
59  * vout_SetPalette: sets an 8 bpp palette
60  *****************************************************************************
61  * This function sets the palette given as an argument. It does not return
62  * anything, but could later send information on which colors it was unable
63  * to set.
64  *****************************************************************************/
65 static void vout_SetPalette( p_vout_thread_t p_vout,
66                              u16 *red, u16 *green, u16 *blue, u16 *transp )
67 {
68     int i, j;
69     XColor p_colors[255];
70
71     intf_DbgMsg( "vout: Palette change called" );
72
73     /* allocate palette */
74     for( i = 0, j = 255; i < 255; i++, j-- )
75     {
76         /* kludge: colors are indexed reversely because color 255 seems
77          * to be reserved for black even if we try to set it to white */
78         p_colors[ i ].pixel = j;
79         p_colors[ i ].pad   = 0;
80         p_colors[ i ].flags = DoRed | DoGreen | DoBlue;
81         p_colors[ i ].red   = red[ j ];
82         p_colors[ i ].blue  = blue[ j ];
83         p_colors[ i ].green = green[ j ];
84     }
85
86     XStoreColors( p_vout->p_sys->p_display,
87                   p_vout->p_sys->colormap, p_colors, 256 );
88 }
89 #endif
90