]> git.sesse.net Git - vlc/blob - src/control/mediacontrol_audio_video.c
Use libvlc_InternalWait
[vlc] / src / control / mediacontrol_audio_video.c
1 /*****************************************************************************
2  * audio_video.c: Audio/Video management : volume, snapshot, OSD
3  *****************************************************************************
4  * Copyright (C) 2005 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Olivier Aubert <olivier.aubert@liris.univ-lyon1.fr>
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 #ifdef HAVE_CONFIG_H
25 # include "config.h"
26 #endif
27 #include "mediacontrol_internal.h"
28 #include "libvlc_internal.h"
29
30 #include <vlc/mediacontrol.h>
31 #include <vlc/libvlc.h>
32
33 #include <vlc_vout.h>
34 #include <vlc_osd.h>
35
36 #include <stdlib.h>                                      /* malloc(), free() */
37 #include <string.h>
38
39 #include <errno.h>                                                 /* ENOMEM */
40 #include <stdio.h>
41 #include <ctype.h>
42
43 #ifdef HAVE_UNISTD_H
44 #    include <unistd.h>
45 #endif
46 #ifdef HAVE_SYS_TIME_H
47 #    include <sys/time.h>
48 #endif
49 #ifdef HAVE_SYS_TYPES_H
50 #    include <sys/types.h>
51 #endif
52
53 mediacontrol_RGBPicture *
54 mediacontrol_snapshot( mediacontrol_Instance *self,
55                        const mediacontrol_Position * a_position,
56                        mediacontrol_Exception *exception )
57 {
58     (void)a_position;
59     vlc_object_t* p_cache;
60     vout_thread_t* p_vout;
61     input_thread_t *p_input;
62     mediacontrol_RGBPicture *p_pic = NULL;
63     char path[256];
64     snapshot_t *p_snapshot;
65     libvlc_exception_t ex;
66
67     libvlc_exception_init( &ex );
68     mediacontrol_exception_init( exception );
69
70     p_input = libvlc_get_input_thread( self->p_media_player, &ex );
71     if( ! p_input )
72     {
73         RAISE_NULL( mediacontrol_InternalException, "No input" );
74     }
75
76     p_vout = vlc_object_find( p_input, VLC_OBJECT_VOUT, FIND_CHILD );
77     vlc_object_release( p_input );
78     if( ! p_vout )
79     {
80         RAISE_NULL( mediacontrol_InternalException, "No video output" );
81     }
82     p_cache = vlc_object_create( p_input, sizeof( vlc_object_t ) );
83     if( p_cache == NULL )
84     {
85         vlc_object_release( p_vout );
86         vlc_object_release( p_input );
87         RAISE_NULL( mediacontrol_InternalException, "Out of memory" );
88     }
89     snprintf( path, 255, "object:%p", p_cache );
90     var_SetString( p_vout, "snapshot-path", path );
91     var_SetString( p_vout, "snapshot-format", "png" );
92
93     vlc_object_lock( p_cache );
94     vout_Control( p_vout, VOUT_SNAPSHOT );
95     vlc_object_release( p_vout );
96
97     p_snapshot = ( snapshot_t* ) p_cache->p_private;
98     vlc_object_unlock( p_cache );
99     vlc_object_release( p_cache );
100
101     if( p_snapshot )
102     {
103         /* Note: p_snapshot->p_data is directly used, not copied. Thus
104            do not free it here. */
105         p_pic = private_mediacontrol_createRGBPicture( p_snapshot->i_width,
106                                                        p_snapshot->i_height,
107                                                        VLC_FOURCC( 'p','n','g',' ' ),
108                                                        p_snapshot->date,
109                                                        p_snapshot->p_data,
110                                                        p_snapshot->i_datasize );
111         if( !p_pic )
112         {
113             free( p_snapshot );
114             RAISE_NULL( mediacontrol_InternalException, "Out of memory" );
115         }
116     }
117     else
118     {
119         RAISE_NULL( mediacontrol_InternalException, "Snapshot exception" );
120     }
121     return p_pic;
122 }
123
124 static
125 int mediacontrol_showtext( vout_thread_t *p_vout, int i_channel,
126                            const char *psz_string, text_style_t *p_style,
127                            int i_flags, int i_hmargin, int i_vmargin,
128                            mtime_t i_start, mtime_t i_stop )
129 {
130     return osd_ShowTextAbsolute( p_vout->p_spu, i_channel,
131                                  psz_string, p_style,
132                                  i_flags, i_hmargin, i_vmargin,
133                                  i_start, i_stop );
134 }
135
136
137 void
138 mediacontrol_display_text( mediacontrol_Instance *self,
139                            const char * message,
140                            const mediacontrol_Position * begin,
141                            const mediacontrol_Position * end,
142                            mediacontrol_Exception *exception )
143 {
144     vout_thread_t *p_vout = NULL;
145     input_thread_t *p_input;
146     libvlc_exception_t ex;
147
148     libvlc_exception_init( &ex );
149     mediacontrol_exception_init( exception );
150
151     if( !message )
152     {
153         RAISE_VOID( mediacontrol_InternalException, "Empty text" );
154     }
155
156     p_input = libvlc_get_input_thread( self->p_media_player, &ex );
157     if( ! p_input )
158     {
159         RAISE_VOID( mediacontrol_InternalException, "No input" );
160     }
161     p_vout = vlc_object_find( p_input, VLC_OBJECT_VOUT, FIND_CHILD );
162     if( ! p_vout )
163     {
164         RAISE_VOID( mediacontrol_InternalException, "No video output" );
165     }
166
167     if( begin->origin == mediacontrol_RelativePosition &&
168         begin->value == 0 &&
169         end->origin == mediacontrol_RelativePosition )
170     {
171         mtime_t i_duration = 0;
172         mtime_t i_now = mdate();
173
174         i_duration = 1000 * private_mediacontrol_unit_convert(
175                                                               self->p_media_player,
176                                                               end->key,
177                                                               mediacontrol_MediaTime,
178                                                               end->value );
179
180         mediacontrol_showtext( p_vout, DEFAULT_CHAN, message, NULL,
181                                OSD_ALIGN_BOTTOM | OSD_ALIGN_LEFT, 0, 0,
182                                i_now, i_now + i_duration );
183     }
184     else
185     {
186         mtime_t i_debut, i_fin, i_now;
187
188         /* FIXME */
189         /* i_now = input_ClockGetTS( p_input, NULL, 0 ); */
190         i_now = mdate();
191
192         i_debut = private_mediacontrol_position2microsecond( self->p_media_player,
193                                             ( mediacontrol_Position* ) begin );
194         i_debut += i_now;
195
196         i_fin = private_mediacontrol_position2microsecond( self->p_media_player,
197                                           ( mediacontrol_Position * ) end );
198         i_fin += i_now;
199
200         vout_ShowTextAbsolute( p_vout, DEFAULT_CHAN, message, NULL,
201                                OSD_ALIGN_BOTTOM | OSD_ALIGN_LEFT, 0, 0,
202                                i_debut, i_fin );
203     }
204
205     vlc_object_release( p_vout );
206 }
207
208 unsigned short
209 mediacontrol_sound_get_volume( mediacontrol_Instance *self,
210                                mediacontrol_Exception *exception )
211 {
212     libvlc_exception_t ex;
213     int i_ret = 0;
214
215     mediacontrol_exception_init( exception );
216     libvlc_exception_init( &ex );
217
218     i_ret = libvlc_audio_get_volume( self->p_instance, &ex );
219     HANDLE_LIBVLC_EXCEPTION_ZERO( &ex );
220     /* FIXME: Normalize in [0..100] */
221     return (unsigned short)i_ret;
222 }
223
224 void
225 mediacontrol_sound_set_volume( mediacontrol_Instance *self,
226                                const unsigned short volume,
227                                mediacontrol_Exception *exception )
228 {
229     /* FIXME: Normalize in [0..100] */
230     libvlc_exception_t ex;
231
232     mediacontrol_exception_init( exception );
233     libvlc_exception_init( &ex );
234
235     libvlc_audio_set_volume( self->p_instance, volume, &ex );
236     HANDLE_LIBVLC_EXCEPTION_VOID( &ex );
237 }
238
239 int mediacontrol_set_visual( mediacontrol_Instance *self,
240                                     WINDOWHANDLE visual_id,
241                                     mediacontrol_Exception *exception )
242 {
243     libvlc_exception_t ex;
244
245     mediacontrol_exception_init( exception );
246     libvlc_exception_init( &ex );
247
248     libvlc_media_player_set_drawable( self->p_media_player, (libvlc_drawable_t)visual_id, &ex );
249     HANDLE_LIBVLC_EXCEPTION_ZERO( &ex );
250     return true;
251 }
252
253 int
254 mediacontrol_get_rate( mediacontrol_Instance *self,
255                mediacontrol_Exception *exception )
256 {
257     libvlc_exception_t ex;
258     int i_ret;
259
260     mediacontrol_exception_init( exception );
261     libvlc_exception_init( &ex );
262
263     i_ret = libvlc_media_player_get_rate( self->p_media_player, &ex );
264     HANDLE_LIBVLC_EXCEPTION_ZERO( &ex );
265
266     return i_ret / 10;
267 }
268
269 void
270 mediacontrol_set_rate( mediacontrol_Instance *self,
271                const int rate,
272                mediacontrol_Exception *exception )
273 {
274     libvlc_exception_t ex;
275
276     mediacontrol_exception_init( exception );
277     libvlc_exception_init( &ex );
278
279     libvlc_media_player_set_rate( self->p_media_player, rate * 10, &ex );
280     HANDLE_LIBVLC_EXCEPTION_VOID( &ex );
281 }
282
283 int
284 mediacontrol_get_fullscreen( mediacontrol_Instance *self,
285                  mediacontrol_Exception *exception )
286 {
287     libvlc_exception_t ex;
288     int i_ret;
289
290     mediacontrol_exception_init( exception );
291     libvlc_exception_init( &ex );
292
293     i_ret = libvlc_get_fullscreen( self->p_media_player, &ex );
294     HANDLE_LIBVLC_EXCEPTION_ZERO( &ex );
295
296     return i_ret;
297 }
298
299 void
300 mediacontrol_set_fullscreen( mediacontrol_Instance *self,
301                  const int b_fullscreen,
302                  mediacontrol_Exception *exception )
303 {
304     libvlc_exception_t ex;
305
306     mediacontrol_exception_init( exception );
307     libvlc_exception_init( &ex );
308
309     libvlc_set_fullscreen( self->p_media_player, b_fullscreen, &ex );
310     HANDLE_LIBVLC_EXCEPTION_VOID( &ex );
311 }