]> git.sesse.net Git - vlc/blob - src/libvlc.c
Fixed a dozen bugs regarding mono audio files.
[vlc] / src / libvlc.c
1 /*****************************************************************************
2  * libvlc.c: main libvlc source
3  *****************************************************************************
4  * Copyright (C) 1998-2002 VideoLAN
5  * $Id: libvlc.c,v 1.57 2003/01/19 03:16:24 sam Exp $
6  *
7  * Authors: Vincent Seguin <seguin@via.ecp.fr>
8  *          Samuel Hocevar <sam@zoy.org>
9  *          Gildas Bazin <gbazin@netcourrier.com>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * Pretend we are a builtin module
28  *****************************************************************************/
29 #define MODULE_NAME main
30 #define MODULE_PATH main
31 #define __BUILTIN__
32
33 /*****************************************************************************
34  * Preamble
35  *****************************************************************************/
36 #include <vlc/vlc.h>
37
38 #ifdef HAVE_ERRNO_H
39 #   include <errno.h>                                              /* ENOMEM */
40 #endif
41 #include <stdio.h>                                              /* sprintf() */
42 #include <string.h>                                            /* strerror() */
43 #include <stdlib.h>                                                /* free() */
44
45 #ifndef WIN32
46 #   include <netinet/in.h>                            /* BSD: struct in_addr */
47 #endif
48
49 #ifdef HAVE_UNISTD_H
50 #   include <unistd.h>
51 #elif defined( _MSC_VER ) && defined( _WIN32 ) && !defined( UNDER_CE )
52 #   include <io.h>
53 #endif
54
55 #ifdef WIN32                       /* optind, getopt(), included in unistd.h */
56 #   include "extras/getopt.h"
57 #endif
58
59 #ifdef HAVE_LOCALE_H
60 #   include <locale.h>
61 #endif
62
63 #include "vlc_cpu.h"                                        /* CPU detection */
64 #include "os_specific.h"
65
66 #include "error.h"
67 #include "netutils.h"                                 /* network_ChannelJoin */
68
69 #include "stream_control.h"
70 #include "input_ext-intf.h"
71
72 #include "vlc_playlist.h"
73 #include "interface.h"
74
75 #include "audio_output.h"
76
77 #include "video.h"
78 #include "video_output.h"
79
80 #include "libvlc.h"
81
82 /*****************************************************************************
83  * The evil global variable. We handle it with care, don't worry.
84  *****************************************************************************/
85 static libvlc_t libvlc;
86 static vlc_t *  p_static_vlc;
87
88 /*****************************************************************************
89  * Local prototypes
90  *****************************************************************************/
91 static void SetLanguage   ( char const * );
92 static int  GetFilenames  ( vlc_t *, int, char *[] );
93 static void Usage         ( vlc_t *, char const *psz_module_name );
94 static void ListModules   ( vlc_t * );
95 static void Version       ( void );
96
97 #ifdef WIN32
98 static void ShowConsole   ( void );
99 #endif
100
101 /*****************************************************************************
102  * VLC_Version: return the libvlc version.
103  *****************************************************************************
104  * This function returns full version string (numeric version and codename).
105  *****************************************************************************/
106 char const * VLC_Version( void )
107 {
108     return VERSION_MESSAGE;
109 }
110
111 /*****************************************************************************
112  * VLC_Error: strerror() equivalent
113  *****************************************************************************
114  * This function returns full version string (numeric version and codename).
115  *****************************************************************************/
116 char const * VLC_Error( int i_err )
117 {
118     return vlc_error( i_err );
119 }
120
121 /*****************************************************************************
122  * VLC_Create: allocate a vlc_t structure, and initialize libvlc if needed.
123  *****************************************************************************
124  * This function allocates a vlc_t structure and returns a negative value
125  * in case of failure. Also, the thread system is initialized.
126  *****************************************************************************/
127 int VLC_Create( void )
128 {
129     int i_ret;
130     vlc_t * p_vlc = NULL;
131     vlc_value_t lockval;
132
133     /* vlc_threads_init *must* be the first internal call! No other call is
134      * allowed before the thread system has been initialized. */
135     i_ret = vlc_threads_init( &libvlc );
136     if( i_ret < 0 )
137     {
138         return i_ret;
139     }
140
141     /* Now that the thread system is initialized, we don't have much, but
142      * at least we have var_Create */
143     var_Create( &libvlc, "libvlc", VLC_VAR_MUTEX );
144     var_Get( &libvlc, "libvlc", &lockval );
145     vlc_mutex_lock( lockval.p_address );
146     if( !libvlc.b_ready )
147     {
148         char *psz_env;
149
150         /* Guess what CPU we have */
151         libvlc.i_cpu = CPUCapabilities();
152
153         /* Find verbosity from VLC_VERBOSE environment variable */
154         psz_env = getenv( "VLC_VERBOSE" );
155         libvlc.i_verbose = psz_env ? atoi( psz_env ) : -1;
156
157 #ifdef HAVE_ISATTY
158         libvlc.b_color = isatty( 2 ); /* 2 is for stderr */
159 #else
160         libvlc.b_color = VLC_FALSE;
161 #endif
162
163         /* Initialize message queue */
164         msg_Create( &libvlc );
165
166         /* Announce who we are */
167         msg_Dbg( &libvlc, COPYRIGHT_MESSAGE );
168         msg_Dbg( &libvlc, "libvlc was configured with %s", CONFIGURE_LINE );
169
170         /* Initialize the module bank and load the configuration of the
171          * main module. We need to do this at this stage to be able to display
172          * a short help if required by the user. (short help == main module
173          * options) */
174         module_InitBank( &libvlc );
175         module_LoadMain( &libvlc );
176
177         libvlc.b_ready = VLC_TRUE;
178     }
179     vlc_mutex_unlock( lockval.p_address );
180     var_Destroy( &libvlc, "libvlc" );
181
182     /* Allocate a vlc object */
183     p_vlc = vlc_object_create( &libvlc, VLC_OBJECT_VLC );
184     if( p_vlc == NULL )
185     {
186         return VLC_EGENERIC;
187     }
188
189     p_vlc->psz_object_name = "root";
190
191     /* Initialize mutexes */
192     vlc_mutex_init( p_vlc, &p_vlc->config_lock );
193
194     /* Store our newly allocated structure in the global list */
195     vlc_object_attach( p_vlc, &libvlc );
196
197     /* Store data for the non-reentrant API */
198     p_static_vlc = p_vlc;
199
200     return p_vlc->i_object_id;
201 }
202
203 /*****************************************************************************
204  * VLC_Init: initialize a vlc_t structure.
205  *****************************************************************************
206  * This function initializes a previously allocated vlc_t structure:
207  *  - CPU detection
208  *  - gettext initialization
209  *  - message queue, module bank and playlist initialization
210  *  - configuration and commandline parsing
211  *****************************************************************************/
212 int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] )
213 {
214     char         p_capabilities[200];
215     char *       p_tmp;
216     vlc_bool_t   b_exit;
217     vlc_t *      p_vlc;
218     module_t    *p_help_module;
219     playlist_t  *p_playlist;
220
221     p_vlc = i_object ? vlc_object_get( &libvlc, i_object ) : p_static_vlc;
222
223     if( !p_vlc )
224     {
225         return VLC_ENOOBJ;
226     }
227
228     /*
229      * System specific initialization code
230      */
231     system_Init( p_vlc, &i_argc, ppsz_argv );
232
233     /* Get the executable name (similar to the basename command) */
234     if( i_argc > 0 )
235     {
236         p_vlc->psz_object_name = p_tmp = ppsz_argv[ 0 ];
237         while( *p_tmp )
238         {
239             if( *p_tmp == '/' ) p_vlc->psz_object_name = ++p_tmp;
240             else ++p_tmp;
241         }
242     }
243     else
244     {
245         p_vlc->psz_object_name = "vlc";
246     }
247
248     /*
249      * Support for gettext
250      */
251     SetLanguage( "" );
252
253     /* Translate "C" to the language code: "fr", "en_GB", "nl", "ru"... */
254     msg_Dbg( p_vlc, "translation test: code is \"%s\"", _("C") );
255
256     /* Hack: insert the help module here */
257     p_help_module = vlc_object_create( p_vlc, VLC_OBJECT_MODULE );
258     if( p_help_module == NULL )
259     {
260         //module_EndBank( p_vlc );
261         if( i_object ) vlc_object_release( p_vlc );
262         return VLC_EGENERIC;
263     }
264     p_help_module->psz_object_name = "help";
265     config_Duplicate( p_help_module, p_help_config );
266     vlc_object_attach( p_help_module, libvlc.p_module_bank );
267     /* End hack */
268
269     if( config_LoadCmdLine( p_vlc, &i_argc, ppsz_argv, VLC_TRUE ) )
270     {
271         vlc_object_detach( p_help_module );
272         config_Free( p_help_module );
273         vlc_object_destroy( p_help_module );
274         //module_EndBank( p_vlc );
275         if( i_object ) vlc_object_release( p_vlc );
276         return VLC_EGENERIC;
277     }
278
279     b_exit = VLC_FALSE;
280
281     /* Check for short help option */
282     if( config_GetInt( p_vlc, "help" ) )
283     {
284         fprintf( stdout, _("Usage: %s [options] [items]...\n\n"),
285                          p_vlc->psz_object_name );
286         Usage( p_vlc, "main" );
287         Usage( p_vlc, "help" );
288         b_exit = VLC_TRUE;
289     }
290     /* Check for version option */
291     else if( config_GetInt( p_vlc, "version" ) )
292     {
293         Version();
294         b_exit = VLC_TRUE;
295     }
296
297     /* Hack: remove the help module here */
298     vlc_object_detach( p_help_module );
299     /* End hack */
300
301     if( b_exit )
302     {
303         config_Free( p_help_module );
304         vlc_object_destroy( p_help_module );
305         //module_EndBank( p_vlc );
306         if( i_object ) vlc_object_release( p_vlc );
307         return VLC_EEXIT;
308     }
309
310     /*
311      * Load the builtins and plugins into the module_bank.
312      * We have to do it before config_Load*() because this also gets the
313      * list of configuration options exported by each module and loads their
314      * default values.
315      */
316     module_LoadBuiltins( &libvlc );
317     module_LoadPlugins( &libvlc );
318     msg_Dbg( p_vlc, "module bank initialized, found %i modules",
319                     libvlc.p_module_bank->i_children );
320
321     /* Hack: insert the help module here */
322     vlc_object_attach( p_help_module, libvlc.p_module_bank );
323     /* End hack */
324
325     /* Check for help on modules */
326     if( (p_tmp = config_GetPsz( p_vlc, "module" )) )
327     {
328         Usage( p_vlc, p_tmp );
329         free( p_tmp );
330         b_exit = VLC_TRUE;
331     }
332     /* Check for long help option */
333     else if( config_GetInt( p_vlc, "longhelp" ) )
334     {
335         Usage( p_vlc, NULL );
336         b_exit = VLC_TRUE;
337     }
338     /* Check for module list option */
339     else if( config_GetInt( p_vlc, "list" ) )
340     {
341         ListModules( p_vlc );
342         b_exit = VLC_TRUE;
343     }
344
345     /* Hack: remove the help module here */
346     vlc_object_detach( p_help_module );
347     config_Free( p_help_module );
348     vlc_object_destroy( p_help_module );
349     /* End hack */
350
351     if( b_exit )
352     {
353         //module_EndBank( p_vlc );
354         if( i_object ) vlc_object_release( p_vlc );
355         return VLC_EEXIT;
356     }
357
358     /*
359      * Override default configuration with config file settings
360      */
361     p_vlc->psz_homedir = config_GetHomeDir();
362     config_LoadConfigFile( p_vlc, NULL );
363
364     /*
365      * Override configuration with command line settings
366      */
367     if( config_LoadCmdLine( p_vlc, &i_argc, ppsz_argv, VLC_FALSE ) )
368     {
369 #ifdef WIN32
370         ShowConsole();
371         /* Pause the console because it's destroyed when we exit */
372         fprintf( stderr, "The command line options couldn't be loaded, check "
373                  "that they are valid.\nPress the RETURN key to continue..." );
374         getchar();
375 #endif
376         //module_EndBank( p_vlc );
377         if( i_object ) vlc_object_release( p_vlc );
378         return VLC_EGENERIC;
379     }
380
381     /*
382      * System specific configuration
383      */
384     system_Configure( p_vlc );
385
386     /*
387      * Message queue options
388      */
389     if( config_GetInt( p_vlc, "quiet" ) )
390     {
391         libvlc.i_verbose = -1;
392     }
393     else
394     {
395         int i_tmp = config_GetInt( p_vlc, "verbose" );
396         if( i_tmp >= 0 )
397         {
398             libvlc.i_verbose = __MIN( i_tmp, 2 );
399         }
400     }
401     libvlc.b_color = libvlc.b_color || config_GetInt( p_vlc, "color" );
402
403     /*
404      * Output messages that may still be in the queue
405      */
406     msg_Flush( p_vlc );
407
408     /* p_vlc inititalization. FIXME ? */
409     p_vlc->i_desync = config_GetInt( p_vlc, "desync" ) * (mtime_t)1000;
410
411 #if defined( __i386__ )
412     if( !config_GetInt( p_vlc, "mmx" ) )
413         libvlc.i_cpu &= ~CPU_CAPABILITY_MMX;
414     if( !config_GetInt( p_vlc, "3dn" ) )
415         libvlc.i_cpu &= ~CPU_CAPABILITY_3DNOW;
416     if( !config_GetInt( p_vlc, "mmxext" ) )
417         libvlc.i_cpu &= ~CPU_CAPABILITY_MMXEXT;
418     if( !config_GetInt( p_vlc, "sse" ) )
419         libvlc.i_cpu &= ~CPU_CAPABILITY_SSE;
420 #endif
421 #if defined( __powerpc__ ) || defined( SYS_DARWIN )
422     if( !config_GetInt( p_vlc, "altivec" ) )
423         libvlc.i_cpu &= ~CPU_CAPABILITY_ALTIVEC;
424 #endif
425
426 #define PRINT_CAPABILITY( capability, string )                              \
427     if( libvlc.i_cpu & capability )                                         \
428     {                                                                       \
429         strncat( p_capabilities, string " ",                                \
430                  sizeof(p_capabilities) - strlen(p_capabilities) );         \
431         p_capabilities[sizeof(p_capabilities) - 1] = '\0';                  \
432     }
433
434     p_capabilities[0] = '\0';
435     PRINT_CAPABILITY( CPU_CAPABILITY_486, "486" );
436     PRINT_CAPABILITY( CPU_CAPABILITY_586, "586" );
437     PRINT_CAPABILITY( CPU_CAPABILITY_PPRO, "Pentium Pro" );
438     PRINT_CAPABILITY( CPU_CAPABILITY_MMX, "MMX" );
439     PRINT_CAPABILITY( CPU_CAPABILITY_3DNOW, "3DNow!" );
440     PRINT_CAPABILITY( CPU_CAPABILITY_MMXEXT, "MMXEXT" );
441     PRINT_CAPABILITY( CPU_CAPABILITY_SSE, "SSE" );
442     PRINT_CAPABILITY( CPU_CAPABILITY_ALTIVEC, "AltiVec" );
443     PRINT_CAPABILITY( CPU_CAPABILITY_FPU, "FPU" );
444     msg_Dbg( p_vlc, "CPU has capabilities %s", p_capabilities );
445
446     /*
447      * Choose the best memcpy module
448      */
449     p_vlc->p_memcpy_module = module_Need( p_vlc, "memcpy", "$memcpy" );
450
451     if( p_vlc->pf_memcpy == NULL )
452     {
453         p_vlc->pf_memcpy = memcpy;
454     }
455
456     if( p_vlc->pf_memset == NULL )
457     {
458         p_vlc->pf_memset = memset;
459     }
460
461     /*
462      * Initialize shared resources and libraries
463      */
464     if( config_GetInt( p_vlc, "network-channel" )
465          && network_ChannelCreate( p_vlc ) )
466     {
467         /* On error during Channels initialization, switch off channels */
468         msg_Warn( p_vlc,
469                   "channels initialization failed, deactivating channels" );
470         config_PutInt( p_vlc, "network-channel", VLC_FALSE );
471     }
472
473     /*
474      * Initialize playlist and get commandline files
475      */
476     p_playlist = playlist_Create( p_vlc );
477     if( !p_playlist )
478     {
479         msg_Err( p_vlc, "playlist initialization failed" );
480         if( p_vlc->p_memcpy_module != NULL )
481         {
482             module_Unneed( p_vlc, p_vlc->p_memcpy_module );
483         }
484         //module_EndBank( p_vlc );
485         if( i_object ) vlc_object_release( p_vlc );
486         return VLC_EGENERIC;
487     }
488
489     /*
490      * Get input filenames given as commandline arguments
491      */
492     GetFilenames( p_vlc, i_argc, ppsz_argv );
493
494     if( i_object ) vlc_object_release( p_vlc );
495     return VLC_SUCCESS;
496 }
497
498 /*****************************************************************************
499  * VLC_AddIntf: add an interface
500  *****************************************************************************
501  * This function opens an interface plugin and runs it. If b_block is set
502  * to 0, VLC_AddIntf will return immediately and let the interface run in a
503  * separate thread. If b_block is set to 1, VLC_AddIntf will continue until
504  * user requests to quit.
505  *****************************************************************************/
506 int VLC_AddIntf( int i_object, char const *psz_module, vlc_bool_t b_block )
507 {
508     int i_err;
509     intf_thread_t *p_intf;
510     vlc_t *p_vlc;
511     char *psz_oldmodule = NULL;
512
513     p_vlc = i_object ? vlc_object_get( &libvlc, i_object ) : p_static_vlc;
514
515     if( !p_vlc )
516     {
517         return VLC_ENOOBJ;
518     }
519
520     if( psz_module )
521     {
522         psz_oldmodule = config_GetPsz( p_vlc, "intf" );
523         config_PutPsz( p_vlc, "intf", psz_module );
524     }
525
526     /* Try to create the interface */
527     p_intf = intf_Create( p_vlc );
528
529     if( psz_module )
530     {
531         config_PutPsz( p_vlc, "intf", psz_oldmodule );
532         if( psz_oldmodule )
533         {
534             free( psz_oldmodule );
535         }
536     }
537
538     if( p_intf == NULL )
539     {
540         msg_Err( p_vlc, "interface initialization failed" );
541         if( i_object ) vlc_object_release( p_vlc );
542         return VLC_EGENERIC;
543     }
544
545     /* Try to run the interface */
546     p_intf->b_block = b_block;
547     i_err = intf_RunThread( p_intf );
548     if( i_err )
549     {
550         vlc_object_detach( p_intf );
551         intf_Destroy( p_intf );
552         if( i_object ) vlc_object_release( p_vlc );
553         return i_err;
554     }
555
556     if( i_object ) vlc_object_release( p_vlc );
557     return VLC_SUCCESS;
558 }
559
560 /*****************************************************************************
561  * VLC_Destroy: stop playing and destroy everything.
562  *****************************************************************************
563  * This function requests the running threads to finish, waits for their
564  * termination, and destroys their structure.
565  *****************************************************************************/
566 int VLC_Destroy( int i_object )
567 {
568     vlc_t *p_vlc;
569
570     p_vlc = i_object ? vlc_object_get( &libvlc, i_object ) : p_static_vlc;
571
572     if( !p_vlc )
573     {
574         return VLC_ENOOBJ;
575     }
576
577     /*
578      * Go back into channel 0 which is the network
579      */
580     if( config_GetInt( p_vlc, "network-channel" ) && p_vlc->p_channel )
581     {
582         network_ChannelJoin( p_vlc, COMMON_CHANNEL );
583     }
584     
585     /*
586      * Free allocated memory
587      */
588     if( p_vlc->p_memcpy_module )
589     {
590         module_Unneed( p_vlc, p_vlc->p_memcpy_module );
591         p_vlc->p_memcpy_module = NULL;
592     }
593
594     if( p_vlc->psz_homedir )
595     {
596         free( p_vlc->psz_homedir );
597         p_vlc->psz_homedir = NULL;
598     }
599
600     /*
601      * XXX: Free module bank !
602      */
603     //module_EndBank( p_vlc );
604     
605     /*
606      * System specific cleaning code
607      */
608     system_End( p_vlc );
609     
610     /* Destroy mutexes */
611     vlc_mutex_destroy( &p_vlc->config_lock );
612
613     vlc_object_detach( p_vlc );
614
615     vlc_object_destroy( p_vlc );
616
617     /* Stop thread system: last one out please shut the door! */
618     vlc_threads_end( &libvlc );
619
620     if( i_object ) vlc_object_release( p_vlc );
621     return VLC_SUCCESS;
622 }
623
624 /*****************************************************************************
625  * VLC_Die: ask vlc to die.
626  *****************************************************************************
627  * This function sets p_vlc->b_die to VLC_TRUE, but does not do any other
628  * task. It is your duty to call vlc_end and VLC_Destroy afterwards.
629  *****************************************************************************/
630 int VLC_Die( int i_object )
631 {
632     vlc_t *p_vlc;
633
634     p_vlc = i_object ? vlc_object_get( &libvlc, i_object ) : p_static_vlc;
635
636     if( !p_vlc )
637     {
638         return VLC_ENOOBJ;
639     }
640
641     p_vlc->b_die = VLC_TRUE;
642
643     if( i_object ) vlc_object_release( p_vlc );
644     return VLC_SUCCESS;
645 }
646
647 /*****************************************************************************
648  * VLC_AddTarget: adds a target for playing.
649  *****************************************************************************
650  * This function adds psz_target to the current playlist. If a playlist does
651  * not exist, it will create one.
652  *****************************************************************************/
653 int VLC_AddTarget( int i_object, char const *psz_target, int i_mode, int i_pos )
654 {
655     int i_err;
656     playlist_t *p_playlist;
657     vlc_t *p_vlc;
658
659     p_vlc = i_object ? vlc_object_get( &libvlc, i_object ) : p_static_vlc;
660
661     if( !p_vlc )
662     {
663         return VLC_ENOOBJ;
664     }
665
666     p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST, FIND_ANYWHERE );
667
668     if( p_playlist == NULL )
669     {
670         msg_Dbg( p_vlc, "no playlist present, creating one" );
671         p_playlist = playlist_Create( p_vlc );
672
673         if( p_playlist == NULL )
674         {
675             if( i_object ) vlc_object_release( p_vlc );
676             return VLC_EGENERIC;
677         }
678
679         vlc_object_yield( p_playlist );
680     }
681
682     i_err = playlist_Add( p_playlist, psz_target, i_mode, i_pos );
683
684     vlc_object_release( p_playlist );
685
686     if( i_object ) vlc_object_release( p_vlc );
687     return i_err;
688 }
689
690 /*****************************************************************************
691  * VLC_Set: set a vlc variable
692  *****************************************************************************
693  *
694  *****************************************************************************/
695 int VLC_Set( int i_object, char const *psz_var, vlc_value_t value )
696 {
697     vlc_t *p_vlc;
698     int i_ret;
699
700     p_vlc = i_object ? vlc_object_get( &libvlc, i_object ) : p_static_vlc;
701
702     if( !p_vlc )
703     {
704         return VLC_ENOOBJ;
705     }
706
707     /* FIXME: Temporary hack for Mozilla, if variable starts with conf:: then
708      * we handle it as a configuration variable. Don't tell Gildas :) -- sam */
709     if( !strncmp( psz_var, "conf::", 6 ) )
710     {
711         module_config_t *p_item;
712         char const *psz_newvar = psz_var + 6;
713
714         p_item = config_FindConfig( VLC_OBJECT(p_vlc), psz_newvar );
715
716         if( p_item )
717         {
718             switch( p_item->i_type )
719             {
720                 case CONFIG_ITEM_BOOL:
721                     config_PutInt( p_vlc, psz_newvar, value.b_bool );
722                     break;
723                 case CONFIG_ITEM_INTEGER:
724                     config_PutInt( p_vlc, psz_newvar, value.i_int );
725                     break;
726                 case CONFIG_ITEM_FLOAT:
727                     config_PutFloat( p_vlc, psz_newvar, value.f_float );
728                     break;
729                 default:
730                     config_PutPsz( p_vlc, psz_newvar, value.psz_string );
731                     break;
732             }
733             if( i_object ) vlc_object_release( p_vlc );
734             return VLC_SUCCESS;
735         }
736     }
737
738     i_ret = var_Set( p_vlc, psz_var, value );
739
740     if( i_object ) vlc_object_release( p_vlc );
741     return i_ret;
742 }
743
744 /*****************************************************************************
745  * VLC_Get: get a vlc variable
746  *****************************************************************************
747  *
748  *****************************************************************************/
749 int VLC_Get( int i_object, char const *psz_var, vlc_value_t *p_value )
750 {
751     vlc_t *p_vlc;
752     int i_ret;
753
754     p_vlc = i_object ? vlc_object_get( &libvlc, i_object ) : p_static_vlc;
755
756     if( !p_vlc )
757     {
758         return VLC_ENOOBJ;
759     }
760
761     i_ret = var_Get( p_vlc, psz_var, p_value );
762
763     if( i_object ) vlc_object_release( p_vlc );
764     return i_ret;
765 }
766
767 /* FIXME: temporary hacks */
768
769 /*****************************************************************************
770  * VLC_Play: play
771  *****************************************************************************/
772 int VLC_Play( int i_object )
773 {
774     playlist_t * p_playlist;
775     vlc_t *p_vlc;
776
777     p_vlc = i_object ? vlc_object_get( &libvlc, i_object ) : p_static_vlc;
778
779     /* Check that the handle is valid */
780     if( !p_vlc )
781     {
782         return VLC_ENOOBJ;
783     }
784     
785     /* add pseudo sap interface; non blocking */
786     if( config_GetInt( p_vlc, "sap" ) )
787     {
788         msg_Dbg( p_vlc, "adding sap interface" );
789         VLC_AddIntf( 0, "sap", VLC_FALSE );
790     }
791
792     vlc_thread_set_priority( p_vlc, VLC_THREAD_PRIORITY_LOW );
793
794     p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST, FIND_CHILD );
795
796     if( !p_playlist )
797     {
798         if( i_object ) vlc_object_release( p_vlc );
799         return VLC_ENOOBJ;
800     }
801
802     vlc_mutex_lock( &p_playlist->object_lock );
803     if( p_playlist->i_size )
804     {
805         vlc_mutex_unlock( &p_playlist->object_lock );
806         playlist_Play( p_playlist );
807     }
808     else
809     {
810         vlc_mutex_unlock( &p_playlist->object_lock );
811     }
812
813     vlc_object_release( p_playlist );
814
815     if( i_object ) vlc_object_release( p_vlc );
816     return VLC_SUCCESS;
817 }
818
819 /*****************************************************************************
820  * VLC_Stop: stop
821  *****************************************************************************/
822 int VLC_Stop( int i_object )
823 {
824     intf_thread_t *   p_intf;
825     playlist_t    *   p_playlist;
826     vout_thread_t *   p_vout;
827     aout_instance_t * p_aout;
828     vlc_t *p_vlc;
829
830     p_vlc = i_object ? vlc_object_get( &libvlc, i_object ) : p_static_vlc;
831
832     /* Check that the handle is valid */
833     if( !p_vlc )
834     {
835         return VLC_ENOOBJ;
836     }
837
838     /*
839      * Ask the interfaces to stop and destroy them
840      */
841     msg_Dbg( p_vlc, "removing all interfaces" );
842     while( (p_intf = vlc_object_find( p_vlc, VLC_OBJECT_INTF, FIND_CHILD )) )
843     {
844         intf_StopThread( p_intf );
845         vlc_object_detach( p_intf );
846         vlc_object_release( p_intf );
847         intf_Destroy( p_intf );
848     }
849
850     /*
851      * Free playlists
852      */
853     msg_Dbg( p_vlc, "removing all playlists" );
854     while( (p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST,
855                                           FIND_CHILD )) )
856     {
857         vlc_object_detach( p_playlist );
858         vlc_object_release( p_playlist );
859         playlist_Destroy( p_playlist );
860     }
861
862     /*
863      * Free video outputs
864      */
865     msg_Dbg( p_vlc, "removing all video outputs" );
866     while( (p_vout = vlc_object_find( p_vlc, VLC_OBJECT_VOUT, FIND_CHILD )) )
867     {
868         vlc_object_detach( p_vout );
869         vlc_object_release( p_vout );
870         vout_Destroy( p_vout );
871     }
872
873     /*
874      * Free audio outputs
875      */
876     msg_Dbg( p_vlc, "removing all audio outputs" );
877     while( (p_aout = vlc_object_find( p_vlc, VLC_OBJECT_AOUT, FIND_CHILD )) )
878     {
879         vlc_object_detach( (vlc_object_t *)p_aout );
880         vlc_object_release( (vlc_object_t *)p_aout );
881         aout_Delete( p_aout );
882     }
883
884     if( i_object ) vlc_object_release( p_vlc );
885     return VLC_SUCCESS;
886 }
887
888 /*****************************************************************************
889  * VLC_Pause: toggle pause
890  *****************************************************************************/
891 int VLC_Pause( int i_object )
892 {
893     input_thread_t *p_input;
894     vlc_t *p_vlc;
895
896     p_vlc = i_object ? vlc_object_get( &libvlc, i_object ) : p_static_vlc;
897
898     if( !p_vlc )
899     {
900         return VLC_ENOOBJ;
901     }
902
903     p_input = vlc_object_find( p_vlc, VLC_OBJECT_INPUT, FIND_CHILD );
904
905     if( !p_input )
906     {
907         if( i_object ) vlc_object_release( p_vlc );
908         return VLC_ENOOBJ;
909     }
910
911     input_SetStatus( p_input, INPUT_STATUS_PAUSE );
912     vlc_object_release( p_input );
913
914     if( i_object ) vlc_object_release( p_vlc );
915     return VLC_SUCCESS;
916 }
917
918 /*****************************************************************************
919  * VLC_FullScreen: toggle fullscreen mode
920  *****************************************************************************/
921 int VLC_FullScreen( int i_object )
922 {
923     vout_thread_t *p_vout;
924     vlc_t *p_vlc;
925
926     p_vlc = i_object ? vlc_object_get( &libvlc, i_object ) : p_static_vlc;
927
928     if( !p_vlc )
929     {
930         return VLC_ENOOBJ;
931     }
932
933     p_vout = vlc_object_find( p_vlc, VLC_OBJECT_VOUT, FIND_CHILD );
934
935     if( !p_vout )
936     {
937         if( i_object ) vlc_object_release( p_vlc );
938         return VLC_ENOOBJ;
939     }
940
941     p_vout->i_changes |= VOUT_FULLSCREEN_CHANGE;
942     vlc_object_release( p_vout );
943
944     if( i_object ) vlc_object_release( p_vlc );
945     return VLC_SUCCESS;
946 }
947
948 /* following functions are local */
949
950 /*****************************************************************************
951  * SetLanguage: set the interface language.
952  *****************************************************************************
953  * We set the LC_MESSAGES locale category for interface messages and buttons,
954  * as well as the LC_CTYPE category for string sorting and possible wide
955  * character support.
956  *****************************************************************************/
957 static void SetLanguage ( char const *psz_lang )
958 {
959 #if defined( ENABLE_NLS ) \
960      && ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
961
962     char *          psz_path;
963 #ifdef SYS_DARWIN
964     char            psz_tmp[1024];
965 #endif
966
967 #   if defined( HAVE_INCLUDED_GETTEXT ) && !defined( HAVE_LC_MESSAGES )
968     if( *psz_lang )
969     {
970         /* We set LC_ALL manually because it is the only way to set
971          * the language at runtime under eg. Windows. Beware that this
972          * makes the environment unconsistent when libvlc is unloaded and
973          * should probably be moved to a safer place like vlc.c. */
974         static char psz_lcall[20];
975         snprintf( psz_lcall, 19, "LC_ALL=%s", psz_lang );
976         psz_lcall[19] = '\0';
977         putenv( psz_lcall );
978     }
979 #   endif
980
981 #   if defined( HAVE_LC_MESSAGES )
982     setlocale( LC_MESSAGES, psz_lang );
983 #   endif
984     setlocale( LC_CTYPE, psz_lang );
985
986     /* Specify where to find the locales for current domain */
987 #ifndef SYS_DARWIN
988     psz_path = LOCALEDIR;
989 #else
990     snprintf( psz_tmp, sizeof(psz_tmp), "%s/%s", libvlc.psz_vlcpath,
991               "locale" );
992     psz_path = psz_tmp;
993 #endif
994     if( !bindtextdomain( PACKAGE, psz_path ) )
995     {
996         fprintf( stderr, "warning: no domain %s in directory %s\n",
997                  PACKAGE, psz_path );
998     }
999
1000     /* Set the default domain */
1001     textdomain( PACKAGE );
1002 #endif
1003 }
1004
1005 /*****************************************************************************
1006  * GetFilenames: parse command line options which are not flags
1007  *****************************************************************************
1008  * Parse command line for input files.
1009  *****************************************************************************/
1010 static int GetFilenames( vlc_t *p_vlc, int i_argc, char *ppsz_argv[] )
1011 {
1012     int i_opt;
1013
1014     /* We assume that the remaining parameters are filenames */
1015     for( i_opt = i_argc - 1; i_opt > optind; i_opt-- )
1016     {
1017         /* TODO: write an internal function of this one, to avoid
1018          *       unnecessary lookups. */
1019         VLC_AddTarget( p_vlc->i_object_id, ppsz_argv[ i_opt ],
1020                        PLAYLIST_INSERT, 0 );
1021     }
1022
1023     /* If there is at least one target, play it */
1024     if( i_argc > optind )
1025     {
1026         VLC_AddTarget( p_vlc->i_object_id, ppsz_argv[ optind ],
1027                        PLAYLIST_INSERT | PLAYLIST_GO, 0 );
1028     }
1029
1030     return VLC_SUCCESS;
1031 }
1032
1033 /*****************************************************************************
1034  * Usage: print program usage
1035  *****************************************************************************
1036  * Print a short inline help. Message interface is initialized at this stage.
1037  *****************************************************************************/
1038 static void Usage( vlc_t *p_this, char const *psz_module_name )
1039 {
1040 #define FORMAT_STRING "      --%s%s%s%s%s%s%s %s%s\n"
1041     /* option name -------------'     | | | |  | |
1042      * <bra --------------------------' | | |  | |
1043      * option type or "" ---------------' | |  | |
1044      * ket> ------------------------------' |  | |
1045      * padding spaces ----------------------'  | |
1046      * comment --------------------------------' |
1047      * comment suffix ---------------------------'
1048      *
1049      * The purpose of having bra and ket is that we might i18n them as well.
1050      */
1051 #define LINE_START 8
1052 #define PADDING_SPACES 25
1053     vlc_list_t list;
1054     module_t *p_parser;
1055     module_config_t *p_item;
1056     char psz_spaces[PADDING_SPACES+LINE_START+1];
1057     char psz_format[sizeof(FORMAT_STRING)];
1058     int i_index;
1059
1060     memset( psz_spaces, ' ', PADDING_SPACES+LINE_START );
1061     psz_spaces[PADDING_SPACES+LINE_START] = '\0';
1062
1063     strcpy( psz_format, FORMAT_STRING );
1064
1065 #ifdef WIN32
1066     ShowConsole();
1067 #endif
1068
1069     /* List all modules */
1070     list = vlc_list_find( p_this, VLC_OBJECT_MODULE, FIND_ANYWHERE );
1071
1072     /* Enumerate the config for each module */
1073     for( i_index = 0; i_index < list.i_count; i_index++ )
1074     {
1075         vlc_bool_t b_help_module;
1076
1077         p_parser = (module_t *)list.p_values[i_index].p_object ;
1078
1079         if( psz_module_name && strcmp( psz_module_name,
1080                                        p_parser->psz_object_name ) )
1081         {
1082             continue;
1083         }
1084
1085         /* Ignore modules without config options */
1086         if( !p_parser->i_config_items )
1087         {
1088             continue;
1089         }
1090
1091         b_help_module = !strcmp( "help", p_parser->psz_object_name );
1092
1093         /* Print module options */
1094         for( p_item = p_parser->p_config;
1095              p_item->i_type != CONFIG_HINT_END;
1096              p_item++ )
1097         {
1098             char *psz_bra = NULL, *psz_type = NULL, *psz_ket = NULL;
1099             char *psz_suf = "", *psz_prefix = NULL;
1100             int i;
1101
1102             switch( p_item->i_type )
1103             {
1104             case CONFIG_HINT_CATEGORY:
1105             case CONFIG_HINT_USAGE:
1106                 fprintf( stdout, " %s\n", p_item->psz_text );
1107                 break;
1108
1109             case CONFIG_ITEM_STRING:
1110             case CONFIG_ITEM_FILE:
1111             case CONFIG_ITEM_MODULE: /* We could also have "=<" here */
1112                 if( !p_item->ppsz_list )
1113                 {
1114                     psz_bra = " <"; psz_type = _("string"); psz_ket = ">";
1115                     break;
1116                 }
1117                 else
1118                 {
1119                     psz_bra = " [";
1120                     psz_type = malloc( 1000 );
1121                     memset( psz_type, 0, 1000 );
1122                     for( i=0; p_item->ppsz_list[i]; i++ )
1123                     {
1124                         strcat( psz_type, p_item->ppsz_list[i] );
1125                         strcat( psz_type, "|" );
1126                     }
1127                     psz_type[ strlen( psz_type ) - 1 ] = '\0';
1128                     psz_ket = "]";
1129                     break;
1130                 }
1131             case CONFIG_ITEM_INTEGER:
1132                 psz_bra = " <"; psz_type = _("integer"); psz_ket = ">";
1133                 break;
1134             case CONFIG_ITEM_FLOAT:
1135                 psz_bra = " <"; psz_type = _("float"); psz_ket = ">";
1136                 break;
1137             case CONFIG_ITEM_BOOL:
1138                 psz_bra = ""; psz_type = ""; psz_ket = "";
1139                 if( !b_help_module )
1140                 {
1141                     psz_suf = p_item->i_value ? _(" (default enabled)") :
1142                                                 _(" (default disabled)");
1143                 }
1144                 break;
1145             }
1146
1147             /* Add short option if any */
1148             if( p_item->i_short )
1149             {
1150                 psz_format[2] = '-';
1151                 psz_format[3] = p_item->i_short;
1152                 psz_format[4] = ',';
1153             }
1154             else
1155             {
1156                 psz_format[2] = ' ';
1157                 psz_format[3] = ' ';
1158                 psz_format[4] = ' ';
1159             }
1160
1161             if( psz_type )
1162             {
1163                 i = PADDING_SPACES - strlen( p_item->psz_name )
1164                      - strlen( psz_bra ) - strlen( psz_type )
1165                      - strlen( psz_ket ) - 1;
1166                 if( p_item->i_type == CONFIG_ITEM_BOOL
1167                      && !b_help_module )
1168                 {
1169                     /* If option is of type --foo-bar, we print its counterpart
1170                      * as --no-foo-bar, but if it is of type --foobar (without
1171                      * dashes in the name) we print it as --nofoobar. Both
1172                      * values are of course valid, only the display changes. */
1173                     vlc_bool_t b_dash = VLC_FALSE;
1174                     psz_prefix = p_item->psz_name;
1175                     while( *psz_prefix )
1176                     {
1177                         if( *psz_prefix++ == '-' )
1178                         {
1179                             b_dash = VLC_TRUE;
1180                             break;
1181                         }
1182                     }
1183
1184                     if( b_dash )
1185                     {
1186                         psz_prefix = ", --no-";
1187                         i -= strlen( p_item->psz_name ) + strlen( ", --no-" );
1188                     }
1189                     else
1190                     {
1191                         psz_prefix = ", --no";
1192                         i -= strlen( p_item->psz_name ) + strlen( ", --no" );
1193                     }
1194                 }
1195
1196                 if( i < 0 )
1197                 {
1198                     i = 0;
1199                     psz_spaces[i] = '\n';
1200                 }
1201                 else
1202                 {
1203                     psz_spaces[i] = '\0';
1204                 }
1205
1206                 if( p_item->i_type == CONFIG_ITEM_BOOL &&
1207                     !b_help_module )
1208                 {
1209                     fprintf( stdout, psz_format, p_item->psz_name, psz_prefix,
1210                              p_item->psz_name, psz_bra, psz_type, psz_ket,
1211                              psz_spaces, p_item->psz_text, psz_suf );
1212                 }
1213                 else
1214                 {
1215                     fprintf( stdout, psz_format, p_item->psz_name, "", "",
1216                              psz_bra, psz_type, psz_ket, psz_spaces,
1217                              p_item->psz_text, psz_suf );
1218                 }
1219                 psz_spaces[i] = ' ';
1220                 if ( p_item->ppsz_list )
1221                 {
1222                     free( psz_type );
1223                 }
1224             }
1225         }
1226     }
1227
1228     /* Release the module list */
1229     vlc_list_release( &list );
1230
1231 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1232         fprintf( stdout, _("\nPress the RETURN key to continue...\n") );
1233         getchar();
1234 #endif
1235 }
1236
1237 /*****************************************************************************
1238  * ListModules: list the available modules with their description
1239  *****************************************************************************
1240  * Print a list of all available modules (builtins and plugins) and a short
1241  * description for each one.
1242  *****************************************************************************/
1243 static void ListModules( vlc_t *p_this )
1244 {
1245     vlc_list_t list;
1246     module_t *p_parser;
1247     char psz_spaces[22];
1248     int i_index;
1249
1250     memset( psz_spaces, ' ', 22 );
1251
1252 #ifdef WIN32
1253     ShowConsole();
1254 #endif
1255
1256     /* Usage */
1257     fprintf( stdout, _("Usage: %s [options] [items]...\n\n"),
1258                      p_this->p_vlc->psz_object_name );
1259
1260     fprintf( stdout, _("[module]              [description]\n") );
1261
1262     /* List all modules */
1263     list = vlc_list_find( p_this, VLC_OBJECT_MODULE, FIND_ANYWHERE );
1264
1265     /* Enumerate each module */
1266     for( i_index = 0; i_index < list.i_count; i_index++ )
1267     {
1268         int i;
1269
1270         p_parser = (module_t *)list.p_values[i_index].p_object ;
1271
1272         /* Nasty hack, but right now I'm too tired to think about a nice
1273          * solution */
1274         i = 22 - strlen( p_parser->psz_object_name ) - 1;
1275         if( i < 0 ) i = 0;
1276         psz_spaces[i] = 0;
1277
1278         fprintf( stdout, "  %s%s %s\n", p_parser->psz_object_name,
1279                          psz_spaces, p_parser->psz_longname );
1280
1281         psz_spaces[i] = ' ';
1282     }
1283
1284     vlc_list_release( &list );
1285
1286 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1287     fprintf( stdout, _("\nPress the RETURN key to continue...\n") );
1288     getchar();
1289 #endif
1290 }
1291
1292 /*****************************************************************************
1293  * Version: print complete program version
1294  *****************************************************************************
1295  * Print complete program version and build number.
1296  *****************************************************************************/
1297 static void Version( void )
1298 {
1299 #ifdef WIN32
1300     ShowConsole();
1301 #endif
1302
1303     fprintf( stdout, VERSION_MESSAGE "\n" );
1304     fprintf( stdout,
1305       _("This program comes with NO WARRANTY, to the extent permitted by "
1306         "law.\nYou may redistribute it under the terms of the GNU General "
1307         "Public License;\nsee the file named COPYING for details.\n"
1308         "Written by the VideoLAN team at Ecole Centrale, Paris.\n") );
1309
1310 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1311     fprintf( stdout, _("\nPress the RETURN key to continue...\n") );
1312     getchar();
1313 #endif
1314 }
1315
1316 /*****************************************************************************
1317  * ShowConsole: On Win32, create an output console for debug messages
1318  *****************************************************************************
1319  * This function is useful only on Win32.
1320  *****************************************************************************/
1321 #ifdef WIN32 /*  */
1322 static void ShowConsole( void )
1323 {
1324 #   ifndef UNDER_CE
1325     AllocConsole();
1326     freopen( "CONOUT$", "w", stdout );
1327     freopen( "CONOUT$", "w", stderr );
1328     freopen( "CONIN$", "r", stdin );
1329 #   endif
1330     return;
1331 }
1332 #endif