]> git.sesse.net Git - vlc/blob - modules/video_output/msw/common.h
Direct2D video output module
[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_direct2d
161     HINSTANCE              d2_dll;            /* handle of the opened d2d1 dll */
162     ID2D1Factory           *d2_factory;                         /* D2D factory */
163     ID2D1HwndRenderTarget  *d2_render_target;          /* D2D rendering target */
164     ID2D1Bitmap            *d2_bitmap;                            /* D2 bitmap */
165 #endif
166
167 #ifdef MODULE_NAME_IS_direct3d
168     bool allow_hw_yuv;    /* Should we use hardware YUV->RGB conversions */
169     /* show video on desktop window ? */
170     bool use_desktop;
171     struct {
172         bool is_fullscreen;
173         bool is_on_top;
174         RECT win;
175     } desktop_save;
176     vout_display_cfg_t cfg_saved; /* configuration used before going into desktop mode */
177
178     // core objects
179     HINSTANCE               hd3d9_dll;       /* handle of the opened d3d9 dll */
180     LPDIRECT3D9             d3dobj;
181     LPDIRECT3DDEVICE9       d3ddev;
182     D3DPRESENT_PARAMETERS   d3dpp;
183     // scene objects
184     LPDIRECT3DTEXTURE9      d3dtex;
185     LPDIRECT3DVERTEXBUFFER9 d3dvtc;
186
187     picture_resource_t      resource;
188
189     /* */
190     bool                    reset_device;
191     bool                    reopen_device;
192
193     /* It protects the following variables */
194     vlc_mutex_t    lock;
195     bool           ch_desktop;
196     bool           desktop_requested;
197 #endif
198
199 #if defined(MODULE_NAME_IS_wingdi) || defined(MODULE_NAME_IS_wingapi)
200     int  i_depth;
201
202     /* Our offscreen bitmap and its framebuffer */
203     HDC        off_dc;
204     HBITMAP    off_bitmap;
205
206     struct
207     {
208         BITMAPINFO bitmapinfo;
209         RGBQUAD    red;
210         RGBQUAD    green;
211         RGBQUAD    blue;
212     };
213
214 #   ifdef MODULE_NAME_IS_wingapi
215     HINSTANCE  gapi_dll;                   /* handle of the opened gapi dll */
216
217     /* GAPI functions */
218     int (*GXOpenDisplay)(HWND hWnd, DWORD dwFlags);
219     int (*GXCloseDisplay)();
220     void *(*GXBeginDraw)();
221     int (*GXEndDraw)();
222     GXDisplayProperties (*GXGetDisplayProperties)();
223     int (*GXSuspend)();
224     int (*GXResume)();
225 #   endif
226 #endif
227 };
228
229 #ifdef MODULE_NAME_IS_wingapi
230 #   define GXOpenDisplay          vd->sys->GXOpenDisplay
231 #   define GXCloseDisplay         vd->sys->GXCloseDisplay
232 #   define GXBeginDraw            vd->sys->GXBeginDraw
233 #   define GXEndDraw              vd->sys->GXEndDraw
234 #   define GXGetDisplayProperties vd->sys->GXGetDisplayProperties
235 #   define GXSuspend              vd->sys->GXSuspend
236 #   define GXResume               vd->sys->GXResume
237 #endif
238
239 /*****************************************************************************
240  * Prototypes from common.c
241  *****************************************************************************/
242 int  CommonInit(vout_display_t *);
243 void CommonClean(vout_display_t *);
244 void CommonManage(vout_display_t *);
245 int  CommonControl(vout_display_t *, int , va_list );
246 void CommonDisplay(vout_display_t *);
247 int  CommonUpdatePicture(picture_t *, picture_t **, uint8_t *, unsigned);
248
249 void UpdateRects (vout_display_t *,
250                   const vout_display_cfg_t *,
251                   const video_format_t *,
252                   bool is_forced);
253 void AlignRect(RECT *, int align_boundary, int align_size);
254
255 /*****************************************************************************
256  * Constants
257  *****************************************************************************/
258 #define IDM_TOGGLE_ON_TOP WM_USER + 1
259 #define DX_POSITION_CHANGE 0x1000
260 #define DX_WALLPAPER_CHANGE 0x2000
261 #define DX_DESKTOP_CHANGE 0x4000
262
263 /*****************************************************************************
264  * WinCE helpers
265  *****************************************************************************/
266 #ifdef UNDER_CE
267
268 #define AdjustWindowRect(a,b,c) AdjustWindowRectEx(a,b,c,0)
269
270 #ifndef GCL_HBRBACKGROUND
271 #   define GCL_HBRBACKGROUND (-10)
272 #endif
273
274 //#define FindWindowEx(a,b,c,d) 0
275
276 #define GetWindowPlacement(a,b)
277 #define SetWindowPlacement(a,b)
278 /*typedef struct _WINDOWPLACEMENT {
279     UINT length;
280     UINT flags;
281     UINT showCmd;
282     POINT ptMinPosition;
283     POINT ptMaxPosition;
284     RECT rcNormalPosition;
285 } WINDOWPLACEMENT;*/
286
287 #ifndef WM_NCMOUSEMOVE
288 #   define WM_NCMOUSEMOVE 160
289 #endif
290 #ifndef CS_OWNDC
291 #   define CS_OWNDC 32
292 #endif
293 #ifndef SC_SCREENSAVE
294 #   define SC_SCREENSAVE 0xF140
295 #endif
296 #ifndef SC_MONITORPOWER
297 #   define SC_MONITORPOWER 0xF170
298 #endif
299 #ifndef WM_NCPAINT
300 #   define WM_NCPAINT 133
301 #endif
302 #ifndef WS_OVERLAPPEDWINDOW
303 #   define WS_OVERLAPPEDWINDOW 0xcf0000
304 #endif
305 #ifndef WS_EX_NOPARENTNOTIFY
306 #   define WS_EX_NOPARENTNOTIFY 4
307 #endif
308 #ifndef WS_EX_APPWINDOW
309 #define WS_EX_APPWINDOW 0x40000
310 #endif
311
312 //#define SetWindowLongPtr SetWindowLong
313 //#define GetWindowLongPtr GetWindowLong
314 //#define GWLP_USERDATA GWL_USERDATA
315
316 #endif //UNDER_CE