]> git.sesse.net Git - vlc/blob - modules/video_output/x11/xcommon.h
* configure.ac: fix for wxWindows headers detection.
[vlc] / modules / video_output / x11 / xcommon.h
1 /*****************************************************************************
2  * xcommon.h: Defines common to the X11 and XVideo plugins
3  *****************************************************************************
4  * Copyright (C) 1998-2001 VideoLAN
5  * $Id: xcommon.h,v 1.9 2003/10/24 21:27:06 gbazin Exp $
6  *
7  * Authors: Vincent Seguin <seguin@via.ecp.fr>
8  *          Samuel Hocevar <sam@zoy.org>
9  *          David Kennedy <dkennedy@tinytoad.com>
10  *          Gildas Bazin <gbazin@netcourrier.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  * Defines
29  *****************************************************************************/
30 #ifdef MODULE_NAME_IS_xvideo
31 #   define IMAGE_TYPE     XvImage
32 #   define EXTRA_ARGS     int i_xvport, int i_chroma, int i_bits_per_pixel
33 #   define EXTRA_ARGS_SHM int i_xvport, int i_chroma, XShmSegmentInfo *p_shm
34 #   define DATA_SIZE(p)   (p)->data_size
35 #   define IMAGE_FREE     XFree      /* There is nothing like XvDestroyImage */
36 #else
37 #   define IMAGE_TYPE     XImage
38 #   define EXTRA_ARGS     Visual *p_visual, int i_depth, int i_bytes_per_pixel
39 #   define EXTRA_ARGS_SHM Visual *p_visual, int i_depth, XShmSegmentInfo *p_shm
40 #   define DATA_SIZE(p)   ((p)->bytes_per_line * (p)->height)
41 #   define IMAGE_FREE     XDestroyImage
42 #endif
43
44 #define X11_FOURCC( a, b, c, d ) \
45         ( ((uint32_t)a) | ( ((uint32_t)b) << 8 ) \
46            | ( ((uint32_t)c) << 16 ) | ( ((uint32_t)d) << 24 ) )
47 #define VLC2X11_FOURCC( i ) \
48         X11_FOURCC( ((char *)&i)[0], ((char *)&i)[1], ((char *)&i)[2], \
49                     ((char *)&i)[3] )
50 #define X112VLC_FOURCC( i ) \
51         VLC_FOURCC( i & 0xff, (i >> 8) & 0xff, (i >> 16) & 0xff, \
52                     (i >> 24) & 0xff )
53
54 /*****************************************************************************
55  * x11_window_t: X11 window descriptor
56  *****************************************************************************
57  * This structure contains all the data necessary to describe an X11 window.
58  *****************************************************************************/
59 typedef struct x11_window_t
60 {
61     Window              base_window;                          /* base window */
62     Window              video_window;     /* sub-window for displaying video */
63     GC                  gc;              /* graphic context instance handler */
64
65     unsigned int        i_width;                             /* window width */
66     unsigned int        i_height;                           /* window height */
67     int                 i_x;                          /* window x coordinate */
68     int                 i_y;                          /* window y coordinate */
69
70     Atom                wm_protocols;
71     Atom                wm_delete_window;
72
73 #ifdef HAVE_XINERAMA
74     int                 i_screen;
75 #endif
76
77 } x11_window_t;
78
79 /*****************************************************************************
80  * vout_sys_t: video output method descriptor
81  *****************************************************************************
82  * This structure is part of the video output thread descriptor.
83  * It describes the X11 and XVideo specific properties of an output thread.
84  *****************************************************************************/
85 struct vout_sys_t
86 {
87     /* Internal settings and properties */
88     Display *           p_display;                        /* display pointer */
89
90     Visual *            p_visual;                          /* visual pointer */
91     int                 i_screen;                           /* screen number */
92
93     /* Our current window */
94     x11_window_t *      p_win;
95
96     /* Our two windows */
97     x11_window_t        original_window;
98     x11_window_t        fullscreen_window;
99
100     /* X11 generic properties */
101     vlc_bool_t          b_altfullscreen;          /* which fullscreen method */
102 #ifdef HAVE_SYS_SHM_H
103     vlc_bool_t          b_shm;               /* shared memory extension flag */
104 #endif
105
106 #ifdef MODULE_NAME_IS_xvideo
107     int                 i_xvport;
108 #else
109     Colormap            colormap;               /* colormap used (8bpp only) */
110
111     unsigned int        i_screen_depth;
112     unsigned int        i_bytes_per_pixel;
113     unsigned int        i_bytes_per_line;
114 #endif
115
116     /* Screen saver properties */
117     unsigned int        i_ss_timeout;                             /* timeout */
118     unsigned int        i_ss_interval;           /* interval between changes */
119     unsigned int        i_ss_blanking;                      /* blanking mode */
120     unsigned int        i_ss_exposure;                      /* exposure mode */
121 #ifdef DPMSINFO_IN_DPMS_H
122     BOOL                b_ss_dpms;                              /* DPMS mode */
123 #endif
124
125     /* Mouse pointer properties */
126     vlc_bool_t          b_mouse_pointer_visible;
127     mtime_t             i_time_mouse_last_moved; /* used to auto-hide pointer*/
128     Cursor              blank_cursor;                   /* the hidden cursor */
129     mtime_t             i_time_button_last_pressed;   /* to track dbl-clicks */
130     Pixmap              cursor_pixmap;
131
132     /* Window manager properties */
133     Atom                net_wm_state;
134     Atom                net_wm_state_fullscreen;
135     vlc_bool_t          b_net_wm_state_fullscreen;
136     Atom                net_wm_state_above;
137     vlc_bool_t          b_net_wm_state_above;
138     Atom                net_wm_state_stays_on_top;
139     vlc_bool_t          b_net_wm_state_stays_on_top;
140     Atom                net_wm_state_below;
141     vlc_bool_t          b_net_wm_state_below;
142 };
143
144 /*****************************************************************************
145  * picture_sys_t: direct buffer method descriptor
146  *****************************************************************************
147  * This structure is part of the picture descriptor, it describes the
148  * XVideo specific properties of a direct buffer.
149  *****************************************************************************/
150 struct picture_sys_t
151 {
152     IMAGE_TYPE *        p_image;
153
154 #ifdef HAVE_SYS_SHM_H
155     XShmSegmentInfo     shminfo;       /* shared memory zone information */
156 #endif
157 };
158
159 /*****************************************************************************
160  * mwmhints_t: window manager hints
161  *****************************************************************************
162  * Fullscreen needs to be able to hide the wm decorations so we provide
163  * this structure to make it easier.
164  *****************************************************************************/
165 #define MWM_HINTS_DECORATIONS   (1L << 1)
166 #define PROP_MWM_HINTS_ELEMENTS 5
167 typedef struct mwmhints_t
168 {
169     u32 flags;
170     u32 functions;
171     u32 decorations;
172     s32 input_mode;
173     u32 status;
174 } mwmhints_t;
175
176 /*****************************************************************************
177  * Chroma defines
178  *****************************************************************************/
179 #ifdef MODULE_NAME_IS_xvideo
180 #   define MAX_DIRECTBUFFERS 10
181 #else
182 #   define MAX_DIRECTBUFFERS 2
183 #endif
184