]> git.sesse.net Git - vlc/blob - src/libvlc.c
Less and less information with compile
[vlc] / src / libvlc.c
1 /*****************************************************************************
2  * libvlc.c: Implementation of the old libvlc API
3  *****************************************************************************
4  * Copyright (C) 1998-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Vincent Seguin <seguin@via.ecp.fr>
8  *          Samuel Hocevar <sam@zoy.org>
9  *          Gildas Bazin <gbazin@videolan.org>
10  *          Derk-Jan Hartman <hartman at videolan dot org>
11  *          RĂ©mi Denis-Courmont <rem # videolan : org>
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 2 of the License, or
16  * (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
26  *****************************************************************************/
27
28 /*****************************************************************************
29  * Pretend we are a builtin module
30  *****************************************************************************/
31 #define MODULE_NAME main
32 #define MODULE_PATH main
33 #define __BUILTIN__
34
35 /*****************************************************************************
36  * Preamble
37  *****************************************************************************/
38 #ifdef HAVE_CONFIG_H
39 # include "config.h"
40 #endif
41
42 #include <vlc/vlc.h>
43
44 #include "control/libvlc_internal.h"
45 #include "libvlc.h"
46
47 #include <vlc_playlist.h>
48
49 #include <vlc_aout.h>
50 #include <vlc_vout.h>
51
52 /*****************************************************************************
53  * VLC_Version: return the libvlc version.
54  *****************************************************************************
55  * This function returns full version string (numeric version and codename).
56  *****************************************************************************/
57 char const * VLC_Version( void )
58 {
59     return VERSION_MESSAGE;
60 }
61
62 /*****************************************************************************
63  * VLC_CompileBy, VLC_CompileHost, VLC_CompileDomain,
64  * VLC_Compiler, VLC_Changeset
65  *****************************************************************************/
66 #define DECLARE_VLC_VERSION( func, var )                                    \
67 char const * VLC_##func ( void )                                            \
68 {                                                                           \
69     return VLC_##var ;                                                      \
70 }
71
72 DECLARE_VLC_VERSION( CompileBy, COMPILE_BY );
73 DECLARE_VLC_VERSION( CompileHost, COMPILE_HOST );
74 DECLARE_VLC_VERSION( CompileDomain, COMPILE_DOMAIN );
75 DECLARE_VLC_VERSION( Compiler, COMPILER );
76
77 extern const char psz_vlc_changeset[];
78 const char* VLC_Changeset( void )
79 {
80     return psz_vlc_changeset;
81 }
82
83 /*****************************************************************************
84  * VLC_Error: strerror() equivalent
85  *****************************************************************************
86  * This function returns full version string (numeric version and codename).
87  *****************************************************************************/
88 char const * VLC_Error( int i_err )
89 {
90     return vlc_error( i_err );
91 }
92
93 /*****************************************************************************
94  * VLC_Create: allocate a libvlc instance and intialize global libvlc stuff if needed
95  *****************************************************************************
96  * This function allocates a libvlc instance and returns a negative value
97  * in case of failure. Also, the thread system is initialized.
98  *****************************************************************************/
99 int VLC_Create( void )
100 {
101     libvlc_int_t *p_object = libvlc_InternalCreate();
102     if( p_object ) return p_object->i_object_id;
103     return VLC_ENOOBJ;
104 }
105
106 #define LIBVLC_FUNC \
107     libvlc_int_t * p_libvlc = vlc_current_object( i_object ); \
108     if( !p_libvlc ) return VLC_ENOOBJ;
109 #define LIBVLC_FUNC_END \
110     if( i_object ) vlc_object_release( p_libvlc );
111
112
113 /*****************************************************************************
114  * VLC_Init: initialize a libvlc instance
115  *****************************************************************************
116  * This function initializes a previously allocated libvlc instance:
117  *  - CPU detection
118  *  - gettext initialization
119  *  - message queue, module bank and playlist initialization
120  *  - configuration and commandline parsing
121  *****************************************************************************/
122 int VLC_Init( int i_object, int i_argc, const char *ppsz_argv[] )
123 {
124     int i_ret;
125     LIBVLC_FUNC;
126     i_ret = libvlc_InternalInit( p_libvlc, i_argc, ppsz_argv );
127     LIBVLC_FUNC_END;
128     return i_ret;
129 }
130
131 /*****************************************************************************
132  * VLC_AddIntf: add an interface
133  *****************************************************************************
134  * This function opens an interface plugin and runs it. If b_block is set
135  * to 0, VLC_AddIntf will return immediately and let the interface run in a
136  * separate thread. If b_block is set to 1, VLC_AddIntf will continue until
137  * user requests to quit. If b_play is set to 1, VLC_AddIntf will start playing
138  * the playlist when it is completely initialised.
139  *****************************************************************************/
140 int VLC_AddIntf( int i_object, char const *psz_module,
141                  bool b_block, bool b_play )
142 {
143     int i_ret;
144     LIBVLC_FUNC;
145     i_ret = libvlc_InternalAddIntf( p_libvlc, psz_module, b_block, b_play,
146                                     0, NULL );
147     LIBVLC_FUNC_END;
148     return i_ret;
149 }
150
151
152 /*****************************************************************************
153  * VLC_Die: ask vlc to die.
154  *****************************************************************************
155  * This function sets p_libvlc->b_die to true, but does not do any other
156  * task. It is your duty to call VLC_CleanUp and VLC_Destroy afterwards.
157  *****************************************************************************/
158 int VLC_Die( int i_object )
159 {
160     LIBVLC_FUNC;
161     vlc_object_kill( p_libvlc );
162     LIBVLC_FUNC_END;
163     return VLC_SUCCESS;
164 }
165
166 /*****************************************************************************
167  * VLC_CleanUp: CleanUp all the intf, playlist, vout, aout
168  *****************************************************************************/
169 int VLC_CleanUp( int i_object )
170 {
171     int i_ret;
172     LIBVLC_FUNC;
173     i_ret = libvlc_InternalCleanup( p_libvlc );
174     LIBVLC_FUNC_END;
175     return i_ret;
176 }
177
178 /*****************************************************************************
179  * VLC_Destroy: Destroy everything.
180  *****************************************************************************
181  * This function requests the running threads to finish, waits for their
182  * termination, and destroys their structure.
183  *****************************************************************************/
184 int VLC_Destroy( int i_object )
185 {
186     LIBVLC_FUNC;
187     return libvlc_InternalDestroy( p_libvlc, i_object ? true : false );
188 }
189
190 /*****************************************************************************
191  * VLC_VariableSet: set a vlc variable
192  *****************************************************************************/
193 int VLC_VariableSet( int i_object, char const *psz_var, vlc_value_t value )
194 {
195     int i_ret;
196     LIBVLC_FUNC;
197
198     /* FIXME: Temporary hack for Mozilla, if variable starts with conf:: then
199      * we handle it as a configuration variable. Don't tell Gildas :) -- sam */
200     if( !strncmp( psz_var, "conf::", 6 ) )
201     {
202         module_config_t *p_item;
203         char const *psz_newvar = psz_var + 6;
204
205         p_item = config_FindConfig( VLC_OBJECT(p_libvlc), psz_newvar );
206
207         if( p_item )
208         {
209             switch( p_item->i_type )
210             {
211                 case CONFIG_ITEM_BOOL:
212                     config_PutInt( p_libvlc, psz_newvar, value.b_bool );
213                     break;
214                 case CONFIG_ITEM_INTEGER:
215                     config_PutInt( p_libvlc, psz_newvar, value.i_int );
216                     break;
217                 case CONFIG_ITEM_FLOAT:
218                     config_PutFloat( p_libvlc, psz_newvar, value.f_float );
219                     break;
220                 default:
221                     config_PutPsz( p_libvlc, psz_newvar, value.psz_string );
222                     break;
223             }
224             if( i_object ) vlc_object_release( p_libvlc );
225             return VLC_SUCCESS;
226         }
227     }
228
229     i_ret = var_Set( p_libvlc, psz_var, value );
230
231     LIBVLC_FUNC_END;
232     return i_ret;
233 }
234
235 /*****************************************************************************
236  * VLC_VariableGet: get a vlc variable
237  *****************************************************************************/
238 int VLC_VariableGet( int i_object, char const *psz_var, vlc_value_t *p_value )
239 {
240     int i_ret;
241     LIBVLC_FUNC;
242     i_ret = var_Get( p_libvlc , psz_var, p_value );
243     LIBVLC_FUNC_END;
244     return i_ret;
245 }
246
247 /*****************************************************************************
248  * VLC_VariableType: get a vlc variable type
249  *****************************************************************************/
250 int VLC_VariableType( int i_object, char const *psz_var, int *pi_type )
251 {
252     int i_type;
253     LIBVLC_FUNC;
254     /* FIXME: Temporary hack for Mozilla, if variable starts with conf:: then
255      * we handle it as a configuration variable. Don't tell Gildas :) -- sam */
256     if( !strncmp( psz_var, "conf::", 6 ) )
257     {
258         module_config_t *p_item;
259         char const *psz_newvar = psz_var + 6;
260
261         p_item = config_FindConfig( VLC_OBJECT(p_libvlc), psz_newvar );
262
263         if( p_item )
264         {
265             switch( p_item->i_type )
266             {
267                 case CONFIG_ITEM_BOOL:
268                     i_type = VLC_VAR_BOOL;
269                     break;
270                 case CONFIG_ITEM_INTEGER:
271                     i_type = VLC_VAR_INTEGER;
272                     break;
273                 case CONFIG_ITEM_FLOAT:
274                     i_type = VLC_VAR_FLOAT;
275                     break;
276                 default:
277                     i_type = VLC_VAR_STRING;
278                     break;
279             }
280         }
281         else
282             i_type = 0;
283     }
284     else
285         i_type = VLC_VAR_TYPE & var_Type( p_libvlc , psz_var );
286
287     LIBVLC_FUNC_END;
288
289     if( i_type > 0 )
290     {
291         *pi_type = i_type;
292         return VLC_SUCCESS;
293     }
294     return VLC_ENOVAR;
295 }
296
297 #define LIBVLC_PLAYLIST_FUNC \
298     libvlc_int_t *p_libvlc = vlc_current_object( i_object );\
299     if( !p_libvlc ) return VLC_ENOOBJ; \
300     playlist_t *p_playlist = pl_Yield( p_libvlc ); \
301     if( !p_playlist ) return VLC_ENOOBJ
302
303 #define LIBVLC_PLAYLIST_FUNC_END \
304     pl_Release( p_libvlc ); \
305     if( i_object ) vlc_object_release( p_libvlc );
306
307 /*****************************************************************************
308  * VLC_AddTarget: adds a target for playing.
309  *****************************************************************************
310  * This function adds psz_target to the playlist
311  *****************************************************************************/
312
313 int VLC_AddTarget( int i_object, char const *psz_target,
314                    char const **ppsz_options, int i_options,
315                    int i_mode, int i_pos )
316 {
317     int i_err;
318     LIBVLC_PLAYLIST_FUNC;
319     i_err = playlist_AddExt( p_playlist, psz_target,
320                              NULL,  i_mode, i_pos, -1,
321                              ppsz_options, i_options, true, false );
322     LIBVLC_PLAYLIST_FUNC_END;
323     return i_err;
324 }
325
326 /*****************************************************************************
327  * VLC_Play: play the playlist
328  *****************************************************************************/
329 int VLC_Play( int i_object )
330 {
331     LIBVLC_PLAYLIST_FUNC;
332     playlist_Play( p_playlist );
333     LIBVLC_PLAYLIST_FUNC_END;
334     return VLC_SUCCESS;
335 }
336
337 /*****************************************************************************
338  * VLC_Pause: toggle pause
339  *****************************************************************************/
340 int VLC_Pause( int i_object )
341 {
342     LIBVLC_PLAYLIST_FUNC;
343     playlist_Pause( p_playlist );
344     LIBVLC_PLAYLIST_FUNC_END;
345     return VLC_SUCCESS;
346 }
347
348 /*****************************************************************************
349  * VLC_Stop: stop playback
350  *****************************************************************************/
351 int VLC_Stop( int i_object )
352 {
353     LIBVLC_PLAYLIST_FUNC;
354     playlist_Stop( p_playlist );
355     LIBVLC_PLAYLIST_FUNC_END;
356     return VLC_SUCCESS;
357 }
358
359 /*****************************************************************************
360  * VLC_IsPlaying: Query for Playlist Status
361  *****************************************************************************/
362 bool VLC_IsPlaying( int i_object )
363 {
364     bool   b_playing;
365
366     LIBVLC_PLAYLIST_FUNC;
367     if( p_playlist->p_input )
368     {
369         vlc_value_t  val;
370         var_Get( p_playlist->p_input, "state", &val );
371         b_playing = ( val.i_int == PLAYING_S );
372     }
373     else
374     {
375         b_playing = playlist_IsPlaying( p_playlist );
376     }
377     LIBVLC_PLAYLIST_FUNC_END;
378     return b_playing;
379 }
380
381 /**
382  * Get the current position in a input
383  *
384  * Return the current position as a float
385  * \note For some inputs, this will be unknown.
386  *
387  * \param i_object a vlc object id
388  * \return a float in the range of 0.0 - 1.0
389  */
390 float VLC_PositionGet( int i_object )
391 {
392     input_thread_t *p_input;
393     vlc_value_t val;
394     LIBVLC_FUNC;
395
396     p_input = vlc_object_find( p_libvlc, VLC_OBJECT_INPUT, FIND_CHILD );
397
398     if( !p_input )
399     {
400         if( i_object ) vlc_object_release( p_libvlc );
401         return VLC_ENOOBJ;
402     }
403
404     var_Get( p_input, "position", &val );
405     vlc_object_release( p_input );
406
407     LIBVLC_FUNC_END;
408     return val.f_float;
409 }
410
411 /**
412  * Set the current position in a input
413  *
414  * Set the current position in a input and then return
415  * the current position as a float.
416  * \note For some inputs, this will be unknown.
417  *
418  * \param i_object a vlc object id
419  * \param i_position a float in the range of 0.0 - 1.0
420  * \return a float in the range of 0.0 - 1.0
421  */
422 float VLC_PositionSet( int i_object, float i_position )
423 {
424     input_thread_t *p_input;
425     vlc_value_t val;
426     libvlc_int_t *p_libvlc = vlc_current_object( i_object );
427
428     /* Check that the handle is valid */
429     if( !p_libvlc )
430     {
431         return VLC_ENOOBJ;
432     }
433
434     p_input = vlc_object_find( p_libvlc, VLC_OBJECT_INPUT, FIND_CHILD );
435
436     if( !p_input )
437     {
438         if( i_object ) vlc_object_release( p_libvlc );
439         return VLC_ENOOBJ;
440     }
441
442     val.f_float = i_position;
443     var_Set( p_input, "position", val );
444     var_Get( p_input, "position", &val );
445     vlc_object_release( p_input );
446
447     if( i_object ) vlc_object_release( p_libvlc );
448     return val.f_float;
449 }
450
451 /**
452  * Get the current position in a input
453  *
454  * Return the current position in seconds from the start.
455  * \note For some inputs, this will be unknown.
456  *
457  * \param i_object a vlc object id
458  * \return the offset from 0:00 in seconds
459  */
460 int VLC_TimeGet( int i_object )
461 {
462     input_thread_t *p_input;
463     vlc_value_t val;
464     libvlc_int_t *p_libvlc = vlc_current_object( i_object );
465
466     /* Check that the handle is valid */
467     if( !p_libvlc )
468     {
469         return VLC_ENOOBJ;
470     }
471
472     p_input = vlc_object_find( p_libvlc, VLC_OBJECT_INPUT, FIND_CHILD );
473
474     if( !p_input )
475     {
476         if( i_object ) vlc_object_release( p_libvlc );
477         return VLC_ENOOBJ;
478     }
479
480     var_Get( p_input, "time", &val );
481     vlc_object_release( p_input );
482
483     if( i_object ) vlc_object_release( p_libvlc );
484     return val.i_time  / 1000000;
485 }
486
487 /**
488  * Seek to a position in the current input
489  *
490  * Seek i_seconds in the current input. If b_relative is set,
491  * then the seek will be relative to the current position, otherwise
492  * it will seek to i_seconds from the beginning of the input.
493  * \note For some inputs, this will be unknown.
494  *
495  * \param i_object a vlc object id
496  * \param i_seconds seconds from current position or from beginning of input
497  * \param b_relative seek relative from current position
498  * \return VLC_SUCCESS on success
499  */
500 int VLC_TimeSet( int i_object, int i_seconds, bool b_relative )
501 {
502     input_thread_t *p_input;
503     vlc_value_t val;
504     libvlc_int_t *p_libvlc = vlc_current_object( i_object );
505
506     /* Check that the handle is valid */
507     if( !p_libvlc )
508     {
509         return VLC_ENOOBJ;
510     }
511
512     p_input = vlc_object_find( p_libvlc, VLC_OBJECT_INPUT, FIND_CHILD );
513
514     if( !p_input )
515     {
516         if( i_object ) vlc_object_release( p_libvlc );
517         return VLC_ENOOBJ;
518     }
519
520     if( b_relative )
521     {
522         val.i_time = i_seconds;
523         val.i_time = val.i_time * 1000000L;
524         var_Set( p_input, "time-offset", val );
525     }
526     else
527     {
528         val.i_time = i_seconds;
529         val.i_time = val.i_time * 1000000L;
530         var_Set( p_input, "time", val );
531     }
532     vlc_object_release( p_input );
533
534     if( i_object ) vlc_object_release( p_libvlc );
535     return VLC_SUCCESS;
536 }
537
538 /**
539  * Get the total length of a input
540  *
541  * Return the total length in seconds from the current input.
542  * \note For some inputs, this will be unknown.
543  *
544  * \param i_object a vlc object id
545  * \return the length in seconds
546  */
547 int VLC_LengthGet( int i_object )
548 {
549     input_thread_t *p_input;
550     vlc_value_t val;
551     libvlc_int_t *p_libvlc = vlc_current_object( i_object );
552
553     /* Check that the handle is valid */
554     if( !p_libvlc )
555     {
556         return VLC_ENOOBJ;
557     }
558
559     p_input = vlc_object_find( p_libvlc, VLC_OBJECT_INPUT, FIND_CHILD );
560
561     if( !p_input )
562     {
563         if( i_object ) vlc_object_release( p_libvlc );
564         return VLC_ENOOBJ;
565     }
566
567     var_Get( p_input, "length", &val );
568     vlc_object_release( p_input );
569
570     if( i_object ) vlc_object_release( p_libvlc );
571     return val.i_time  / 1000000L;
572 }
573
574 /**
575  * Play the input faster than realtime
576  *
577  * 2x, 4x, 8x faster than realtime
578  * \note For some inputs, this will be impossible.
579  *
580  * \param i_object a vlc object id
581  * \return the current speedrate
582  */
583 float VLC_SpeedFaster( int i_object )
584 {
585     input_thread_t *p_input;
586     vlc_value_t val;
587     libvlc_int_t *p_libvlc = vlc_current_object( i_object );
588
589     /* Check that the handle is valid */
590     if( !p_libvlc )
591     {
592         return VLC_ENOOBJ;
593     }
594
595     p_input = vlc_object_find( p_libvlc, VLC_OBJECT_INPUT, FIND_CHILD );
596
597     if( !p_input )
598     {
599         if( i_object ) vlc_object_release( p_libvlc );
600         return VLC_ENOOBJ;
601     }
602
603     val.b_bool = true;
604     var_Set( p_input, "rate-faster", val );
605     var_Get( p_input, "rate", &val );
606     vlc_object_release( p_input );
607
608     if( i_object ) vlc_object_release( p_libvlc );
609     return val.f_float / INPUT_RATE_DEFAULT;
610 }
611
612 /**
613  * Play the input slower than realtime
614  *
615  * 1/2x, 1/4x, 1/8x slower than realtime
616  * \note For some inputs, this will be impossible.
617  *
618  * \param i_object a vlc object id
619  * \return the current speedrate
620  */
621 float VLC_SpeedSlower( int i_object )
622 {
623     input_thread_t *p_input;
624     vlc_value_t val;
625     libvlc_int_t *p_libvlc = vlc_current_object( i_object );
626
627     /* Check that the handle is valid */
628     if( !p_libvlc )
629     {
630         return VLC_ENOOBJ;
631     }
632
633     p_input = vlc_object_find( p_libvlc, VLC_OBJECT_INPUT, FIND_CHILD );
634
635     if( !p_input )
636     {
637         if( i_object ) vlc_object_release( p_libvlc );
638         return VLC_ENOOBJ;
639     }
640
641     val.b_bool = true;
642     var_Set( p_input, "rate-slower", val );
643     var_Get( p_input, "rate", &val );
644     vlc_object_release( p_input );
645
646     if( i_object ) vlc_object_release( p_libvlc );
647     return val.f_float / INPUT_RATE_DEFAULT;
648 }
649
650 /**
651  * Return the current playlist item
652  *
653  * Returns the index of the playlistitem that is currently selected for play.
654  * This is valid even if nothing is currently playing.
655  *
656  * \param i_object a vlc object id
657  * \return the current index
658  */
659 int VLC_PlaylistIndex( int i_object )
660 {
661     (void)i_object;
662     printf( "This function is deprecated and should not be used anymore" );
663     return -1;
664 }
665
666 /**
667  * Total number of items in the playlist
668  *
669  * \param i_object a vlc object id
670  * \return amount of playlist items
671  */
672 int VLC_PlaylistNumberOfItems( int i_object )
673 {
674     int i_size;
675     LIBVLC_PLAYLIST_FUNC;
676     i_size = p_playlist->items.i_size;
677     LIBVLC_PLAYLIST_FUNC_END;
678     return i_size;
679 }
680
681 /**
682  * Go to next playlist item
683  * \param i_object a vlc object id
684  * \return VLC_SUCCESS on success
685  */
686 int VLC_PlaylistNext( int i_object )
687 {
688     LIBVLC_PLAYLIST_FUNC;
689     playlist_Next( p_playlist );
690     LIBVLC_PLAYLIST_FUNC_END;
691     return VLC_SUCCESS;
692 }
693
694 /**
695  * Go to previous playlist item
696  * \param i_object a vlc object id
697  * \return VLC_SUCCESS on success
698  */
699 int VLC_PlaylistPrev( int i_object )
700 {
701     LIBVLC_PLAYLIST_FUNC;
702     playlist_Prev( p_playlist );
703     LIBVLC_PLAYLIST_FUNC_END;
704     return VLC_SUCCESS;
705 }
706
707 /**
708  * Empty the playlist
709  */
710 int VLC_PlaylistClear( int i_object )
711 {
712     LIBVLC_PLAYLIST_FUNC;
713     playlist_Clear( p_playlist, true );
714     LIBVLC_PLAYLIST_FUNC_END;
715     return VLC_SUCCESS;
716 }
717
718 /**
719  * Change the volume
720  *
721  * \param i_object a vlc object id
722  * \param i_volume something in a range from 0-200
723  * \return the new volume (range 0-200 %)
724  */
725 int VLC_VolumeSet( int i_object, int i_volume )
726 {
727     audio_volume_t i_vol = 0;
728     LIBVLC_FUNC;
729
730     if( i_volume >= 0 && i_volume <= 200 )
731     {
732         i_vol = i_volume * AOUT_VOLUME_MAX / 200;
733         aout_VolumeSet( p_libvlc, i_vol );
734     }
735     LIBVLC_FUNC_END;
736     return i_vol * 200 / AOUT_VOLUME_MAX;
737 }
738
739 /**
740  * Get the current volume
741  *
742  * Retrieve the current volume.
743  *
744  * \param i_object a vlc object id
745  * \return the current volume (range 0-200 %)
746  */
747 int VLC_VolumeGet( int i_object )
748 {
749     audio_volume_t i_volume;
750     LIBVLC_FUNC;
751     aout_VolumeGet( p_libvlc, &i_volume );
752     LIBVLC_FUNC_END;
753     return i_volume*200/AOUT_VOLUME_MAX;
754 }
755
756 /**
757  * Mute/Unmute the volume
758  *
759  * \param i_object a vlc object id
760  * \return VLC_SUCCESS on success
761  */
762 int VLC_VolumeMute( int i_object )
763 {
764     LIBVLC_FUNC;
765     aout_VolumeMute( p_libvlc, NULL );
766     LIBVLC_FUNC_END;
767     return VLC_SUCCESS;
768 }
769
770 /*****************************************************************************
771  * VLC_FullScreen: toggle fullscreen mode
772  *****************************************************************************/
773 int VLC_FullScreen( int i_object )
774 {
775     vout_thread_t *p_vout;
776     LIBVLC_FUNC;
777     p_vout = vlc_object_find( p_libvlc, VLC_OBJECT_VOUT, FIND_CHILD );
778
779     if( !p_vout )
780     {
781         if( i_object ) vlc_object_release( p_libvlc );
782         return VLC_ENOOBJ;
783     }
784
785     p_vout->i_changes |= VOUT_FULLSCREEN_CHANGE;
786     vlc_object_release( p_vout );
787     LIBVLC_FUNC_END;
788     return VLC_SUCCESS;
789 }