]> git.sesse.net Git - vlc/blob - modules/video_output/msw/common.h
Used a CPU memory fallback when Direct3DLockSurface/DirectXLock fails.
[vlc] / modules / video_output / msw / common.h
1 /*****************************************************************************
2  * common.h: Windows video output header file
3  *****************************************************************************
4  * Copyright (C) 2001-2009 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Gildas Bazin <gbazin@videolan.org>
8  *          Damien Fouilleul <damienf@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * event_thread_t: event thread
27  *****************************************************************************/
28 #include <vlc_picture_pool.h>
29 #include "events.h"
30
31 #ifdef MODULE_NAME_IS_wingapi
32     typedef struct GXDisplayProperties {
33         DWORD cxWidth;
34         DWORD cyHeight;
35         long cbxPitch;
36         long cbyPitch;
37         long cBPP;
38         DWORD ffFormat;
39     } GXDisplayProperties;
40
41     typedef struct GXScreenRect {
42         DWORD dwTop;
43         DWORD dwLeft;
44         DWORD dwWidth;
45         DWORD dwHeight;
46     } GXScreenRect;
47
48 #   define GX_FULLSCREEN    0x01
49 #   define GX_NORMALKEYS    0x02
50 #   define GX_LANDSCAPEKEYS 0x03
51
52 #   ifndef kfLandscape
53 #       define kfLandscape      0x8
54 #       define kfPalette        0x10
55 #       define kfDirect         0x20
56 #       define kfDirect555      0x40
57 #       define kfDirect565      0x80
58 #       define kfDirect888      0x100
59 #       define kfDirect444      0x200
60 #       define kfDirectInverted 0x400
61 #   endif
62
63 #endif
64
65 /*****************************************************************************
66  * vout_sys_t: video output method descriptor
67  *****************************************************************************
68  * This structure is part of the video output thread descriptor.
69  * It describes the module specific properties of an output thread.
70  *****************************************************************************/
71 struct vout_display_sys_t
72 {
73     /* */
74     event_thread_t *event;
75
76     /* */
77     HWND                 hwnd;                  /* Handle of the main window */
78     HWND                 hvideownd;        /* Handle of the video sub-window */
79     struct vout_window_t *parent_window;         /* Parent window VLC object */
80     HWND                 hparent;             /* Handle of the parent window */
81     HWND                 hfswnd;          /* Handle of the fullscreen window */
82
83     /* size of the display */
84     RECT         rect_display;
85     int          display_depth;
86
87     /* size of the overall window (including black bands) */
88     RECT         rect_parent;
89
90     unsigned changes;        /* changes made to the video display */
91
92     /* Misc */
93     bool is_first_display;
94     bool is_on_top;
95
96 #ifndef UNDER_CE
97
98     /* screensaver system settings to be restored when vout is closed */
99     UINT i_spi_lowpowertimeout;
100     UINT i_spi_powerofftimeout;
101     UINT i_spi_screensavetimeout;
102
103 #endif
104
105     /* Coordinates of src and dest images (used when blitting to display) */
106     RECT         rect_src;
107     RECT         rect_src_clipped;
108     RECT         rect_dest;
109     RECT         rect_dest_clipped;
110
111     picture_pool_t *pool;
112
113 #ifdef MODULE_NAME_IS_directx
114     /* Multi-monitor support */
115     HMONITOR             hmonitor;          /* handle of the current monitor */
116     GUID                 *display_driver;
117     HMONITOR             (WINAPI* MonitorFromWindow)(HWND, DWORD);
118     BOOL                 (WINAPI* GetMonitorInfo)(HMONITOR, LPMONITORINFO);
119
120     /* Overlay alignment restrictions */
121     int          i_align_src_boundary;
122     int          i_align_src_size;
123     int          i_align_dest_boundary;
124     int          i_align_dest_size;
125
126     bool   use_wallpaper;   /* show as desktop wallpaper ? */
127
128     bool   use_overlay;     /* Are we using an overlay surface */
129     bool   restore_overlay;
130
131     /* DDraw capabilities */
132     bool            can_blit_fourcc;
133
134     uint32_t        i_rgb_colorkey;      /* colorkey in RGB used by the overlay */
135     uint32_t        i_colorkey;                 /* colorkey used by the overlay */
136
137     COLORREF        color_bkg;
138     COLORREF        color_bkgtxt;
139
140     LPDIRECTDRAW2        ddobject;                    /* DirectDraw object */
141     LPDIRECTDRAWSURFACE2 display;                        /* Display device */
142     LPDIRECTDRAWCLIPPER  clipper;             /* clipper used for blitting */
143     HINSTANCE            hddraw_dll;       /* handle of the opened ddraw dll */
144
145     picture_resource_t   resource;
146
147     /* It protects the following variables */
148     vlc_mutex_t    lock;
149     bool           ch_wallpaper;
150     bool           wallpaper_requested;
151 #endif
152
153 #ifdef MODULE_NAME_IS_glwin32
154     HDC                   hGLDC;
155     HGLRC                 hGLRC;
156     vout_opengl_t         gl;
157     vout_display_opengl_t vgl;
158 #endif
159
160 #ifdef MODULE_NAME_IS_direct3d
161     bool allow_hw_yuv;    /* Should we use hardware YUV->RGB conversions */
162     /* show video on desktop window ? */
163     bool use_desktop;
164     struct {
165         bool is_fullscreen;
166         bool is_on_top;
167         RECT win;
168     } desktop_save;
169     vout_display_cfg_t cfg_saved; /* configuration used before going into desktop mode */
170
171     // core objects
172     HINSTANCE               hd3d9_dll;       /* handle of the opened d3d9 dll */
173     LPDIRECT3D9             d3dobj;
174     LPDIRECT3DDEVICE9       d3ddev;
175     D3DPRESENT_PARAMETERS   d3dpp;
176     // scene objects
177     LPDIRECT3DTEXTURE9      d3dtex;
178     LPDIRECT3DVERTEXBUFFER9 d3dvtc;
179
180     picture_resource_t      resource;
181
182     /* */
183     bool                    reset_device;
184     bool                    reopen_device;
185
186     /* It protects the following variables */
187     vlc_mutex_t    lock;
188     bool           ch_desktop;
189     bool           desktop_requested;
190 #endif
191
192 #if defined(MODULE_NAME_IS_wingdi) || defined(MODULE_NAME_IS_wingapi)
193     int  i_depth;
194
195     /* Our offscreen bitmap and its framebuffer */
196     HDC        off_dc;
197     HBITMAP    off_bitmap;
198
199     struct
200     {
201         BITMAPINFO bitmapinfo;
202         RGBQUAD    red;
203         RGBQUAD    green;
204         RGBQUAD    blue;
205     };
206
207 #   ifdef MODULE_NAME_IS_wingapi
208     HINSTANCE  gapi_dll;                   /* handle of the opened gapi dll */
209
210     /* GAPI functions */
211     int (*GXOpenDisplay)(HWND hWnd, DWORD dwFlags);
212     int (*GXCloseDisplay)();
213     void *(*GXBeginDraw)();
214     int (*GXEndDraw)();
215     GXDisplayProperties (*GXGetDisplayProperties)();
216     int (*GXSuspend)();
217     int (*GXResume)();
218 #   endif
219 #endif
220 };
221
222 #ifdef MODULE_NAME_IS_wingapi
223 #   define GXOpenDisplay          vd->sys->GXOpenDisplay
224 #   define GXCloseDisplay         vd->sys->GXCloseDisplay
225 #   define GXBeginDraw            vd->sys->GXBeginDraw
226 #   define GXEndDraw              vd->sys->GXEndDraw
227 #   define GXGetDisplayProperties vd->sys->GXGetDisplayProperties
228 #   define GXSuspend              vd->sys->GXSuspend
229 #   define GXResume               vd->sys->GXResume
230 #endif
231
232 /*****************************************************************************
233  * Prototypes from common.c
234  *****************************************************************************/
235 int  CommonInit(vout_display_t *);
236 void CommonClean(vout_display_t *);
237 void CommonManage(vout_display_t *);
238 int  CommonControl(vout_display_t *, int , va_list );
239 void CommonDisplay(vout_display_t *);
240 int  CommonUpdatePicture(picture_t *, picture_t **, uint8_t *, unsigned);
241
242 void UpdateRects (vout_display_t *,
243                   const vout_display_cfg_t *,
244                   const video_format_t *,
245                   bool is_forced);
246 void AlignRect(RECT *, int align_boundary, int align_size);
247
248 /*****************************************************************************
249  * Constants
250  *****************************************************************************/
251 #define IDM_TOGGLE_ON_TOP WM_USER + 1
252 #define DX_POSITION_CHANGE 0x1000
253 #define DX_WALLPAPER_CHANGE 0x2000
254 #define DX_DESKTOP_CHANGE 0x4000
255
256 /*****************************************************************************
257  * WinCE helpers
258  *****************************************************************************/
259 #ifdef UNDER_CE
260
261 #define AdjustWindowRect(a,b,c) AdjustWindowRectEx(a,b,c,0)
262
263 #ifndef GCL_HBRBACKGROUND
264 #   define GCL_HBRBACKGROUND (-10)
265 #endif
266
267 //#define FindWindowEx(a,b,c,d) 0
268
269 #define GetWindowPlacement(a,b)
270 #define SetWindowPlacement(a,b)
271 /*typedef struct _WINDOWPLACEMENT {
272     UINT length;
273     UINT flags;
274     UINT showCmd;
275     POINT ptMinPosition;
276     POINT ptMaxPosition;
277     RECT rcNormalPosition;
278 } WINDOWPLACEMENT;*/
279
280 #ifndef WM_NCMOUSEMOVE
281 #   define WM_NCMOUSEMOVE 160
282 #endif
283 #ifndef CS_OWNDC
284 #   define CS_OWNDC 32
285 #endif
286 #ifndef SC_SCREENSAVE
287 #   define SC_SCREENSAVE 0xF140
288 #endif
289 #ifndef SC_MONITORPOWER
290 #   define SC_MONITORPOWER 0xF170
291 #endif
292 #ifndef WM_NCPAINT
293 #   define WM_NCPAINT 133
294 #endif
295 #ifndef WS_OVERLAPPEDWINDOW
296 #   define WS_OVERLAPPEDWINDOW 0xcf0000
297 #endif
298 #ifndef WS_EX_NOPARENTNOTIFY
299 #   define WS_EX_NOPARENTNOTIFY 4
300 #endif
301 #ifndef WS_EX_APPWINDOW
302 #define WS_EX_APPWINDOW 0x40000
303 #endif
304
305 //#define SetWindowLongPtr SetWindowLong
306 //#define GetWindowLongPtr GetWindowLong
307 //#define GWLP_USERDATA GWL_USERDATA
308
309 #endif //UNDER_CE