]> git.sesse.net Git - vlc/blob - modules/access/screen/screen.h
Remove useless argument to pf_video_blend
[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 #   define SCREEN_MOUSE
31 #endif
32
33 #ifdef SCREEN_MOUSE
34 #   include <vlc_image.h>
35 #endif
36
37 typedef struct screen_data_t screen_data_t;
38
39 struct demux_sys_t
40 {
41     es_format_t fmt;
42     es_out_id_t *es;
43
44     float f_fps;
45     mtime_t i_next_date;
46     int i_incr;
47
48 #ifdef SCREEN_SUBSCREEN
49     bool b_follow_mouse;
50     unsigned int i_screen_height;
51     unsigned int i_screen_width;
52
53     unsigned int i_top;
54     unsigned int i_left;
55     unsigned int i_height;
56     unsigned int i_width;
57 #endif
58
59 #ifdef SCREEN_MOUSE
60     picture_t *p_mouse;
61     filter_t *p_blend;
62     picture_t dst;
63 #endif
64
65     screen_data_t *p_data;
66 };
67
68 int      screen_InitCapture ( demux_t * );
69 int      screen_CloseCapture( demux_t * );
70 block_t *screen_Capture( demux_t * );
71