Mercurial > mplayer.hg
annotate libvo/vo_directx.c @ 7982:eac680483e6c
JACOSub is another subtitling format, whose specifications are at:
http://unicorn.us.com/jacosub
patch by Salvatore Falco <sfalco@studenti.ing.uniroma1.it>
author | arpi |
---|---|
date | Wed, 30 Oct 2002 19:16:58 +0000 |
parents | f804db78f704 |
children | 5b39e79af5fe |
rev | line source |
---|---|
7537 | 1 /****************************************************************************** |
2 * vo_directx.c: Directx v2 or later DirectDraw interface for MPlayer | |
3 * Copyright (c) 2002 Sascha Sommer <saschasommer@freenet.de>. | |
4 * | |
5 * This program is free software; you can redistribute it and/or modify | |
6 * it under the terms of the GNU General Public License as published by | |
7 * the Free Software Foundation; either version 2 of the License, or | |
8 * (at your option) any later version. | |
9 * | |
10 * This program is distributed in the hope that it will be useful, | |
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 * GNU General Public License for more details. | |
14 * | |
15 * You should have received a copy of the GNU General Public License | |
16 * along with this program; if not, write to the Free Software | |
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. | |
18 * | |
19 *****************************************************************************/ | |
20 /****************************************************************************** | |
21 * TODO: | |
22 * -fix dr + implement DMA | |
23 * -implement mousehiding | |
24 * -better exclusive mode | |
25 * | |
26 *****************************************************************************/ | |
27 | |
28 #include <windows.h> | |
29 #include <windowsx.h> | |
30 #include <ddraw.h> | |
31 #include <initguid.h> | |
32 #include <stdlib.h> | |
33 #include <errno.h> | |
34 #include "config.h" | |
35 #include "video_out.h" | |
36 #include "video_out_internal.h" | |
37 #include "fastmemcpy.h" | |
38 #include "../input/input.h" | |
39 #include "../linux/keycodes.h" | |
40 #include "../mp_msg.h" | |
41 | |
42 static LPDIRECTDRAW2 g_lpdd = NULL; //DirectDraw Object | |
43 static LPDIRECTDRAWSURFACE g_lpddsPrimary = NULL; //Primary Surface: viewport through the Desktop | |
44 static LPDIRECTDRAWSURFACE g_lpddsOverlay = NULL; //Overlay Surface | |
45 static LPDIRECTDRAWSURFACE g_lpddsBack = NULL; //Back surface | |
7624
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
46 static LPDIRECTDRAWCLIPPER g_lpddclipper; //clipper object, can only be used without overlay |
7537 | 47 static DDSURFACEDESC ddsdsf; //surface descripiton needed for locking |
7778
f804db78f704
10l - noticed by Soeren Mueller <soeren.mueller at webwasher.com>
faust3
parents:
7713
diff
changeset
|
48 static HINSTANCE hddraw_dll; //handle to ddraw.dll |
7537 | 49 static RECT rd; //rect of our stretched image |
50 static RECT rs; //rect of our source image | |
51 static HWND hWnd=NULL; //handle to the window | |
52 static uint32_t ontop=0; //always in foreground | |
53 static uint32_t image_width, image_height; //image width and height | |
54 static uint32_t d_image_width, d_image_height; //image width and height zoomed | |
55 static uint8_t *image=NULL; //image data | |
56 static uint32_t image_format; //image format | |
57 static uint32_t vm = 0; //exclusive mode, allows resolution switching (not implemented yet) | |
58 static uint32_t fs = 0; //display in window or fullscreen | |
59 static uint32_t dstride; //surface stride | |
60 static uint32_t swap = 1; //swap u<->v planes set to 1 if you experience bluish faces | |
7682 | 61 static uint32_t nooverlay = 0; //NonOverlay mode |
7624
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
62 static DWORD destcolorkey; //colorkey for our surface |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
63 static COLORREF windowcolor = RGB(0,0,16); //windowcolor == colorkey |
7537 | 64 |
65 extern void mplayer_put_key(int code); //let mplayer handel the keyevents | |
66 extern int vo_doublebuffering; //tribblebuffering | |
67 | |
68 /***************************************************************************** | |
69 * DirectDraw GUIDs. | |
70 * Defining them here allows us to get rid of the dxguid library during | |
71 * the linking stage. | |
72 *****************************************************************************/ | |
73 DEFINE_GUID( IID_IDirectDraw2, 0xB3A6F3E0,0x2B43,0x11CF,0xA2,0xDE,0x00,0xAA,0x00,0xB9,0x33,0x56 ); | |
74 | |
75 typedef struct directx_fourcc_caps | |
76 { | |
77 char* img_format_name; //human readable name | |
78 uint32_t img_format; //as MPlayer image format | |
79 uint32_t drv_caps; //what hw supports with this format | |
80 DDPIXELFORMAT g_ddpfOverlay; //as Directx Sourface description | |
81 } directx_fourcc_caps; | |
82 | |
83 | |
84 static directx_fourcc_caps g_ddpf[] = | |
85 { | |
86 {"YV12 ",IMGFMT_YV12 ,0,{sizeof(DDPIXELFORMAT), DDPF_FOURCC,MAKEFOURCC('Y','V','1','2'),0,0,0,0,0}}, | |
87 {"I420 ",IMGFMT_I420 ,0,{sizeof(DDPIXELFORMAT), DDPF_FOURCC,MAKEFOURCC('I','4','2','0'),0,0,0,0,0}}, //yv12 with swapped uv | |
88 {"IYUV ",IMGFMT_IYUV ,0,{sizeof(DDPIXELFORMAT), DDPF_FOURCC,MAKEFOURCC('I','Y','U','V'),0,0,0,0,0}}, //same as i420 | |
89 {"YVU9 ",IMGFMT_YVU9 ,0,{sizeof(DDPIXELFORMAT), DDPF_FOURCC,MAKEFOURCC('Y','V','U','9'),0,0,0,0,0}}, | |
90 {"YUY2 ",IMGFMT_YUY2 ,0,{sizeof(DDPIXELFORMAT), DDPF_FOURCC,MAKEFOURCC('Y','U','Y','2'),0,0,0,0,0}}, | |
91 // {"UYVY ",IMGFMT_UYVY ,0,{sizeof(DDPIXELFORMAT), DDPF_FOURCC,MAKEFOURCC('U','Y','V','Y'),0,0,0,0,0}}, | |
92 {"RGB15",IMGFMT_RGB15,0,{sizeof(DDPIXELFORMAT), DDPF_RGB, 0, 16, 0x0000001F, 0x000003E0, 0x00007C00, 0}}, //RGB 5:5:5 | |
93 {"BGR15",IMGFMT_BGR15,0,{sizeof(DDPIXELFORMAT), DDPF_RGB, 0, 16, 0x00007C00, 0x000003E0, 0x0000001F, 0}}, | |
94 {"RGB16",IMGFMT_RGB16,0,{sizeof(DDPIXELFORMAT), DDPF_RGB, 0, 16, 0x0000F800, 0x000007E0, 0x0000001F, 0}}, //RGB 5:6:5 | |
95 {"BGR16",IMGFMT_BGR16,0,{sizeof(DDPIXELFORMAT), DDPF_RGB, 0, 16, 0x0000001F, 0x000007E0, 0x0000F800, 0}}, | |
96 {"RGB24",IMGFMT_RGB24,0,{sizeof(DDPIXELFORMAT), DDPF_RGB, 0, 24, 0x000000FF, 0x0000FF00, 0x00FF0000, 0}}, | |
97 {"BGR24",IMGFMT_BGR24,0,{sizeof(DDPIXELFORMAT), DDPF_RGB, 0, 24, 0x00FF0000, 0x0000FF00, 0x000000FF, 0}}, | |
98 {"RGB32",IMGFMT_RGB32,0,{sizeof(DDPIXELFORMAT), DDPF_RGB, 0, 32, 0x000000FF, 0x0000FF00, 0x00FF0000, 0}}, | |
99 {"BGR32",IMGFMT_BGR32,0,{sizeof(DDPIXELFORMAT), DDPF_RGB, 0, 32, 0x00FF0000, 0x0000FF00, 0x000000FF, 0}} | |
100 }; | |
101 #define NUM_FORMATS (sizeof(g_ddpf) / sizeof(g_ddpf[0])) | |
102 | |
103 | |
104 LIBVO_EXTERN(directx) | |
105 | |
106 static vo_info_t vo_info = | |
107 { | |
108 "Directx DDraw YUV/RGB/BGR renderer", | |
109 "directx", | |
110 "Sascha Sommer <saschasommer@freenet.de>", | |
111 "" | |
112 }; | |
113 | |
114 | |
115 static void draw_alpha(int x0, int y0, int w, int h, unsigned char *src, | |
116 unsigned char *srca, int stride) | |
117 { | |
118 switch(image_format) { | |
119 case IMGFMT_YV12 : | |
120 case IMGFMT_I420 : | |
121 case IMGFMT_IYUV : | |
122 case IMGFMT_YVU9 : | |
123 vo_draw_alpha_yv12(w,h,src,srca,stride,((uint8_t *) image) + image_width*y0 + x0,image_width); | |
124 break; | |
125 case IMGFMT_YUY2 : | |
126 vo_draw_alpha_yuy2(w,h,src,srca,stride,((uint8_t *) image)+ 2*image_width*y0 + 2*x0 ,2*image_width); | |
127 break; | |
128 case IMGFMT_UYVY : | |
129 vo_draw_alpha_yuy2(w,h,src,srca,stride,((uint8_t *) image) + 2*image_width*y0 + 2*x0 + 1,dstride); | |
130 break; | |
131 case IMGFMT_RGB15: | |
132 case IMGFMT_BGR15: | |
133 vo_draw_alpha_rgb15(w,h,src,srca,stride,((uint8_t *) image)+dstride*y0+2*x0,dstride); | |
134 break; | |
135 case IMGFMT_RGB16: | |
136 case IMGFMT_BGR16: | |
137 vo_draw_alpha_rgb16(w,h,src,srca,stride,((uint8_t *) image)+dstride*y0+2*x0,dstride); | |
138 break; | |
139 case IMGFMT_RGB24: | |
140 case IMGFMT_BGR24: | |
141 vo_draw_alpha_rgb24(w,h,src,srca,stride,((uint8_t *) image)+dstride*y0+4*x0,dstride); | |
142 break; | |
143 case IMGFMT_RGB32: | |
144 case IMGFMT_BGR32: | |
145 vo_draw_alpha_rgb32(w,h,src,srca,stride,((uint8_t *) image)+dstride*y0+4*x0,dstride); | |
146 break; | |
147 } | |
148 } | |
149 | |
150 static void draw_osd(void) | |
151 { | |
152 vo_draw_text(image_width,image_height,draw_alpha); | |
153 } | |
154 | |
155 static uint32_t | |
156 query_format(uint32_t format) | |
157 { | |
158 uint32_t i=0; | |
159 while ( i < NUM_FORMATS ) | |
160 { | |
161 if (g_ddpf[i].img_format == format) | |
162 return g_ddpf[i].drv_caps; | |
163 i++; | |
164 } | |
165 return 0; | |
166 } | |
167 | |
168 static uint32_t Directx_CreatePrimarySurface() | |
169 { | |
170 DDSURFACEDESC ddsd; | |
171 //cleanup | |
172 if(g_lpddsPrimary)g_lpddsPrimary->lpVtbl->Release(g_lpddsPrimary); | |
173 g_lpddsPrimary=NULL; | |
174 ZeroMemory(&ddsd, sizeof(ddsd)); | |
175 ddsd.dwSize = sizeof(ddsd); | |
176 //set flags and create a primary surface. | |
177 ddsd.dwFlags = DDSD_CAPS; | |
178 ddsd.ddsCaps.dwCaps = DDSCAPS_PRIMARYSURFACE; | |
179 if(g_lpdd->lpVtbl->CreateSurface(g_lpdd,&ddsd, &g_lpddsPrimary, NULL )== DD_OK) | |
180 mp_msg(MSGT_VO, MSGL_DBG3,"<vo_directx><INFO>primary surface created\n"); | |
181 else | |
182 { | |
183 mp_msg(MSGT_VO, MSGL_FATAL,"<vo_directx><FATAL ERROR>could not create primary surface\n"); | |
184 return 1; | |
185 } | |
186 return 0; | |
187 } | |
188 | |
189 static uint32_t Directx_CreateOverlay(uint32_t imgfmt) | |
190 { | |
191 HRESULT ddrval; | |
192 DDSURFACEDESC ddsdOverlay; | |
193 uint32_t i=0; | |
194 while ( i < NUM_FORMATS +1 && imgfmt != g_ddpf[i].img_format) | |
195 { | |
196 i++; | |
197 } | |
198 if (!g_lpdd || !g_lpddsPrimary) | |
199 return 1; | |
200 //cleanup | |
201 if (g_lpddsOverlay)g_lpddsOverlay->lpVtbl->Release(g_lpddsOverlay); | |
202 if (g_lpddsBack)g_lpddsBack->lpVtbl->Release(g_lpddsBack); | |
203 g_lpddsOverlay= NULL; | |
204 g_lpddsBack = NULL; | |
205 //create our overlay | |
206 ZeroMemory(&ddsdOverlay, sizeof(ddsdOverlay)); | |
207 ddsdOverlay.dwSize = sizeof(ddsdOverlay); | |
208 ddsdOverlay.ddsCaps.dwCaps=DDSCAPS_OVERLAY | DDSCAPS_FLIP | DDSCAPS_COMPLEX | DDSCAPS_VIDEOMEMORY; | |
209 ddsdOverlay.dwFlags= DDSD_CAPS|DDSD_HEIGHT|DDSD_WIDTH|DDSD_BACKBUFFERCOUNT| DDSD_PIXELFORMAT; | |
210 ddsdOverlay.dwWidth=image_width; | |
211 ddsdOverlay.dwHeight=image_height; | |
212 ddsdOverlay.dwBackBufferCount=2; | |
213 ddsdOverlay.ddpfPixelFormat=g_ddpf[i].g_ddpfOverlay; | |
214 if(vo_doublebuffering) //tribblebuffering | |
215 { | |
216 if (g_lpdd->lpVtbl->CreateSurface(g_lpdd,&ddsdOverlay, &g_lpddsOverlay, NULL)== DD_OK) | |
217 { | |
218 mp_msg(MSGT_VO, MSGL_V,"<vo_directx><INFO>overlay with format %s created\n",g_ddpf[i].img_format_name); | |
219 //get the surface directly attached to the primary (the back buffer) | |
220 ddsdOverlay.ddsCaps.dwCaps = DDSCAPS_BACKBUFFER; | |
221 if(g_lpddsOverlay->lpVtbl->GetAttachedSurface(g_lpddsOverlay,&ddsdOverlay.ddsCaps, &g_lpddsBack) != DD_OK) | |
222 { | |
223 mp_msg(MSGT_VO, MSGL_FATAL,"<vo_directx><FATAL ERROR>can't get attached surface\n"); | |
224 return 1; | |
225 } | |
226 return 0; | |
227 } | |
228 vo_doublebuffering=0; //disable tribblebuffering | |
229 mp_msg(MSGT_VO, MSGL_V,"<vo_directx><WARN>cannot create tribblebuffer overlay with format %s\n",g_ddpf[i].img_format_name); | |
230 } | |
231 //single buffer | |
232 mp_msg(MSGT_VO, MSGL_V,"<vo_directx><INFO>using singlebuffer overlay\n"); | |
233 ddsdOverlay.dwBackBufferCount=0; | |
234 ddsdOverlay.ddsCaps.dwCaps=DDSCAPS_OVERLAY | DDSCAPS_VIDEOMEMORY; | |
235 ddsdOverlay.dwFlags= DDSD_CAPS|DDSD_HEIGHT|DDSD_WIDTH|DDSD_PIXELFORMAT; | |
236 ddsdOverlay.ddpfPixelFormat=g_ddpf[i].g_ddpfOverlay; | |
237 // try to create the overlay surface | |
238 ddrval = g_lpdd->lpVtbl->CreateSurface(g_lpdd,&ddsdOverlay, &g_lpddsOverlay, NULL); | |
239 if(ddrval != DD_OK) | |
240 { | |
241 mp_msg(MSGT_VO, MSGL_ERR,"<vo_directx><ERROR>"); | |
242 switch(ddrval) | |
243 { | |
244 case DDERR_INCOMPATIBLEPRIMARY: | |
245 {mp_msg(MSGT_VO, MSGL_ERR,"incompatible primary surface\n");break;} | |
246 case DDERR_INVALIDCAPS: | |
247 {mp_msg(MSGT_VO, MSGL_ERR,"invalid caps\n");break;} | |
248 case DDERR_INVALIDOBJECT: | |
249 {mp_msg(MSGT_VO, MSGL_ERR,"invalid object\n");break;} | |
250 case DDERR_INVALIDPARAMS: | |
251 {mp_msg(MSGT_VO, MSGL_ERR,"invalid parameters\n");break;} | |
252 case DDERR_INVALIDPIXELFORMAT: | |
7713 | 253 {mp_msg(MSGT_VO, MSGL_ERR,"invalid pixelformat: %s\n",g_ddpf[i].img_format_name);break;} |
7537 | 254 case DDERR_NODIRECTDRAWHW: |
255 {mp_msg(MSGT_VO, MSGL_ERR,"no directdraw hardware\n");break;} | |
256 case DDERR_NOEMULATION: | |
257 {mp_msg(MSGT_VO, MSGL_ERR,"cant emulate\n");break;} | |
258 case DDERR_NOFLIPHW: | |
259 {mp_msg(MSGT_VO, MSGL_ERR,"hardware can't do flip\n");break;} | |
260 case DDERR_NOOVERLAYHW: | |
261 {mp_msg(MSGT_VO, MSGL_ERR,"hardware can't do overlay\n");break;} | |
262 case DDERR_OUTOFMEMORY: | |
263 {mp_msg(MSGT_VO, MSGL_ERR,"not enough system memory\n");break;} | |
264 case DDERR_UNSUPPORTEDMODE: | |
265 {mp_msg(MSGT_VO, MSGL_ERR,"unsupported mode\n");break;} | |
266 case DDERR_OUTOFVIDEOMEMORY: | |
267 {mp_msg(MSGT_VO, MSGL_ERR,"not enough video memory\n");break;} | |
268 } | |
269 return 1; | |
270 } | |
271 g_lpddsBack = g_lpddsOverlay; | |
272 return 0; | |
273 } | |
274 | |
275 static uint32_t Directx_CreateBackpuffer() | |
276 { | |
277 DDSURFACEDESC ddsd; | |
278 //cleanup | |
279 if (g_lpddsBack)g_lpddsBack->lpVtbl->Release(g_lpddsBack); | |
280 g_lpddsBack=NULL; | |
281 ZeroMemory(&ddsd, sizeof(ddsd)); | |
282 ddsd.dwSize = sizeof(ddsd); | |
283 ddsd.ddsCaps.dwCaps= DDSCAPS_OFFSCREENPLAIN | DDSCAPS_SYSTEMMEMORY; | |
284 ddsd.dwFlags= DDSD_CAPS | DDSD_WIDTH | DDSD_HEIGHT; | |
285 ddsd.dwWidth=image_width; | |
286 ddsd.dwHeight=image_height; | |
287 if(g_lpdd->lpVtbl->CreateSurface( g_lpdd, &ddsd, &g_lpddsBack, 0 ) != DD_OK ) | |
288 { | |
289 mp_msg(MSGT_VO, MSGL_FATAL,"<vo_directx><FATAL ERROR>can't create backpuffer\n"); | |
290 return 1; | |
291 } | |
292 mp_msg(MSGT_VO, MSGL_DBG3,"<vo_directx><INFO>backbuffer created\n"); | |
293 return 0; | |
294 } | |
295 | |
296 //create clipper for nonoverlay mode | |
297 static uint32_t Directx_CreateClipper() | |
298 { | |
299 if(g_lpddclipper)g_lpddclipper->lpVtbl->Release(g_lpddclipper); | |
300 g_lpddclipper=NULL; | |
301 if(g_lpdd->lpVtbl->CreateClipper(g_lpdd, 0, &g_lpddclipper,NULL)!= DD_OK){mp_msg(MSGT_VO, MSGL_FATAL,"<vo_directx><FATAL ERROR>can't create clipper\n");return 1;} | |
302 if(g_lpddclipper->lpVtbl->SetHWnd (g_lpddclipper, 0, hWnd)!= DD_OK){mp_msg(MSGT_VO, MSGL_FATAL,"<vo_directx><FATAL ERROR>can't associate clipper with window\n");return 1;} | |
303 if(g_lpddsPrimary->lpVtbl->SetClipper (g_lpddsPrimary,g_lpddclipper)!=DD_OK){mp_msg(MSGT_VO, MSGL_FATAL,"<vo_directx><FATAL ERROR>can't associate primary surface with clipper\n");return 1;} | |
304 mp_msg(MSGT_VO, MSGL_DBG3,"<vo_directx><INFO>clipper succesfully created\n"); | |
305 return 0; | |
306 } | |
307 | |
308 static const vo_info_t* | |
309 get_info(void) | |
310 { | |
311 return &vo_info; | |
312 } | |
313 | |
314 static void uninit(void) | |
315 { | |
316 if (g_lpddclipper != NULL) g_lpddclipper->lpVtbl->Release(g_lpddclipper); | |
317 mp_msg(MSGT_VO, MSGL_DBG3,"<vo_directx><INFO>clipper released\n"); | |
318 if (g_lpddsBack != NULL) g_lpddsBack->lpVtbl->Release(g_lpddsBack); | |
319 g_lpddsBack = NULL; | |
320 mp_msg(MSGT_VO, MSGL_DBG3,"<vo_directx><INFO>back surface released\n"); | |
321 if(vo_doublebuffering) | |
322 { | |
323 if (g_lpddsOverlay != NULL)g_lpddsOverlay->lpVtbl->Release(g_lpddsOverlay); | |
324 g_lpddsOverlay = NULL; | |
325 mp_msg(MSGT_VO, MSGL_DBG3,"<vo_directx><INFO>overlay surface released\n"); | |
326 } | |
327 if (g_lpddsPrimary != NULL) g_lpddsPrimary->lpVtbl->Release(g_lpddsPrimary); | |
7682 | 328 g_lpddsPrimary = NULL; |
329 mp_msg(MSGT_VO, MSGL_DBG3,"<vo_directx><INFO>primary released\n"); | |
7624
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
330 if(hWnd != NULL)DestroyWindow(hWnd); |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
331 mp_msg(MSGT_VO, MSGL_DBG3,"<vo_directx><INFO>window destroyed\n"); |
7537 | 332 if (g_lpdd != NULL) g_lpdd->lpVtbl->Release(g_lpdd); |
333 mp_msg(MSGT_VO, MSGL_DBG3,"<vo_directx><INFO>directdrawobject released\n"); | |
7778
f804db78f704
10l - noticed by Soeren Mueller <soeren.mueller at webwasher.com>
faust3
parents:
7713
diff
changeset
|
334 FreeLibrary( hddraw_dll); |
f804db78f704
10l - noticed by Soeren Mueller <soeren.mueller at webwasher.com>
faust3
parents:
7713
diff
changeset
|
335 hddraw_dll= NULL; |
f804db78f704
10l - noticed by Soeren Mueller <soeren.mueller at webwasher.com>
faust3
parents:
7713
diff
changeset
|
336 mp_msg(MSGT_VO, MSGL_DBG3,"<vo_directx><INFO>ddraw.dll freed\n"); |
7537 | 337 mp_msg(MSGT_VO, MSGL_DBG3,"<vo_directx><INFO>uninited\n"); |
338 } | |
339 | |
340 static uint32_t Directx_InitDirectDraw() | |
341 { | |
342 HRESULT (WINAPI *OurDirectDrawCreate)(GUID *,LPDIRECTDRAW *,IUnknown *); | |
343 LPDIRECTDRAW lpDDraw; | |
344 mp_msg(MSGT_VO, MSGL_DBG3,"<vo_directx><INFO>Initing DirectDraw\n" ); | |
345 | |
346 //load direct draw DLL: based on videolans code | |
347 hddraw_dll = LoadLibrary("DDRAW.DLL"); | |
348 if( hddraw_dll == NULL ) | |
349 { | |
350 mp_msg(MSGT_VO, MSGL_FATAL,"<vo_directx><FATAL ERROR>failed loading ddraw.dll\n" ); | |
351 return 1; | |
352 } | |
353 OurDirectDrawCreate = (void *)GetProcAddress(hddraw_dll, "DirectDrawCreate"); | |
354 if ( OurDirectDrawCreate == NULL ) | |
355 { | |
356 FreeLibrary( hddraw_dll ); | |
357 hddraw_dll = NULL; | |
358 mp_msg(MSGT_VO, MSGL_FATAL,"<vo_directx><FATAL ERROR>failed geting proc address\n"); | |
359 return 1; | |
360 } | |
361 // initialize DirectDraw and create directx v1 object | |
362 if (OurDirectDrawCreate( NULL, &lpDDraw, NULL ) != DD_OK ) | |
363 { | |
364 lpDDraw = NULL; | |
365 FreeLibrary( hddraw_dll ); | |
366 hddraw_dll = NULL; | |
367 mp_msg(MSGT_VO, MSGL_FATAL,"<vo_directx><FATAL ERROR>can't initialize ddraw\n"); | |
368 return 1; | |
369 } | |
370 // ask IDirectDraw for IDirectDraw2 | |
371 if (lpDDraw->lpVtbl->QueryInterface(lpDDraw, &IID_IDirectDraw2, (void **)&g_lpdd) != DD_OK) | |
372 { | |
373 mp_msg(MSGT_VO, MSGL_FATAL,"<vo_directx><FATAL ERROR>no directx 2 installed\n"); | |
374 return 1; | |
375 } | |
376 //release our old interface and free ddraw.dll | |
377 lpDDraw->lpVtbl->Release(lpDDraw); | |
7778
f804db78f704
10l - noticed by Soeren Mueller <soeren.mueller at webwasher.com>
faust3
parents:
7713
diff
changeset
|
378 mp_msg(MSGT_VO, MSGL_DBG3,"<vo_directx><INFO>lpDDraw released\n" ); |
7537 | 379 //set cooperativelevel: for our tests, no handle to a window is needed |
380 if (g_lpdd->lpVtbl->SetCooperativeLevel(g_lpdd, NULL, DDSCL_NORMAL) != DD_OK) | |
381 { | |
382 mp_msg(MSGT_VO, MSGL_FATAL,"<vo_directx><FATAL ERROR>could not set cooperativelevel for hardwarecheck\n"); | |
383 return 1; | |
384 } | |
385 mp_msg(MSGT_VO, MSGL_DBG3,"<vo_directx><INFO>DirectDraw Inited\n"); | |
386 return 0; | |
387 } | |
388 | |
389 static void check_events(void) | |
390 { | |
391 MSG msg; | |
392 while (PeekMessage(&msg, NULL, 0, 0,PM_REMOVE)) | |
393 { | |
394 TranslateMessage(&msg); | |
395 DispatchMessage(&msg); | |
396 } | |
397 } | |
398 | |
399 //fullscreen code: centers and zooms image, returns window rect | |
400 static RECT Directx_Fullscreencalc() | |
401 { | |
402 uint32_t xscreen = GetSystemMetrics(SM_CXSCREEN); | |
403 uint32_t yscreen = GetSystemMetrics(SM_CYSCREEN); | |
404 uint32_t xstretch1000,ystretch1000; | |
405 RECT rd_window; | |
406 rd.top = 0; | |
407 rd.left=0; | |
408 rd.right = xscreen; | |
409 rd.bottom = yscreen; | |
410 rd_window=rd; | |
411 xstretch1000 = (xscreen*1000)/d_image_width; | |
412 ystretch1000 = (yscreen*1000)/d_image_height; | |
413 if(xstretch1000 > ystretch1000) | |
414 { | |
415 rd.bottom=yscreen; | |
416 rd.right=(d_image_width*ystretch1000)/1000; | |
417 } | |
418 else | |
419 { | |
420 rd.right=xscreen; | |
421 rd.bottom=(d_image_height*xstretch1000)/1000; | |
422 } | |
423 //printf("%i,%i,%i,%i,%i,%i\n",xstretch1000,ystretch1000,d_image_height,d_image_width,rd.bottom,rd.right); | |
424 rd.left = (xscreen-rd.right)/2; | |
425 rd.right= rd.right+rd.left; | |
426 rd.top = (yscreen-rd.bottom)/2; | |
427 rd.bottom = rd.bottom + rd.top; | |
428 return rd_window; | |
429 } | |
430 | |
431 //this function hopefully takes into account most of those alignments, minimum stretch, move outside of screen | |
432 //no stretch hw, etc... and displays the overlay | |
433 //I seperated non overlay mode because it is already to much stuff in here | |
434 static uint32_t Directx_DisplayOverlay() | |
435 { | |
436 WINDOWPLACEMENT window_placement; | |
437 RECT rd_window; //Rect of the window | |
438 HRESULT ddrval; | |
439 DDCAPS capsDrv; | |
440 DDOVERLAYFX ovfx; | |
441 DWORD dwUpdateFlags; | |
442 HWND hWndafter; | |
443 uint32_t uStretchFactor1000; //minimum stretch | |
444 uint32_t xstretch1000,ystretch1000; | |
445 uint32_t xscreen = GetSystemMetrics(SM_CXSCREEN); | |
446 uint32_t yscreen = GetSystemMetrics(SM_CYSCREEN); | |
447 POINT point_window; | |
448 //get driver capabilities | |
449 ZeroMemory(&capsDrv, sizeof(capsDrv)); | |
450 capsDrv.dwSize = sizeof(capsDrv); | |
451 if(g_lpdd->lpVtbl->GetCaps(g_lpdd,&capsDrv, NULL) != DD_OK)return 1; | |
452 //check minimum stretch, depends on display adaptor and mode (refresh rate!) | |
453 uStretchFactor1000 = capsDrv.dwMinOverlayStretch>1000 ? capsDrv.dwMinOverlayStretch : 1000; | |
454 window_placement.length = sizeof(WINDOWPLACEMENT); | |
455 GetWindowPlacement(hWnd, &window_placement ); | |
456 if(!fs) //windowed | |
457 { | |
458 if (window_placement.showCmd == SW_SHOWMAXIMIZED) //is our window maximized? | |
459 { | |
460 CloseWindow(hWnd); //we do this to prevent the screen being filled with garbage | |
461 window_placement.showCmd = SW_SHOWNORMAL; //restore | |
462 SetWindowLong( hWnd,GWL_STYLE , WS_OVERLAPPEDWINDOW| WS_SIZEBOX ); //change Style | |
463 SetWindowPlacement( hWnd, &window_placement ); | |
464 } | |
465 } | |
466 else //fullscreen | |
467 { | |
468 if (window_placement.showCmd == SW_SHOWNORMAL) //is our window normal? | |
469 { | |
470 window_placement.showCmd = SW_SHOWMAXIMIZED; //maximize | |
471 SetWindowLong( hWnd, GWL_STYLE, 0 ); //change style | |
472 SetWindowPlacement( hWnd, &window_placement ); | |
473 } | |
474 } | |
475 | |
476 if(!fs) | |
477 { | |
478 GetClientRect (hWnd, &rd_window); | |
479 if(rd_window.top == rd_window.bottom) //window is minimized | |
480 { | |
481 ddrval = g_lpddsOverlay->lpVtbl->UpdateOverlay(g_lpddsOverlay,NULL, g_lpddsPrimary, NULL, DDOVER_HIDE, NULL); //hide the overlay | |
482 return 0; | |
483 } | |
484 if (GetWindowTextLength(hWnd)==0) | |
485 { | |
486 SetWindowText(hWnd,"MPlayer - DirectX Overlay"); //for the first call: change only title, not the overlay size | |
487 } | |
488 else | |
489 { | |
490 d_image_width = rd_window.right - rd_window.left; //calculate new overlay from the window size | |
491 d_image_height = rd_window.bottom - rd_window.top; | |
492 } | |
493 } | |
494 else | |
495 { | |
496 rd.top = 0;rd.left=0; | |
497 rd.bottom = yscreen; rd.right = xscreen; | |
498 rs.top = 0;rs.left=0; | |
499 rs.bottom = image_height; rs.right = image_width; | |
500 } | |
501 //check if hardware can stretch or shrink, if needed | |
502 //do some cards support only nshrinking or is this a special shrink,stretch feature? | |
503 if((d_image_width < image_width)&& !(capsDrv.dwFXCaps & DDFXCAPS_OVERLAYSHRINKX)) | |
504 { | |
505 if(capsDrv.dwFXCaps & DDFXCAPS_OVERLAYSHRINKXN)mp_msg(MSGT_VO, MSGL_ERR,"<vo_directx><ERROR>can only shrinkN\n"); | |
506 else mp_msg(MSGT_VO, MSGL_ERR,"<vo_directx><ERROR>can't shrink x\n"); | |
507 d_image_width=image_width; | |
508 } | |
509 else if((d_image_width > image_width)&& !(capsDrv.dwFXCaps & DDFXCAPS_OVERLAYSTRETCHX)) | |
510 { | |
511 if(capsDrv.dwFXCaps & DDFXCAPS_OVERLAYSTRETCHXN)mp_msg(MSGT_VO, MSGL_ERR,"<vo_directx><ERROR>can only stretchN\n"); | |
512 else mp_msg(MSGT_VO, MSGL_ERR,"<vo_directx><ERROR>can't stretch x\n"); | |
513 d_image_width = image_width; | |
514 } | |
515 if((d_image_height < image_height) && !(capsDrv.dwFXCaps & DDFXCAPS_OVERLAYSHRINKY)) | |
516 { | |
517 if(capsDrv.dwFXCaps & DDFXCAPS_OVERLAYSHRINKYN)mp_msg(MSGT_VO, MSGL_ERR,"<vo_directx><ERROR>can only shrinkN\n"); | |
518 else mp_msg(MSGT_VO, MSGL_ERR,"<vo_directx><ERROR>can't shrink y\n"); | |
519 d_image_height = image_height; | |
520 } | |
521 else if((d_image_height > image_height ) && !(capsDrv.dwFXCaps & DDFXCAPS_OVERLAYSTRETCHY)) | |
522 { | |
523 if(capsDrv.dwFXCaps & DDFXCAPS_OVERLAYSTRETCHYN)mp_msg(MSGT_VO, MSGL_ERR,"<vo_directx><ERROR>can only stretchN\n"); | |
524 else mp_msg(MSGT_VO, MSGL_ERR,"<vo_directx><ERROR>can't stretch y\n"); | |
525 d_image_height = image_height; | |
526 } | |
527 | |
528 if(!fs) //windowed | |
529 { | |
530 point_window.x = 0; //overlayposition relative to the window | |
531 point_window.y = 0; | |
532 ClientToScreen(hWnd,&point_window); | |
533 rd.left = point_window.x; //fill the wanted x1&y1 of the Overlay | |
534 rd.top = point_window.y; | |
535 //fix minimum stretch | |
536 rd.right = ((d_image_width+rd.left)*uStretchFactor1000+999)/1000; | |
537 rd.bottom = (d_image_height+rd.top)*uStretchFactor1000/1000; | |
538 //calculate xstretch1000 and ystretch1000 | |
539 xstretch1000 = ((rd.right - rd.left)* 1000)/image_width ; | |
540 ystretch1000 = ((rd.bottom - rd.top)* 1000)/image_height; | |
541 //handle move outside of window with cropping | |
542 rd_window = rd; //don't crop the window !!! | |
543 if(rd.left < 0) //move out left | |
544 { | |
545 rs.left=(-rd.left*1000)/xstretch1000; | |
546 rd.left = 0; | |
547 } | |
548 else rs.left=0; | |
549 if(rd.top < 0) //move out up | |
550 { | |
551 rs.top=(-rd.top*1000)/ystretch1000; | |
552 rd.top = 0; | |
553 } | |
554 else rs.top = 0; | |
555 if(rd.right > xscreen) //move out right | |
556 { | |
557 rs.right=((xscreen-rd.left)*1000)/xstretch1000; | |
558 rd.right= xscreen; | |
559 } | |
560 else rs.right = image_width; | |
561 if(rd.bottom > yscreen) //move out down | |
562 { | |
563 rs.bottom=((yscreen-rd.top)*1000)/ystretch1000; | |
564 rd.bottom= yscreen; | |
565 } | |
566 else rs.bottom= image_height; | |
567 } | |
568 else | |
569 { | |
570 rd_window = Directx_Fullscreencalc(); | |
571 } | |
572 // check alignment restrictions | |
573 // these expressions (x & -y) just do alignment by dropping low order bits... | |
574 // so to round up, we add first, then truncate. | |
575 if ((capsDrv.dwCaps & DDCAPS_ALIGNBOUNDARYSRC) && capsDrv.dwAlignBoundarySrc) | |
576 rs.left = (rs.left + capsDrv.dwAlignBoundarySrc / 2) & -(signed)(capsDrv.dwAlignBoundarySrc); | |
577 if ((capsDrv.dwCaps & DDCAPS_ALIGNSIZESRC) && capsDrv.dwAlignSizeSrc) | |
578 rs.right = rs.left + (rs.right - rs.left + capsDrv.dwAlignSizeSrc / 2) & -(signed) (capsDrv.dwAlignSizeSrc); | |
579 if ((capsDrv.dwCaps & DDCAPS_ALIGNBOUNDARYDEST) && capsDrv.dwAlignBoundaryDest) | |
580 { | |
581 rd.left = (rd.left + capsDrv.dwAlignBoundaryDest / 2) & -(signed)(capsDrv.dwAlignBoundaryDest); | |
582 if(!fs)rd_window.left = (rd_window.left + capsDrv.dwAlignBoundaryDest / 2) & -(signed)(capsDrv.dwAlignBoundaryDest); //don't forget the window | |
583 } | |
584 if ((capsDrv.dwCaps & DDCAPS_ALIGNSIZEDEST) && capsDrv.dwAlignSizeDest) | |
585 { | |
586 rd.right = rd.left + (rd.right - rd.left) & -(signed) (capsDrv.dwAlignSizeDest); | |
587 if(!fs)rd_window.right = rd_window.left + (rd_window.right - rd_window.left) & -(signed) (capsDrv.dwAlignSizeDest); //don't forget the window | |
588 } | |
589 if(!fs)AdjustWindowRect(&rd_window,WS_OVERLAPPEDWINDOW|WS_SIZEBOX,0); //calculate window rect | |
7624
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
590 |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
591 //printf("Window:x:%i,y:%i,w:%i,h:%i\n",rd_window.left,rd_window.top,rd_window.right - rd_window.left,rd_window.bottom - rd_window.top); |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
592 //printf("Overlay:x1:%i,y1:%i,x2:%i,y2:%i,w:%i,h:%i\n",rd.left,rd.top,rd.right,rd.bottom,rd.right - rd.left,rd.bottom - rd.top); |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
593 //printf("Source:x1:%i,x2:%i,y1:%i,y2:%i\n",rs.left,rs.right,rs.top,rs.bottom); |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
594 //printf("Image:x:%i->%i,y:%i->%i\n",image_width,d_image_width,image_height,d_image_height); |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
595 |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
596 // create an overlay FX structure so we can specify a destination color key |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
597 ZeroMemory(&ovfx, sizeof(ovfx)); |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
598 ovfx.dwSize = sizeof(ovfx); |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
599 ovfx.dckDestColorkey.dwColorSpaceLowValue = destcolorkey; |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
600 ovfx.dckDestColorkey.dwColorSpaceHighValue = destcolorkey; |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
601 // set the flags we'll send to UpdateOverlay //DDOVER_AUTOFLIP|DDOVERFX_MIRRORLEFTRIGHT|DDOVERFX_MIRRORUPDOWN could be usefull?; |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
602 dwUpdateFlags = DDOVER_SHOW | DDOVER_DDFX; |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
603 if (capsDrv.dwCKeyCaps & DDCKEYCAPS_DESTOVERLAY) dwUpdateFlags |= DDOVER_KEYDESTOVERRIDE; |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
604 else ontop = 1; //if hardware can't do colorkeying set the window on top |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
605 //now we have enough information to display the window |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
606 if((fs) || (!fs && ontop))hWndafter=HWND_TOPMOST; |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
607 else hWndafter=HWND_NOTOPMOST; |
7537 | 608 SetWindowPos(hWnd, |
609 hWndafter, | |
610 rd_window.left, | |
611 rd_window.top, | |
612 rd_window.right - rd_window.left, | |
613 rd_window.bottom - rd_window.top, | |
614 SWP_SHOWWINDOW|SWP_NOOWNERZORDER/*|SWP_NOREDRAW*/); | |
615 | |
7624
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
616 ddrval = g_lpddsOverlay->lpVtbl->UpdateOverlay(g_lpddsOverlay,&rs, g_lpddsPrimary, &rd, dwUpdateFlags, &ovfx); |
7537 | 617 if(FAILED(ddrval)) |
618 { | |
619 // on cause might be the driver lied about minimum stretch | |
620 // we should try upping the destination size a bit, or | |
621 // perhaps shrinking the source size | |
622 mp_msg(MSGT_VO, MSGL_ERR ,"<vo_directx><ERROR>UpdateOverlay failed\n" ); | |
623 mp_msg(MSGT_VO, MSGL_ERR ,"<vo_directx><ERROR>Overlay:x1:%i,y1:%i,x2:%i,y2:%i,w:%i,h:%i\n",rd.left,rd.top,rd.right,rd.bottom,rd.right - rd.left,rd.bottom - rd.top ); | |
624 mp_msg(MSGT_VO, MSGL_ERR ,"<vo_directx><ERROR>"); | |
625 switch (ddrval) | |
626 { | |
627 case DDERR_NOSTRETCHHW: | |
628 {mp_msg(MSGT_VO, MSGL_ERR ,"hardware can't stretch: try to size the window back\n");break;} | |
629 case DDERR_INVALIDRECT: | |
630 {mp_msg(MSGT_VO, MSGL_ERR ,"invalid rectangle\n");break;} | |
631 case DDERR_INVALIDPARAMS: | |
632 {mp_msg(MSGT_VO, MSGL_ERR ,"invalid parameters\n");break;} | |
633 case DDERR_HEIGHTALIGN: | |
634 {mp_msg(MSGT_VO, MSGL_ERR ,"height align\n");break;} | |
635 case DDERR_XALIGN: | |
636 {mp_msg(MSGT_VO, MSGL_ERR ,"x align\n");break;} | |
637 case DDERR_UNSUPPORTED: | |
638 {mp_msg(MSGT_VO, MSGL_ERR ,"unsupported\n");break;} | |
639 case DDERR_INVALIDSURFACETYPE: | |
640 {mp_msg(MSGT_VO, MSGL_ERR ,"invalid surfacetype\n");break;} | |
641 case DDERR_INVALIDOBJECT: | |
642 {mp_msg(MSGT_VO, MSGL_ERR ,"invalid object\n");break;} | |
643 case DDERR_SURFACELOST: | |
644 { | |
645 mp_msg(MSGT_VO, MSGL_ERR ,"surfaces lost\n"); | |
646 g_lpddsOverlay->lpVtbl->Restore( g_lpddsOverlay ); //restore and try again | |
647 g_lpddsPrimary->lpVtbl->Restore( g_lpddsPrimary ); | |
648 ddrval = g_lpddsOverlay->lpVtbl->UpdateOverlay(g_lpddsOverlay,&rs, g_lpddsPrimary, &rd, dwUpdateFlags, &ovfx); | |
649 if(ddrval !=DD_OK)mp_msg(MSGT_VO, MSGL_FATAL ,"<vo_directx><FATAL ERROR>UpdateOverlay failed again\n" ); | |
650 break; | |
651 } | |
652 } | |
653 //hide overlay | |
654 if(ddrval != DD_OK) | |
655 { | |
656 ddrval = g_lpddsOverlay->lpVtbl->UpdateOverlay(g_lpddsOverlay,NULL, g_lpddsPrimary, NULL, DDOVER_HIDE, NULL); | |
657 return 1; | |
658 } | |
659 } | |
660 return 0; | |
661 } | |
662 | |
663 static uint32_t Directx_DisplayNonOverlay() | |
664 { | |
665 WINDOWPLACEMENT window_placement; | |
666 RECT rd_window; //rect of the window | |
667 HWND hWndafter; | |
668 POINT point_window; | |
669 window_placement.length = sizeof(WINDOWPLACEMENT); | |
670 GetWindowPlacement(hWnd, &window_placement ); | |
671 | |
672 if(!fs) //windowed | |
673 { | |
674 if (window_placement.showCmd == SW_SHOWMAXIMIZED) //is our window maximized? | |
675 { | |
676 CloseWindow(hWnd); //we do this to prevent the screen from being filled with garbage | |
677 window_placement.showCmd = SW_SHOWNORMAL; //restore | |
678 SetWindowLong(hWnd,GWL_STYLE , WS_OVERLAPPEDWINDOW| WS_SIZEBOX ); //change style | |
679 SetWindowPlacement( hWnd, &window_placement ); | |
680 } | |
681 } | |
682 else //fullscreen | |
683 { | |
684 if (window_placement.showCmd == SW_SHOWNORMAL) //is our window normal? | |
685 { | |
686 window_placement.showCmd = SW_SHOWMAXIMIZED; //maximize | |
687 SetWindowLong( hWnd, GWL_STYLE, 0 ); //change Style | |
688 SetWindowPlacement( hWnd, &window_placement ); | |
689 } | |
690 } | |
691 | |
692 if(!fs) //windowed | |
693 { | |
694 GetClientRect (hWnd, &rd_window); | |
695 if(rd_window.top == rd_window.bottom)return 0; //window is minimized | |
696 if (GetWindowTextLength(hWnd)==0) | |
697 { | |
698 SetWindowText(hWnd,"MPlayer - DirectX NoN-Overlay"); //for the first call: change only title, not d_image stuff | |
699 } | |
700 else | |
701 { | |
702 d_image_width = rd_window.right - rd_window.left; //Calculate new Imagedimensions | |
703 d_image_height = rd_window.bottom - rd_window.top; | |
704 } | |
705 point_window.x = 0; //imageposition relative to the window | |
706 point_window.y = 0; | |
707 ClientToScreen(hWnd,&point_window); | |
708 rd.left = point_window.x; //fill the wanted x1&y1 of the image | |
709 rd.top = point_window.y; | |
710 rd.right = d_image_width+rd.left; | |
711 rd.bottom =d_image_height+rd.top; | |
712 rd_window = rd; | |
713 AdjustWindowRect(&rd_window,WS_OVERLAPPEDWINDOW|WS_SIZEBOX,0); | |
714 } | |
715 else //fullscreen | |
716 { | |
717 rd_window=Directx_Fullscreencalc(); | |
718 } | |
719 if((fs) || (!fs && ontop))hWndafter=HWND_TOPMOST; | |
720 else hWndafter=HWND_NOTOPMOST; | |
721 SetWindowPos(hWnd, | |
722 hWndafter, | |
723 rd_window.left, | |
724 rd_window.top, | |
725 rd_window.right - rd_window.left, | |
726 rd_window.bottom - rd_window.top, | |
727 SWP_SHOWWINDOW|SWP_NOOWNERZORDER); | |
728 return 0; | |
729 } | |
730 | |
731 //find out supported overlay pixelformats | |
732 static uint32_t Directx_CheckOverlayPixelformats() | |
733 { | |
734 DDCAPS capsDrv; | |
735 HRESULT ddrval; | |
736 DDSURFACEDESC ddsdOverlay; | |
737 uint32_t i; | |
738 uint32_t formatcount = 0; | |
739 //get driver caps to determine overlay support | |
740 ZeroMemory(&capsDrv, sizeof(capsDrv)); | |
741 capsDrv.dwSize = sizeof(capsDrv); | |
742 ddrval = g_lpdd->lpVtbl->GetCaps(g_lpdd,&capsDrv, NULL); | |
743 if (FAILED(ddrval)) | |
744 { | |
745 mp_msg(MSGT_VO, MSGL_ERR ,"<vo_directx><ERROR>failed getting ddrawcaps\n"); | |
746 return 1; | |
747 } | |
748 if (!(capsDrv.dwCaps & DDCAPS_OVERLAY)) | |
749 { | |
750 mp_msg(MSGT_VO, MSGL_ERR ,"<vo_directx><ERROR>Your card doesn't support overlay\n"); | |
751 return 1; | |
752 } | |
753 mp_msg(MSGT_VO, MSGL_V ,"<vo_directx><INFO>testing supported overlay pixelformats\n"); | |
754 //it is not possible to query for pixel formats supported by the | |
755 //overlay hardware: try out various formats till one works | |
756 ZeroMemory(&ddsdOverlay, sizeof(ddsdOverlay)); | |
757 ddsdOverlay.dwSize = sizeof(ddsdOverlay); | |
758 ddsdOverlay.ddsCaps.dwCaps=DDSCAPS_OVERLAY | DDSCAPS_VIDEOMEMORY; | |
759 ddsdOverlay.dwFlags= DDSD_CAPS|DDSD_HEIGHT|DDSD_WIDTH| DDSD_PIXELFORMAT; | |
760 ddsdOverlay.dwWidth=300; | |
761 ddsdOverlay.dwHeight=280; | |
762 ddsdOverlay.dwBackBufferCount=0; | |
763 //try to create an overlay surface using one of the pixel formats in our global list | |
764 i=0; | |
765 do | |
766 { | |
767 ddsdOverlay.ddpfPixelFormat=g_ddpf[i].g_ddpfOverlay; | |
768 ddrval = g_lpdd->lpVtbl->CreateSurface(g_lpdd,&ddsdOverlay, &g_lpddsOverlay, NULL); | |
769 if (ddrval == DD_OK) | |
770 { | |
771 mp_msg(MSGT_VO, MSGL_V ,"<vo_directx><FORMAT OVERLAY>%i %s supported\n",i,g_ddpf[i].img_format_name); | |
772 g_ddpf[i].drv_caps = VFCAP_CSP_SUPPORTED |VFCAP_OSD |VFCAP_CSP_SUPPORTED_BY_HW | VFCAP_HWSCALE_UP; | |
773 formatcount++;} | |
774 else mp_msg(MSGT_VO, MSGL_V ,"<vo_directx><FORMAT OVERLAY>%i %s not supported\n",i,g_ddpf[i].img_format_name); | |
775 if (g_lpddsOverlay != NULL) {g_lpddsOverlay->lpVtbl->Release(g_lpddsOverlay);g_lpddsOverlay = NULL;} | |
776 } while( ++i < NUM_FORMATS ); | |
777 mp_msg(MSGT_VO, MSGL_V ,"<vo_directx><INFO>Your card supports %i of %i overlayformats\n",formatcount, NUM_FORMATS); | |
778 if (formatcount == 0) | |
779 { | |
780 mp_msg(MSGT_VO, MSGL_V ,"<vo_directx><WARN>Your card supports overlay, but we couldn't create one\n"); | |
781 mp_msg(MSGT_VO, MSGL_V ,"<vo_directx><INFO>This can have the following reasons:\n"); | |
782 mp_msg(MSGT_VO, MSGL_V ,"<vo_directx><INFO>- you are already using an overlay with another app\n"); | |
783 mp_msg(MSGT_VO, MSGL_V ,"<vo_directx><INFO>- you don't have enough videomemory\n"); | |
784 mp_msg(MSGT_VO, MSGL_V ,"<vo_directx><INFO>- vo_directx doesn't support the cards overlay pixelformat\n"); | |
785 return 1; | |
786 } | |
787 if(capsDrv.dwFXCaps & DDFXCAPS_OVERLAYMIRRORLEFTRIGHT)mp_msg(MSGT_VO, MSGL_V ,"<vo_directx><INFO>can mirror left right\n"); //I don't have hardware which | |
788 if(capsDrv.dwFXCaps & DDFXCAPS_OVERLAYMIRRORUPDOWN )mp_msg(MSGT_VO, MSGL_V ,"<vo_directx><INFO>can mirror up down\n"); //supports those send me one and I'll implement ;) | |
789 return 0; | |
790 } | |
791 | |
792 //find out the Pixelformat of the Primary Surface | |
793 static uint32_t Directx_CheckPrimaryPixelformat() | |
794 { | |
795 uint32_t i=0; | |
796 uint32_t formatcount = 0; | |
797 DDPIXELFORMAT ddpf; | |
7624
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
798 DDSURFACEDESC ddsd; |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
799 HDC hdc; |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
800 HRESULT hres; |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
801 COLORREF rgbT; |
7537 | 802 mp_msg(MSGT_VO, MSGL_V ,"<vo_directx><INFO>checking primary surface\n"); |
803 memset( &ddpf, 0, sizeof( DDPIXELFORMAT )); | |
804 ddpf.dwSize = sizeof( DDPIXELFORMAT ); | |
805 //we have to create a primary surface first | |
806 if(Directx_CreatePrimarySurface()!=0)return 1; | |
807 if(g_lpddsPrimary->lpVtbl->GetPixelFormat( g_lpddsPrimary, &ddpf ) != DD_OK ) | |
808 { | |
809 mp_msg(MSGT_VO, MSGL_FATAL ,"<vo_directx><FATAL ERROR>can't get pixelformat\n"); | |
810 return 1; | |
811 } | |
812 while ( i < NUM_FORMATS ) | |
813 { | |
814 if (g_ddpf[i].g_ddpfOverlay.dwRGBBitCount == ddpf.dwRGBBitCount) | |
815 { | |
816 if (g_ddpf[i].g_ddpfOverlay.dwRBitMask == ddpf.dwRBitMask) | |
817 { | |
818 mp_msg(MSGT_VO, MSGL_V ,"<vo_directx><FORMAT PRIMARY>%i %s supported\n",i,g_ddpf[i].img_format_name); | |
7713 | 819 g_ddpf[i].drv_caps = VFCAP_CSP_SUPPORTED |VFCAP_OSD; |
7537 | 820 formatcount++; |
821 } | |
822 } | |
823 i++; | |
824 } | |
7624
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
825 //get the colorkey for overlay mode |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
826 destcolorkey = CLR_INVALID; |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
827 if (windowcolor != CLR_INVALID && g_lpddsPrimary->lpVtbl->GetDC(g_lpddsPrimary,&hdc) == DD_OK) |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
828 { |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
829 rgbT = GetPixel(hdc, 0, 0); |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
830 SetPixel(hdc, 0, 0, windowcolor); |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
831 g_lpddsPrimary->lpVtbl->ReleaseDC(g_lpddsPrimary,hdc); |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
832 } |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
833 // read back the converted color |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
834 ddsd.dwSize = sizeof(ddsd); |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
835 while ((hres = g_lpddsPrimary->lpVtbl->Lock(g_lpddsPrimary,NULL, &ddsd, 0, NULL)) == DDERR_WASSTILLDRAWING) |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
836 ; |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
837 if (hres == DD_OK) |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
838 { |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
839 destcolorkey = *(DWORD *) ddsd.lpSurface; |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
840 if (ddsd.ddpfPixelFormat.dwRGBBitCount < 32) |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
841 destcolorkey &= (1 << ddsd.ddpfPixelFormat.dwRGBBitCount) - 1; |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
842 g_lpddsPrimary->lpVtbl->Unlock(g_lpddsPrimary,NULL); |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
843 } |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
844 if (windowcolor != CLR_INVALID && g_lpddsPrimary->lpVtbl->GetDC(g_lpddsPrimary,&hdc) == DD_OK) |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
845 { |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
846 SetPixel(hdc, 0, 0, rgbT); |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
847 g_lpddsPrimary->lpVtbl->ReleaseDC(g_lpddsPrimary,hdc); |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
848 } |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
849 //release primary |
7537 | 850 g_lpddsPrimary->lpVtbl->Release(g_lpddsPrimary); |
851 g_lpddsPrimary = NULL; | |
852 if(formatcount==0) | |
853 { | |
854 mp_msg(MSGT_VO, MSGL_FATAL ,"<vo_directx><FATAL ERROR>Unknown Pixelformat\n"); | |
855 return 1; | |
856 } | |
857 return 0; | |
858 } | |
859 | |
860 //function handles input | |
861 static LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) | |
862 { | |
863 switch (message) | |
864 { | |
865 case WM_DESTROY: | |
866 { | |
7624
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
867 PostQuitMessage(0); |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
868 return 0; |
7537 | 869 } |
870 case WM_CLOSE: | |
871 { | |
872 mplayer_put_key('q'); | |
873 return 0; | |
874 } | |
875 case WM_WINDOWPOSCHANGED: | |
876 { | |
877 //printf("Windowposchange\n"); | |
7624
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
878 if(g_lpddsBack != NULL) //or it will crash with -vm |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
879 { |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
880 if(nooverlay)Directx_DisplayNonOverlay(); |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
881 else Directx_DisplayOverlay(); |
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
882 } |
7537 | 883 break; |
884 } | |
885 case WM_SYSCOMMAND: | |
886 { | |
887 switch (wParam) | |
888 { //kill screensaver etc. | |
889 //note: works only when the window is active | |
890 //you can workaround this by disabling the allow screensaver option in | |
891 //the link to the app | |
892 case SC_SCREENSAVE: | |
893 case SC_MONITORPOWER: | |
894 mp_msg(MSGT_VO, MSGL_V ,"<vo_directx><INFO>killing screensaver\n" ); | |
895 return 0; | |
896 } | |
897 } | |
898 case WM_KEYDOWN: | |
899 { | |
900 switch (wParam) | |
901 { | |
902 case VK_LEFT: | |
903 {mplayer_put_key(KEY_LEFT);break;} | |
904 case VK_UP: | |
905 {mplayer_put_key(KEY_UP);break;} | |
906 case VK_RIGHT: | |
907 {mplayer_put_key(KEY_RIGHT);break;} | |
908 case VK_DOWN: | |
909 {mplayer_put_key(KEY_DOWN);break;} | |
910 case VK_TAB: | |
911 {mplayer_put_key(KEY_TAB);break;} | |
912 case VK_CONTROL: | |
913 {mplayer_put_key(KEY_CTRL);break;} | |
914 case VK_DELETE: | |
915 {mplayer_put_key(KEY_DELETE);break;} | |
916 case VK_INSERT: | |
917 {mplayer_put_key(KEY_INSERT);break;} | |
918 case VK_HOME: | |
919 {mplayer_put_key(KEY_HOME);break;} | |
920 case VK_END: | |
921 {mplayer_put_key(VK_END);break;} | |
922 case VK_PRIOR: | |
923 {mplayer_put_key(KEY_PAGE_UP);break;} | |
924 case VK_NEXT: | |
925 {mplayer_put_key(KEY_PAGE_DOWN);break;} | |
926 case VK_ESCAPE: | |
927 {mplayer_put_key(KEY_ESC);break;} | |
928 } | |
929 break; | |
930 } | |
931 case WM_CHAR: | |
932 { | |
933 mplayer_put_key(wParam); | |
934 break; | |
935 } | |
936 | |
937 } | |
938 return DefWindowProc(hWnd, message, wParam, lParam); | |
939 } | |
940 | |
941 static uint32_t Directx_CreateWindow() | |
942 { | |
943 HINSTANCE hInstance = GetModuleHandle(NULL); | |
944 WNDCLASS wc; | |
945 wc.style = CS_HREDRAW | CS_VREDRAW; | |
946 wc.lpfnWndProc = WndProc; | |
947 wc.cbClsExtra = 0; | |
948 wc.cbWndExtra = 0; | |
949 wc.hInstance = hInstance; | |
950 wc.hCursor = LoadCursor(NULL,IDC_ARROW); | |
951 wc.hIcon = LoadIcon(NULL,IDI_APPLICATION); | |
7624
b1a3b979c630
This patch hopefully fixes colorkeying and a segfault in exclusive mode
arpi
parents:
7537
diff
changeset
|
952 wc.hbrBackground = CreateSolidBrush(windowcolor); |
7537 | 953 wc.lpszClassName = "Mplayer - Movieplayer for Linux"; |
954 wc.lpszMenuName = NULL; | |
955 RegisterClass(&wc); | |
956 hWnd = CreateWindow("MPlayer - Movieplayer for Linux", | |
957 "", | |
958 WS_OVERLAPPEDWINDOW| WS_SIZEBOX, | |
959 CW_USEDEFAULT, //position x | |
960 CW_USEDEFAULT, //position y | |
961 100, //width | |
962 100, //height | |
963 NULL, | |
964 NULL, | |
965 hInstance, | |
966 NULL); | |
967 mp_msg(MSGT_VO, MSGL_DBG3 ,"<vo_directx><INFO>initial mplayer window created\n"); | |
968 return 0; | |
969 } | |
970 | |
971 static uint32_t preinit(const char *arg) | |
972 { | |
7682 | 973 if(arg) |
974 { | |
975 if(!strcmp(arg,"noaccel")) | |
976 { | |
977 mp_msg(MSGT_VO,MSGL_V,"<vo_directx><INFO>disabled overlay\n"); | |
978 nooverlay = 1; | |
979 } | |
980 else | |
981 { | |
982 mp_msg(MSGT_VO,MSGL_ERR,"<vo_directx><ERROR>unknown subdevice: %s\n",arg); | |
983 return ENOSYS; | |
984 } | |
985 } | |
7537 | 986 if (Directx_InitDirectDraw()!= 0)return 1; //init DirectDraw |
987 if (Directx_CheckPrimaryPixelformat()!=0)return 1; | |
7682 | 988 if (!nooverlay && Directx_CheckOverlayPixelformats() == 0) //check for supported hardware |
7537 | 989 { |
990 mp_msg(MSGT_VO, MSGL_V ,"<vo_directx><INFO>hardware supports overlay\n"); | |
991 nooverlay = 0; | |
992 } | |
993 else //if we can't have overlay we create a backpuffer with the same imageformat as the primary surface | |
994 { | |
995 mp_msg(MSGT_VO, MSGL_V ,"<vo_directx><INFO>using backpuffer\n"); | |
996 nooverlay = 1; | |
997 } | |
998 Directx_CreateWindow(); //create initial window | |
999 mp_msg(MSGT_VO, MSGL_DBG3 ,"<vo_directx><INFO>preinit succesfully finished\n"); | |
1000 return 0; | |
1001 } | |
1002 | |
1003 static uint32_t draw_slice(uint8_t *src[], int stride[], int w,int h,int x,int y ) | |
1004 { | |
1005 uint8_t *s; | |
1006 uint8_t *d; | |
1007 uint32_t i=0; | |
1008 | |
1009 // copy Y | |
1010 d=image+dstride*y+x; | |
1011 s=src[0]; | |
1012 for(i=0;i<h;i++){ | |
1013 memcpy(d,s,w); | |
1014 s+=stride[0]; | |
1015 d+=stride[0]; | |
1016 } | |
1017 | |
1018 w/=2;h/=2;x/=2;y/=2; | |
1019 | |
1020 // copy U | |
1021 d=image+image_width*image_height + dstride*y/2+x; | |
1022 if(swap)s=src[2]; | |
1023 else s=src[1]; | |
1024 for(i=0;i<h;i++){ | |
1025 memcpy(d,s,w); | |
1026 s+=stride[1]; | |
1027 d+=stride[1]; | |
1028 } | |
1029 | |
1030 // copy V | |
1031 d=image+image_width*image_height +image_width*image_height/4 + dstride*y/2+x; | |
1032 if(swap)s=src[1]; | |
1033 else s=src[2]; | |
1034 for(i=0;i<h;i++){ | |
1035 memcpy(d,s,w); | |
1036 s+=stride[2]; | |
1037 d+=stride[2]; | |
1038 } | |
1039 return 0; | |
1040 } | |
1041 | |
1042 static void flip_page(void) | |
1043 { | |
1044 HRESULT dxresult; | |
1045 //bufferflipping is slow on my system? | |
1046 if (vo_doublebuffering) | |
1047 { | |
1048 // flip to the next image in the sequence | |
1049 dxresult = g_lpddsOverlay->lpVtbl->Flip( g_lpddsOverlay,NULL, DDFLIP_WAIT); | |
1050 if(dxresult == DDERR_SURFACELOST) | |
1051 { | |
1052 mp_msg(MSGT_VO, MSGL_ERR,"<vo_directx><ERROR><vo_directx><INFO>Restoring Surface\n"); | |
1053 g_lpddsBack->lpVtbl->Restore( g_lpddsBack ); | |
1054 dxresult = g_lpddsOverlay->lpVtbl->Flip( g_lpddsOverlay,NULL, DDFLIP_WAIT); | |
1055 } | |
1056 if(dxresult != DD_OK)mp_msg(MSGT_VO, MSGL_ERR,"<vo_directx><ERROR>can't flip page\n"); | |
1057 } | |
1058 g_lpddsBack->lpVtbl->Lock(g_lpddsBack,NULL,&ddsdsf, DDLOCK_NOSYSLOCK | DDLOCK_WAIT , NULL); | |
1059 g_lpddsBack->lpVtbl->Unlock (g_lpddsBack,NULL); | |
1060 dstride = ddsdsf.lPitch; | |
1061 image = ddsdsf.lpSurface; | |
1062 if(nooverlay == 1) | |
1063 { | |
1064 DDBLTFX ddbltfx; | |
1065 // ask for the "NOTEARING" option | |
1066 memset( &ddbltfx, 0, sizeof(DDBLTFX) ); | |
1067 ddbltfx.dwSize = sizeof(DDBLTFX); | |
1068 ddbltfx.dwDDFX = DDBLTFX_NOTEARING; | |
1069 g_lpddsPrimary->lpVtbl->Blt(g_lpddsPrimary, &rd, g_lpddsBack, NULL, DDBLT_WAIT, &ddbltfx); | |
1070 } | |
1071 } | |
1072 | |
1073 static uint32_t draw_frame(uint8_t *src[]) | |
1074 { | |
1075 memcpy( image, *src, dstride * image_height ); | |
1076 return 0; | |
1077 } | |
1078 | |
1079 static uint32_t get_image(mp_image_t *mpi) | |
1080 { | |
1081 //dr is untested for planar formats | |
1082 //we should make a surface in mem and use busmastering! | |
1083 if(mpi->flags&MP_IMGFLAG_READABLE) {mp_msg(MSGT_VO, MSGL_V,"<vo_directx><ERROR>slow video ram\n");return VO_FALSE;} | |
1084 if(mpi->type==MP_IMGTYPE_STATIC) {mp_msg(MSGT_VO, MSGL_V,"<vo_directx><ERROR>not static\n");return VO_FALSE;} | |
1085 if((mpi->width==dstride) || (mpi->flags&(MP_IMGFLAG_ACCEPT_STRIDE|MP_IMGFLAG_ACCEPT_WIDTH))) | |
1086 { | |
1087 if(mpi->flags&MP_IMGFLAG_PLANAR && image_format==IMGFMT_YV12) | |
1088 { | |
1089 mpi->planes[0]=image; | |
1090 if(swap) | |
1091 { | |
1092 mpi->planes[2]= image + dstride*image_height; | |
1093 mpi->planes[1]= image + dstride*image_height+ dstride*image_height/4; | |
1094 } | |
1095 else | |
1096 { | |
1097 mpi->planes[1]= image + dstride*image_height; | |
1098 mpi->planes[2]= image + dstride*image_height+ dstride*image_height/4; | |
1099 } | |
1100 mpi->width=mpi->stride[0]=dstride; | |
1101 mpi->stride[1]=mpi->stride[2]=dstride/2; | |
1102 } | |
1103 else //packed | |
1104 { | |
1105 mpi->planes[0]=image; | |
1106 mpi->width=image_width; | |
1107 mpi->stride[0]=dstride; | |
1108 } | |
1109 mpi->flags|=MP_IMGFLAG_DIRECT; | |
1110 mp_msg(MSGT_VO, MSGL_DBG3, "<vo_directx><INFO>Direct Rendering ENABLED\n"); | |
1111 return VO_TRUE; | |
1112 } | |
1113 return VO_FALSE; | |
1114 } | |
1115 | |
1116 static uint32_t put_image(mp_image_t *mpi){ | |
1117 | |
1118 uint32_t i = 0; | |
1119 uint8_t *d; | |
1120 uint8_t *s; | |
1121 uint32_t x = mpi->x; | |
1122 uint32_t y = mpi->y; | |
1123 uint32_t w = mpi->w; | |
1124 uint32_t h = mpi->h; | |
1125 | |
1126 if((mpi->flags&(MP_IMGFLAG_DIRECT|MP_IMGFLAG_DRAW_CALLBACK))) | |
1127 { | |
1128 mp_msg(MSGT_VO, MSGL_DBG3 ,"<vo_directx><INFO>put_image: nothing to do: drawslices\n"); | |
1129 return VO_TRUE; | |
1130 } | |
1131 | |
1132 if (mpi->flags&MP_IMGFLAG_PLANAR) | |
1133 { | |
1134 if (image_format == IMGFMT_YV12|| image_format == IMGFMT_I420 || image_format == IMGFMT_IYUV) | |
1135 { | |
1136 draw_slice(mpi->planes, mpi->stride, mpi->w,mpi->h,mpi->x,mpi->y ); | |
1137 } | |
1138 else if(image_format==IMGFMT_YVU9) | |
1139 { | |
1140 // copy Y | |
1141 d=image+dstride*y+x; | |
1142 s=mpi->planes[0]; | |
1143 for(i=0;i<h;i++){ | |
1144 memcpy(d,s,w); | |
1145 s+=mpi->stride[0]; | |
1146 d+=dstride; | |
1147 } | |
1148 w/=4;h/=4;x/=4;y/=4; dstride/=4; | |
1149 // copy V | |
1150 d=image+image_width*image_height + dstride*y+x; | |
1151 if(swap)s=mpi->planes[2]; | |
1152 else s=mpi->planes[1]; | |
1153 for(i=0;i<h;i++){ | |
1154 memcpy(d,s,w); | |
1155 s+=mpi->stride[1]; | |
1156 d+=dstride; | |
1157 } | |
1158 // copy U | |
1159 d=image+image_width*image_height +image_width*image_height/16 + dstride*y+x; | |
1160 if(swap)s=mpi->planes[1]; | |
1161 else s=mpi->planes[2]; | |
1162 for(i=0;i<h;i++){ | |
1163 memcpy(d,s,w); | |
1164 s+=mpi->stride[2]; | |
1165 d+=dstride; | |
1166 } | |
1167 } | |
1168 } | |
1169 else //packed | |
1170 { | |
1171 memcpy( image, mpi->planes[0], image_height * dstride); | |
1172 } | |
1173 return VO_TRUE; | |
1174 } | |
1175 | |
1176 static uint32_t | |
1177 config(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint32_t options, char *title, uint32_t format) | |
1178 { | |
1179 //int zoom = options & 0x04; | |
1180 //int flip = options & 0x08; | |
1181 fs = options & 0x01; | |
1182 vm = options & 0x02; | |
1183 if(vm)fs=1; | |
1184 image_format = format; | |
1185 d_image_width = d_width; | |
1186 d_image_height = d_height; | |
1187 image_width = width; | |
1188 image_height = height; | |
1189 //printf("<vo_directx><INFO>config entered\n"); | |
1190 //printf("width:%i\nheight:%i\nd_width:%i\nd_height%i\n",width,height,d_width,d_height); | |
7682 | 1191 SetWindowText(hWnd,""); |
1192 if (g_lpddsBack != NULL) g_lpddsBack->lpVtbl->Release(g_lpddsBack); | |
1193 g_lpddsBack = NULL; | |
1194 if(vo_doublebuffering) | |
1195 { | |
1196 if (g_lpddsOverlay != NULL)g_lpddsOverlay->lpVtbl->Release(g_lpddsOverlay); | |
1197 } | |
1198 g_lpddsOverlay = NULL; | |
1199 if (g_lpddsPrimary != NULL) g_lpddsPrimary->lpVtbl->Release(g_lpddsPrimary); | |
1200 g_lpddsPrimary = NULL; | |
1201 mp_msg(MSGT_VO, MSGL_DBG3,"<vo_directx><INFO>overlay surfaces released\n"); | |
1202 if(vm) | |
7537 | 1203 { //exclusive mode |
1204 if (g_lpdd->lpVtbl->SetCooperativeLevel(g_lpdd, hWnd, DDSCL_EXCLUSIVE|DDSCL_FULLSCREEN) != DD_OK) | |
1205 { | |
1206 mp_msg(MSGT_VO, MSGL_FATAL,"<vo_directx><FATAL ERROR>can't set cooperativelevel for exclusive mode"); | |
1207 return 1; | |
1208 } //ddobject,width,height,bpp,refreshrate,aditionalflags | |
1209 SetWindowLong( hWnd, GWL_STYLE, 0 ); //changeWindowStyle | |
1210 if(g_lpdd->lpVtbl->SetDisplayMode(g_lpdd,640, 480, 16,0,0) != DD_OK) | |
1211 { | |
1212 mp_msg(MSGT_VO, MSGL_FATAL,"<vo_directx><FATAL ERROR>can't set displaymode\n"); | |
1213 return 1; | |
1214 } | |
1215 mp_msg(MSGT_VO, MSGL_V,"<vo_directx><INFO>cooperativelevel for exclusive mode set\n"); | |
1216 } | |
1217 else | |
1218 { | |
1219 if (g_lpdd->lpVtbl->SetCooperativeLevel(g_lpdd, hWnd, DDSCL_NORMAL) != DD_OK) | |
1220 { | |
1221 mp_msg(MSGT_VO, MSGL_FATAL,"<vo_directx><FATAL ERROR>can't set cooperativelevel for windowed mode"); | |
1222 return 1; | |
1223 } | |
1224 SetWindowLong( hWnd,WS_OVERLAPPEDWINDOW| WS_SIZEBOX , 0 ); | |
1225 mp_msg(MSGT_VO, MSGL_V,"<vo_directx><INFO>cooperativelevel for windowed mode set\n"); | |
1226 } | |
1227 if(Directx_CreatePrimarySurface()!=0)return 1; | |
1228 if (nooverlay==0) | |
1229 { | |
1230 if(Directx_CreateOverlay(image_format)==0) | |
1231 { | |
1232 Directx_DisplayOverlay(); | |
1233 if(!vo_doublebuffering) g_lpddsBack = g_lpddsOverlay; | |
1234 } | |
1235 else | |
1236 { | |
1237 nooverlay=1; //if failed try with nooverlay | |
1238 mp_msg(MSGT_VO, MSGL_ERR,"<vo_directx><ERROR>can't use overlay mode\n"); | |
1239 | |
1240 } | |
1241 } | |
1242 if (nooverlay==1) | |
1243 { | |
1244 if(Directx_CreateBackpuffer()!=0)return 1; | |
1245 Directx_DisplayNonOverlay(); | |
1246 } | |
1247 | |
1248 if(Directx_CreateClipper() != 0)return 1; | |
1249 memset(&ddsdsf, 0,sizeof(DDSURFACEDESC)); | |
1250 ddsdsf.dwSize = sizeof (DDSURFACEDESC); | |
1251 g_lpddsBack->lpVtbl->Lock(g_lpddsBack,NULL,&ddsdsf, DDLOCK_NOSYSLOCK | DDLOCK_WAIT, NULL); | |
1252 g_lpddsBack->lpVtbl->Unlock (g_lpddsBack,NULL); | |
1253 dstride = ddsdsf.lPitch; | |
1254 image = ddsdsf.lpSurface; | |
1255 if(image_format==IMGFMT_I420||image_format==IMGFMT_IYUV) | |
1256 { | |
1257 if(swap)swap=0; //swap uv | |
1258 else swap=1; | |
1259 } | |
1260 return 0; | |
1261 } | |
1262 | |
1263 static uint32_t control(uint32_t request, void *data, ...) | |
1264 { | |
1265 switch (request) { | |
1266 | |
1267 case VOCTRL_GET_IMAGE: | |
1268 return get_image(data); | |
1269 case VOCTRL_QUERY_FORMAT: | |
1270 return query_format(*((uint32_t*)data)); | |
1271 case VOCTRL_DRAW_IMAGE: | |
1272 return put_image(data); | |
1273 case VOCTRL_FULLSCREEN: | |
1274 { | |
1275 //printf("Display mode switch\n"); | |
1276 if(vm) | |
1277 { | |
1278 mp_msg(MSGT_VO, MSGL_ERR,"<vo_directx><ERROR>currently we do not allow to switch from exclusive to windowed mode\n"); | |
1279 } | |
1280 else | |
1281 { | |
1282 if(fs)fs=0; //set to fullscreen or windowed | |
1283 else fs = 1; | |
1284 if(nooverlay == 0)Directx_DisplayOverlay(); //update window | |
1285 else Directx_DisplayNonOverlay(); | |
1286 } | |
1287 return VO_TRUE; | |
1288 } | |
1289 }; | |
1290 return VO_NOTIMPL; | |
1291 } |