]> git.sesse.net Git - vlc/blob - modules/access/screen/win32.c
e0cfd7abfb53add3df95916eb02c6d91a0e9aacb
[vlc] / modules / access / screen / win32.c
1 /*****************************************************************************
2  * win32.c: Screen capture module.
3  *****************************************************************************
4  * Copyright (C) 2004-2008 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Gildas Bazin <gbazin@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <vlc_common.h>
33
34 #include "screen.h"
35
36 #ifndef CAPTUREBLT
37 #   define CAPTUREBLT (DWORD)0x40000000 /* Include layered windows */
38 #endif
39
40 struct screen_data_t
41 {
42     HDC hdc_src;
43     HDC hdc_dst;
44     BITMAPINFO bmi;
45     HGDIOBJ hgdi_backup;
46
47     int i_fragment_size;
48     int i_fragment;
49     block_t *p_block;
50 };
51
52 int screen_InitCapture( demux_t *p_demux )
53 {
54     demux_sys_t *p_sys = p_demux->p_sys;
55     screen_data_t *p_data;
56     int i_chroma, i_bits_per_pixel;
57
58     p_sys->p_data = p_data = calloc( 1, sizeof( screen_data_t ) );
59     if( !p_data )
60         return VLC_ENOMEM;
61
62     /* Get the device context for the whole screen */
63     p_data->hdc_src = CreateDC( "DISPLAY", NULL, NULL, NULL );
64     if( !p_data->hdc_src )
65     {
66         msg_Err( p_demux, "cannot get device context" );
67         free( p_data );
68         return VLC_EGENERIC;
69     }
70
71     p_data->hdc_dst = CreateCompatibleDC( p_data->hdc_src );
72     if( !p_data->hdc_dst )
73     {
74         msg_Err( p_demux, "cannot get compat device context" );
75         free( p_data );
76         ReleaseDC( 0, p_data->hdc_src );
77         return VLC_EGENERIC;
78     }
79
80     i_bits_per_pixel = GetDeviceCaps( p_data->hdc_src, BITSPIXEL );
81     switch( i_bits_per_pixel )
82     {
83     case 8: /* FIXME: set the palette */
84         i_chroma = VLC_FOURCC('R','G','B','2'); break;
85     case 15:
86     case 16:    /* Yes it is really 15 bits (when using BI_RGB) */
87         i_chroma = VLC_FOURCC('R','V','1','5'); break;
88     case 24:
89         i_chroma = VLC_FOURCC('R','V','2','4'); break;
90     case 32:
91         i_chroma = VLC_FOURCC('R','V','3','2'); break;
92     default:
93         msg_Err( p_demux, "unknown screen depth %i",
94                  p_sys->fmt.video.i_bits_per_pixel );
95         DeleteDC( p_data->hdc_dst );
96         ReleaseDC( 0, p_data->hdc_src );
97         free( p_data );
98         return VLC_EGENERIC;
99     }
100
101     es_format_Init( &p_sys->fmt, VIDEO_ES, i_chroma );
102     p_sys->fmt.video.i_visible_width =
103     p_sys->fmt.video.i_width  = GetDeviceCaps( p_data->hdc_src, HORZRES );
104     p_sys->fmt.video.i_visible_height =
105     p_sys->fmt.video.i_height = GetDeviceCaps( p_data->hdc_src, VERTRES );
106     p_sys->fmt.video.i_bits_per_pixel = i_bits_per_pixel;
107     p_sys->fmt.video.i_chroma = i_chroma;
108
109     switch( i_chroma )
110     {
111     case VLC_FOURCC('R','V','1','5'):
112         p_sys->fmt.video.i_rmask = 0x7c00;
113         p_sys->fmt.video.i_gmask = 0x03e0;
114         p_sys->fmt.video.i_bmask = 0x001f;
115         break;
116     case VLC_FOURCC('R','V','2','4'):
117         p_sys->fmt.video.i_rmask = 0x00ff0000;
118         p_sys->fmt.video.i_gmask = 0x0000ff00;
119         p_sys->fmt.video.i_bmask = 0x000000ff;
120         break;
121     case VLC_FOURCC('R','V','3','2'):
122         p_sys->fmt.video.i_rmask = 0x00ff0000;
123         p_sys->fmt.video.i_gmask = 0x0000ff00;
124         p_sys->fmt.video.i_bmask = 0x000000ff;
125         break;
126     default:
127         msg_Warn( p_demux, "Unknown RGB masks" );
128         break;
129     }
130
131
132     return VLC_SUCCESS;
133 }
134
135 int screen_CloseCapture( demux_t *p_demux )
136 {
137     demux_sys_t *p_sys = p_demux->p_sys;
138     screen_data_t *p_data = p_sys->p_data;
139
140     if( p_data->p_block ) block_Release( p_data->p_block );
141
142     if( p_data->hgdi_backup)
143         SelectObject( p_data->hdc_dst, p_data->hgdi_backup );
144
145     DeleteDC( p_data->hdc_dst );
146     ReleaseDC( 0, p_data->hdc_src );
147     free( p_data );
148
149     return VLC_SUCCESS;
150 }
151
152 struct block_sys_t
153 {
154     block_t self;
155     HBITMAP hbmp;
156 };
157
158 static void CaptureBlockRelease( block_t *p_block )
159 {
160     DeleteObject( ((block_sys_t *)p_block)->hbmp );
161     free( p_block );
162 }
163
164 static block_t *CaptureBlockNew( demux_t *p_demux )
165 {
166     demux_sys_t *p_sys = p_demux->p_sys;
167     screen_data_t *p_data = p_sys->p_data;
168     block_sys_t *p_block;
169     void *p_buffer;
170     int i_buffer;
171     HBITMAP hbmp;
172
173     if( p_data->bmi.bmiHeader.biSize == 0 )
174     {
175         int i_val;
176         /* Create the bitmap info header */
177         p_data->bmi.bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
178         p_data->bmi.bmiHeader.biWidth = p_sys->fmt.video.i_width;
179         p_data->bmi.bmiHeader.biHeight = - p_sys->fmt.video.i_height;
180         p_data->bmi.bmiHeader.biPlanes = 1;
181         p_data->bmi.bmiHeader.biBitCount = p_sys->fmt.video.i_bits_per_pixel;
182         p_data->bmi.bmiHeader.biCompression = BI_RGB;
183         p_data->bmi.bmiHeader.biSizeImage = 0;
184         p_data->bmi.bmiHeader.biXPelsPerMeter =
185             p_data->bmi.bmiHeader.biYPelsPerMeter = 0;
186         p_data->bmi.bmiHeader.biClrUsed = 0;
187         p_data->bmi.bmiHeader.biClrImportant = 0;
188
189         i_val = var_CreateGetInteger( p_demux, "screen-fragment-size" );
190         p_data->i_fragment_size = i_val > 0 ? i_val : p_sys->fmt.video.i_height;
191         p_data->i_fragment_size = i_val > p_sys->fmt.video.i_height ?
192                                             p_sys->fmt.video.i_height :
193                                             p_data->i_fragment_size;
194         p_sys->f_fps *= (p_sys->fmt.video.i_height/p_data->i_fragment_size);
195         p_sys->i_incr = 1000000 / p_sys->f_fps;
196         p_data->i_fragment = 0;
197         p_data->p_block = 0;
198     }
199
200
201     /* Create the bitmap storage space */
202     hbmp = CreateDIBSection( p_data->hdc_dst, &p_data->bmi, DIB_RGB_COLORS,
203                              &p_buffer, NULL, 0 );
204     if( !hbmp || !p_buffer )
205     {
206         msg_Err( p_demux, "cannot create bitmap" );
207         if( hbmp ) DeleteObject( hbmp );
208         return NULL;
209     }
210
211     /* Select the bitmap into the compatible DC */
212     if( !p_data->hgdi_backup )
213         p_data->hgdi_backup = SelectObject( p_data->hdc_dst, hbmp );
214     else
215         SelectObject( p_data->hdc_dst, hbmp );
216
217     if( !p_data->hgdi_backup )
218     {
219         msg_Err( p_demux, "cannot select bitmap" );
220         DeleteObject( hbmp );
221         return NULL;
222     }
223
224     /* Build block */
225     if( !(p_block = malloc( sizeof( block_t ) + sizeof( block_sys_t ) )) )
226     {
227         DeleteObject( hbmp );
228         return NULL;
229     }
230     /* Fill all fields */
231     i_buffer = (p_sys->fmt.video.i_bits_per_pixel + 7) / 8 *
232         p_sys->fmt.video.i_width * p_sys->fmt.video.i_height;
233     block_Init( &p_block->self, p_buffer, i_buffer );
234     p_block->self.pf_release = CaptureBlockRelease;
235     p_block->hbmp            = hbmp;
236
237     return &p_block->self;
238 }
239
240 block_t *screen_Capture( demux_t *p_demux )
241 {
242     demux_sys_t *p_sys = p_demux->p_sys;
243     screen_data_t *p_data = p_sys->p_data;
244
245     if( !p_data->i_fragment )
246     {
247         if( !( p_data->p_block = CaptureBlockNew( p_demux ) ) )
248         {
249             msg_Warn( p_demux, "cannot get block" );
250             return NULL;
251         }
252     }
253
254     if( p_sys->b_follow_mouse )
255     {
256         POINT pos;
257         GetCursorPos( &pos );
258         FollowMouse( p_sys, pos.x, pos.y );
259     }
260
261     if( !BitBlt( p_data->hdc_dst, 0,
262                  p_data->i_fragment * p_data->i_fragment_size,
263                  p_sys->fmt.video.i_width, p_data->i_fragment_size,
264                  p_data->hdc_src, p_sys->i_left, p_sys->i_top +
265                  p_data->i_fragment * p_data->i_fragment_size,
266                  SRCCOPY | CAPTUREBLT ) )
267     {
268         msg_Err( p_demux, "error during BitBlt()" );
269         return NULL;
270     }
271
272     p_data->i_fragment++;
273
274     if( !( p_data->i_fragment %
275            (p_sys->fmt.video.i_height/p_data->i_fragment_size) ) )
276     {
277         block_t *p_block = p_data->p_block;
278         p_data->i_fragment = 0;
279         p_data->p_block = 0;
280
281         if( p_sys->p_mouse )
282         {
283             POINT pos;
284             GetCursorPos( &pos );
285             RenderCursor( p_demux, pos.x, pos.y,
286                           p_block->p_buffer );
287         }
288
289         return p_block;
290     }
291
292     return NULL;
293 }