]> git.sesse.net Git - vlc/blob - modules/access/screen/screen.c
Improvements to preferences
[vlc] / modules / access / screen / screen.c
1 /*****************************************************************************
2  * screen.c: Screen capture module.
3  *****************************************************************************
4  * Copyright (C) 2004 VideoLAN
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <stdlib.h>
28
29 #include <vlc/vlc.h>
30 #include <vlc/input.h>
31
32 #include "screen.h"
33
34 /*****************************************************************************
35  * Module descriptor
36  *****************************************************************************/
37 #define CACHING_TEXT N_("Caching value in ms")
38 #define CACHING_LONGTEXT N_( \
39     "Allows you to modify the default caching value for screen capture " \
40     "streams. This value should be set in millisecond units." )
41 #define FPS_TEXT N_("Frame rate")
42 #define FPS_LONGTEXT N_( \
43     "Allows you to set the desired frame rate for the capture." )
44
45 #ifdef WIN32
46 #define FRAGS_TEXT N_("Capture fragment size")
47 #define FRAGS_LONGTEXT N_( \
48     "Allows you optimize the capture by fragmenting the screen in chunks " \
49     "of predefined height (16 might be a good value, and 0 means disabled)." )
50 #endif
51
52 static int  Open ( vlc_object_t * );
53 static void Close( vlc_object_t * );
54
55 #ifdef WIN32
56 #   define SCREEN_FPS 1
57 #else
58 #   define SCREEN_FPS 5
59 #endif
60
61 vlc_module_begin();
62     set_description( _("Screen Input") );
63     set_category( CAT_INPUT );
64     set_subcategory( SUBCAT_INPUT_ACCESS );
65
66     add_integer( "screen-caching", DEFAULT_PTS_DELAY / 1000, NULL,
67         CACHING_TEXT, CACHING_LONGTEXT, VLC_TRUE );
68     add_float( "screen-fps", SCREEN_FPS, 0, FPS_TEXT, FPS_LONGTEXT, VLC_TRUE );
69
70 #ifdef WIN32
71     add_integer( "screen-fragment-size", 0, NULL, FRAGS_TEXT,
72         FRAGS_LONGTEXT, VLC_TRUE );
73 #endif
74
75     set_capability( "access_demux", 0 );
76     add_shortcut( "screen" );
77     set_callbacks( Open, Close );
78 vlc_module_end();
79
80 /*****************************************************************************
81  * Local prototypes
82  *****************************************************************************/
83 static int Control( demux_t *, int, va_list );
84 static int Demux  ( demux_t * );
85
86 /*****************************************************************************
87  * DemuxOpen:
88  *****************************************************************************/
89 static int Open( vlc_object_t *p_this )
90 {
91     demux_t     *p_demux = (demux_t*)p_this;
92     demux_sys_t *p_sys;
93     vlc_value_t val;
94
95     /* Fill p_demux field */
96     p_demux->pf_demux = Demux;
97     p_demux->pf_control = Control;
98     p_demux->p_sys = p_sys = malloc( sizeof( demux_sys_t ) );
99     memset( p_sys, 0, sizeof( demux_sys_t ) );
100
101     /* Update default_pts to a suitable value for screen access */
102     var_Create( p_demux, "screen-caching", VLC_VAR_INTEGER|VLC_VAR_DOINHERIT );
103
104     var_Create( p_demux, "screen-fps", VLC_VAR_FLOAT|VLC_VAR_DOINHERIT );
105     var_Get( p_demux, "screen-fps", &val );
106     p_sys->f_fps = val.f_float;
107     p_sys->i_incr = 1000000 / val.f_float;
108     p_sys->i_next_date = 0;
109
110     if( screen_InitCapture( p_demux ) != VLC_SUCCESS )
111     {
112         free( p_sys );
113         return VLC_EGENERIC;
114     }
115
116     msg_Dbg( p_demux, "screen width: %i, height: %i, depth: %i",
117              p_sys->fmt.video.i_width, p_sys->fmt.video.i_height,
118              p_sys->fmt.video.i_bits_per_pixel );
119
120     p_sys->es = es_out_Add( p_demux->out, &p_sys->fmt );
121
122     return VLC_SUCCESS;
123 }
124
125 /*****************************************************************************
126  * Close:
127  *****************************************************************************/
128 static void Close( vlc_object_t *p_this )
129 {
130     demux_t     *p_demux = (demux_t*)p_this;
131     demux_sys_t *p_sys = p_demux->p_sys;
132
133     screen_CloseCapture( p_demux );
134     free( p_sys );
135 }
136
137 /*****************************************************************************
138  * Demux:
139  *****************************************************************************/
140 static int Demux( demux_t *p_demux )
141 {
142     demux_sys_t *p_sys = p_demux->p_sys;
143     block_t *p_block;
144
145     if( !p_sys->i_next_date ) p_sys->i_next_date = mdate();
146
147     /* Frame skipping if necessary */
148     while( mdate() >= p_sys->i_next_date + p_sys->i_incr )
149         p_sys->i_next_date += p_sys->i_incr;
150
151     mwait( p_sys->i_next_date );
152     p_block = screen_Capture( p_demux );
153     if( !p_block )
154     {
155         p_sys->i_next_date += p_sys->i_incr;
156         return 1;
157     }
158
159     p_block->i_dts = p_block->i_pts = p_sys->i_next_date;
160
161     es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_block->i_pts );
162     es_out_Send( p_demux->out, p_sys->es, p_block );
163
164     p_sys->i_next_date += p_sys->i_incr;
165
166     return 1;
167 }
168
169 /*****************************************************************************
170  * Control:
171  *****************************************************************************/
172 static int Control( demux_t *p_demux, int i_query, va_list args )
173 {
174     vlc_bool_t *pb;
175     int64_t *pi64;
176
177     switch( i_query )
178     {
179         /* Special for access_demux */
180         case DEMUX_CAN_PAUSE:
181         case DEMUX_CAN_CONTROL_PACE:
182             /* TODO */
183             pb = (vlc_bool_t*)va_arg( args, vlc_bool_t * );
184             *pb = VLC_FALSE;
185             return VLC_SUCCESS;
186
187         case DEMUX_GET_PTS_DELAY:
188             pi64 = (int64_t*)va_arg( args, int64_t * );
189             *pi64 = (int64_t)var_GetInteger( p_demux, "screen-caching" ) *1000;
190             return VLC_SUCCESS;
191
192         /* TODO implement others */
193         default:
194             return VLC_EGENERIC;
195     }
196 }