]> git.sesse.net Git - vlc/blob - modules/access/screen/screen.h
macosx: Fix a memleak.
[vlc] / modules / access / screen / screen.h
1 /*****************************************************************************
2  * screen.h: Screen capture module.
3  *****************************************************************************
4  * Copyright (C) 2004 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 #include <vlc_input.h>
25 #include <vlc_access.h>
26 #include <vlc_demux.h>
27
28 #if !defined( HAVE_WIN32 ) && !defined( HAVE_BEOS ) && !defined( HAVE_DARWIN )
29 #   define SCREEN_SUBSCREEN
30 #endif
31
32 typedef struct screen_data_t screen_data_t;
33
34 struct demux_sys_t
35 {
36     es_format_t fmt;
37     es_out_id_t *es;
38
39     float f_fps;
40     mtime_t i_next_date;
41     int i_incr;
42
43 #ifdef SCREEN_SUBSCREEN
44     bool b_follow_mouse;
45     unsigned int i_screen_height;
46     unsigned int i_screen_width;
47
48     unsigned int i_top;
49     unsigned int i_left;
50     unsigned int i_height;
51     unsigned int i_width;
52 #endif
53
54     screen_data_t *p_data;
55 };
56
57 int      screen_InitCapture ( demux_t * );
58 int      screen_CloseCapture( demux_t * );
59 block_t *screen_Capture( demux_t * );
60