]> git.sesse.net Git - vlc/blob - src/libvlc.c
Add a fake language type for OSD subpictures. This allows you to select the OSD menu...
[vlc] / src / libvlc.c
1 /*****************************************************************************
2  * libvlc.c: main libvlc source
3  *****************************************************************************
4  * Copyright (C) 1998-2004 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  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
25  *****************************************************************************/
26
27 /*****************************************************************************
28  * Pretend we are a builtin module
29  *****************************************************************************/
30 #define MODULE_NAME main
31 #define MODULE_PATH main
32 #define __BUILTIN__
33
34 /*****************************************************************************
35  * Preamble
36  *****************************************************************************/
37 #include <vlc/vlc.h>
38 #include <vlc/input.h>
39
40 #include <errno.h>                                                 /* ENOMEM */
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( 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 #ifdef HAVE_HAL
64 #   include <hal/libhal.h>
65 #endif
66
67 #include "vlc_cpu.h"                                        /* CPU detection */
68 #include "os_specific.h"
69
70 #include "vlc_error.h"
71
72 #include "vlc_playlist.h"
73 #include "vlc_interface.h"
74
75 #include "audio_output.h"
76
77 #include "vlc_video.h"
78 #include "video_output.h"
79
80 #include "stream_output.h"
81 #include "charset.h"
82
83 #include "libvlc.h"
84
85 /*****************************************************************************
86  * The evil global variable. We handle it with care, don't worry.
87  *****************************************************************************/
88 static libvlc_t   libvlc;
89 static libvlc_t * p_libvlc;
90 static vlc_t *    p_static_vlc;
91
92 /*****************************************************************************
93  * Local prototypes
94  *****************************************************************************/
95 static void LocaleInit( void );
96 static void LocaleDeinit( void );
97 static void SetLanguage   ( char const * );
98 static int  GetFilenames  ( vlc_t *, int, char *[] );
99 static void Help          ( vlc_t *, char const *psz_help_name );
100 static void Usage         ( vlc_t *, char const *psz_module_name );
101 static void ListModules   ( vlc_t * );
102 static void Version       ( void );
103
104 #ifdef WIN32
105 static void ShowConsole   ( void );
106 static void PauseConsole  ( void );
107 #endif
108 static int  ConsoleWidth  ( void );
109
110 static int  VerboseCallback( vlc_object_t *, char const *,
111                              vlc_value_t, vlc_value_t, void * );
112
113 static void InitDeviceValues( vlc_t * );
114
115 /*****************************************************************************
116  * vlc_current_object: return the current object.
117  *****************************************************************************
118  * If i_object is non-zero, return the corresponding object. Otherwise,
119  * return the statically allocated p_vlc object.
120  *****************************************************************************/
121 vlc_t * vlc_current_object( int i_object )
122 {
123     if( i_object )
124     {
125          return vlc_object_get( p_libvlc, i_object );
126     }
127
128     return p_static_vlc;
129 }
130
131 /*****************************************************************************
132  * VLC_Version: return the libvlc version.
133  *****************************************************************************
134  * This function returns full version string (numeric version and codename).
135  *****************************************************************************/
136 char const * VLC_Version( void )
137 {
138     return VERSION_MESSAGE;
139 }
140
141 /*****************************************************************************
142  * VLC_Error: strerror() equivalent
143  *****************************************************************************
144  * This function returns full version string (numeric version and codename).
145  *****************************************************************************/
146 char const * VLC_Error( int i_err )
147 {
148     return vlc_error( i_err );
149 }
150
151 /*****************************************************************************
152  * VLC_Create: allocate a vlc_t structure, and initialize libvlc if needed.
153  *****************************************************************************
154  * This function allocates a vlc_t structure and returns a negative value
155  * in case of failure. Also, the thread system is initialized.
156  *****************************************************************************/
157 int VLC_Create( void )
158 {
159     int i_ret;
160     vlc_t * p_vlc = NULL;
161     vlc_value_t lockval;
162
163     /* &libvlc never changes, so we can safely call this multiple times. */
164     p_libvlc = &libvlc;
165
166     /* vlc_threads_init *must* be the first internal call! No other call is
167      * allowed before the thread system has been initialized. */
168     i_ret = vlc_threads_init( p_libvlc );
169     if( i_ret < 0 )
170     {
171         return i_ret;
172     }
173
174     /* Now that the thread system is initialized, we don't have much, but
175      * at least we have var_Create */
176     var_Create( p_libvlc, "libvlc", VLC_VAR_MUTEX );
177     var_Get( p_libvlc, "libvlc", &lockval );
178     vlc_mutex_lock( lockval.p_address );
179     if( !libvlc.b_ready )
180     {
181         char *psz_env;
182
183         /* Guess what CPU we have */
184         libvlc.i_cpu = CPUCapabilities();
185
186         /* Find verbosity from VLC_VERBOSE environment variable */
187         psz_env = getenv( "VLC_VERBOSE" );
188         libvlc.i_verbose = psz_env ? atoi( psz_env ) : -1;
189
190 #if defined( HAVE_ISATTY ) && !defined( WIN32 )
191         libvlc.b_color = isatty( 2 ); /* 2 is for stderr */
192 #else
193         libvlc.b_color = VLC_FALSE;
194 #endif
195
196         /* Initialize message queue */
197         msg_Create( p_libvlc );
198
199         /* Announce who we are */
200         msg_Dbg( p_libvlc, COPYRIGHT_MESSAGE );
201         msg_Dbg( p_libvlc, "libvlc was configured with %s", CONFIGURE_LINE );
202
203         /* The module bank will be initialized later */
204         libvlc.p_module_bank = NULL;
205
206         libvlc.b_ready = VLC_TRUE;
207
208         /* UTF-8 convertor are initialized after the locale */
209         libvlc.from_locale = libvlc.to_locale = (vlc_iconv_t)(-1);
210     }
211     vlc_mutex_unlock( lockval.p_address );
212     var_Destroy( p_libvlc, "libvlc" );
213
214     /* Allocate a vlc object */
215     p_vlc = vlc_object_create( p_libvlc, VLC_OBJECT_VLC );
216     if( p_vlc == NULL )
217     {
218         return VLC_EGENERIC;
219     }
220     p_vlc->thread_id = 0;
221
222     p_vlc->psz_object_name = "root";
223
224     /* Initialize mutexes */
225     vlc_mutex_init( p_vlc, &p_vlc->config_lock );
226 #ifdef SYS_DARWIN
227     vlc_mutex_init( p_vlc, &p_vlc->quicktime_lock );
228     vlc_thread_set_priority( p_vlc, VLC_THREAD_PRIORITY_LOW );
229 #endif
230
231     /* Store our newly allocated structure in the global list */
232     vlc_object_attach( p_vlc, p_libvlc );
233
234     /* Store data for the non-reentrant API */
235     p_static_vlc = p_vlc;
236
237     return p_vlc->i_object_id;
238 }
239
240 /*****************************************************************************
241  * VLC_Init: initialize a vlc_t structure.
242  *****************************************************************************
243  * This function initializes a previously allocated vlc_t structure:
244  *  - CPU detection
245  *  - gettext initialization
246  *  - message queue, module bank and playlist initialization
247  *  - configuration and commandline parsing
248  *****************************************************************************/
249 int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] )
250 {
251     char         p_capabilities[200];
252     char *       p_tmp;
253     char *       psz_modules;
254     char *       psz_parser;
255     char *       psz_control;
256     vlc_bool_t   b_exit = VLC_FALSE;
257     vlc_t *      p_vlc = vlc_current_object( i_object );
258     module_t    *p_help_module;
259     playlist_t  *p_playlist;
260     vlc_value_t  val;
261 #if defined( ENABLE_NLS ) \
262      && ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
263     char *       psz_language;
264 #endif
265
266     if( !p_vlc )
267     {
268         return VLC_ENOOBJ;
269     }
270
271     /*
272      * System specific initialization code
273      */
274     system_Init( p_vlc, &i_argc, ppsz_argv );
275
276     /* Get the executable name (similar to the basename command) */
277     if( i_argc > 0 )
278     {
279         p_vlc->psz_object_name = p_tmp = ppsz_argv[ 0 ];
280         while( *p_tmp )
281         {
282             if( *p_tmp == '/' ) p_vlc->psz_object_name = ++p_tmp;
283             else ++p_tmp;
284         }
285     }
286     else
287     {
288         p_vlc->psz_object_name = "vlc";
289     }
290
291     /*
292      * Support for gettext
293      */
294     SetLanguage( "" );
295
296     /*
297      * Global iconv, must be done after setlocale()
298      * so that vlc_current_charset() works.
299      */
300     LocaleInit();
301
302     /* Translate "C" to the language code: "fr", "en_GB", "nl", "ru"... */
303     msg_Dbg( p_vlc, "translation test: code is \"%s\"", _("C") );
304
305     /* Initialize the module bank and load the configuration of the
306      * main module. We need to do this at this stage to be able to display
307      * a short help if required by the user. (short help == main module
308      * options) */
309     module_InitBank( p_vlc );
310
311     /* Hack: insert the help module here */
312     p_help_module = vlc_object_create( p_vlc, VLC_OBJECT_MODULE );
313     if( p_help_module == NULL )
314     {
315         module_EndBank( p_vlc );
316         if( i_object ) vlc_object_release( p_vlc );
317         return VLC_EGENERIC;
318     }
319     p_help_module->psz_object_name = "help";
320     p_help_module->psz_longname = N_("Help options");
321     config_Duplicate( p_help_module, p_help_config );
322     vlc_object_attach( p_help_module, libvlc.p_module_bank );
323     /* End hack */
324
325     if( config_LoadCmdLine( p_vlc, &i_argc, ppsz_argv, VLC_TRUE ) )
326     {
327         vlc_object_detach( p_help_module );
328         config_Free( p_help_module );
329         vlc_object_destroy( p_help_module );
330         module_EndBank( p_vlc );
331         if( i_object ) vlc_object_release( p_vlc );
332         return VLC_EGENERIC;
333     }
334
335     /* Check for short help option */
336     if( config_GetInt( p_vlc, "help" ) )
337     {
338         Help( p_vlc, "help" );
339         b_exit = VLC_TRUE;
340     }
341     /* Check for version option */
342     else if( config_GetInt( p_vlc, "version" ) )
343     {
344         Version();
345         b_exit = VLC_TRUE;
346     }
347
348     /* Set the config file stuff */
349     p_vlc->psz_homedir = config_GetHomeDir();
350     p_vlc->psz_configfile = config_GetPsz( p_vlc, "config" );
351
352     /* Check for plugins cache options */
353     if( config_GetInt( p_vlc, "reset-plugins-cache" ) )
354     {
355         libvlc.p_module_bank->b_cache_delete = VLC_TRUE;
356     }
357
358     /* Hack: remove the help module here */
359     vlc_object_detach( p_help_module );
360     /* End hack */
361
362     /* Will be re-done properly later on */
363     p_vlc->p_libvlc->i_verbose = config_GetInt( p_vlc, "verbose" );
364
365     /* Check for daemon mode */
366 #ifndef WIN32
367     if( config_GetInt( p_vlc, "daemon" ) )
368     {
369 #if HAVE_DAEMON
370         if( daemon( 0, 0) != 0 )
371         {
372             msg_Err( p_vlc, "Unable to fork vlc to daemon mode" );
373             b_exit = VLC_TRUE;
374         }
375
376         p_vlc->p_libvlc->b_daemon = VLC_TRUE;
377
378 #else
379         pid_t i_pid;
380
381         if( ( i_pid = fork() ) < 0 )
382         {
383             msg_Err( p_vlc, "Unable to fork vlc to daemon mode" );
384             b_exit = VLC_TRUE;
385         }
386         else if( i_pid )
387         {
388             /* This is the parent, exit right now */
389             msg_Dbg( p_vlc, "closing parent process" );
390             b_exit = VLC_TRUE;
391         }
392         else
393         {
394             /* We are the child */
395             msg_Dbg( p_vlc, "daemon spawned" );
396             close( STDIN_FILENO );
397             close( STDOUT_FILENO );
398             close( STDERR_FILENO );
399
400             p_vlc->p_libvlc->b_daemon = VLC_TRUE;
401         }
402 #endif
403     }
404 #endif
405
406     if( b_exit )
407     {
408         config_Free( p_help_module );
409         vlc_object_destroy( p_help_module );
410         module_EndBank( p_vlc );
411         if( i_object ) vlc_object_release( p_vlc );
412         return VLC_EEXIT;
413     }
414
415     /* Check for translation config option */
416 #if defined( ENABLE_NLS ) \
417      && ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
418
419     /* This ain't really nice to have to reload the config here but it seems
420      * the only way to do it. */
421     config_LoadConfigFile( p_vlc, "main" );
422     config_LoadCmdLine( p_vlc, &i_argc, ppsz_argv, VLC_TRUE );
423
424     /* Check if the user specified a custom language */
425     psz_language = config_GetPsz( p_vlc, "language" );
426     if( psz_language && *psz_language && strcmp( psz_language, "auto" ) )
427     {
428         vlc_bool_t b_cache_delete = libvlc.p_module_bank->b_cache_delete;
429
430         /* Reset the default domain */
431         SetLanguage( psz_language );
432         LocaleDeinit();
433         LocaleInit();
434
435         /* Translate "C" to the language code: "fr", "en_GB", "nl", "ru"... */
436         msg_Dbg( p_vlc, "translation test: code is \"%s\"", _("C") );
437
438         textdomain( PACKAGE_NAME );
439
440 #if defined( ENABLE_UTF8 )
441         bind_textdomain_codeset( PACKAGE_NAME, "UTF-8" );
442 #endif
443
444         module_EndBank( p_vlc );
445         module_InitBank( p_vlc );
446         config_LoadConfigFile( p_vlc, "main" );
447         config_LoadCmdLine( p_vlc, &i_argc, ppsz_argv, VLC_TRUE );
448         libvlc.p_module_bank->b_cache_delete = b_cache_delete;
449     }
450     if( psz_language ) free( psz_language );
451 #endif
452
453     /*
454      * Load the builtins and plugins into the module_bank.
455      * We have to do it before config_Load*() because this also gets the
456      * list of configuration options exported by each module and loads their
457      * default values.
458      */
459     module_LoadBuiltins( p_vlc );
460     module_LoadPlugins( p_vlc );
461     if( p_vlc->b_die )
462     {
463         b_exit = VLC_TRUE;
464     }
465
466     msg_Dbg( p_vlc, "module bank initialized, found %i modules",
467                     libvlc.p_module_bank->i_children );
468
469     /* Hack: insert the help module here */
470     vlc_object_attach( p_help_module, libvlc.p_module_bank );
471     /* End hack */
472
473     /* Check for help on modules */
474     if( (p_tmp = config_GetPsz( p_vlc, "module" )) )
475     {
476         Help( p_vlc, p_tmp );
477         free( p_tmp );
478         b_exit = VLC_TRUE;
479     }
480     /* Check for long help option */
481     else if( config_GetInt( p_vlc, "longhelp" ) )
482     {
483         Help( p_vlc, "longhelp" );
484         b_exit = VLC_TRUE;
485     }
486     /* Check for module list option */
487     else if( config_GetInt( p_vlc, "list" ) )
488     {
489         ListModules( p_vlc );
490         b_exit = VLC_TRUE;
491     }
492
493     /* Check for config file options */
494     if( config_GetInt( p_vlc, "reset-config" ) )
495     {
496         vlc_object_detach( p_help_module );
497         config_ResetAll( p_vlc );
498         config_LoadCmdLine( p_vlc, &i_argc, ppsz_argv, VLC_TRUE );
499         config_SaveConfigFile( p_vlc, NULL );
500         vlc_object_attach( p_help_module, libvlc.p_module_bank );
501     }
502     if( config_GetInt( p_vlc, "save-config" ) )
503     {
504         vlc_object_detach( p_help_module );
505         config_LoadConfigFile( p_vlc, NULL );
506         config_LoadCmdLine( p_vlc, &i_argc, ppsz_argv, VLC_TRUE );
507         config_SaveConfigFile( p_vlc, NULL );
508         vlc_object_attach( p_help_module, libvlc.p_module_bank );
509     }
510
511     /* Hack: remove the help module here */
512     vlc_object_detach( p_help_module );
513     /* End hack */
514
515     if( b_exit )
516     {
517         config_Free( p_help_module );
518         vlc_object_destroy( p_help_module );
519         module_EndBank( p_vlc );
520         if( i_object ) vlc_object_release( p_vlc );
521         return VLC_EEXIT;
522     }
523
524     /*
525      * Init device values
526      */
527     InitDeviceValues( p_vlc );
528
529     /*
530      * Override default configuration with config file settings
531      */
532     config_LoadConfigFile( p_vlc, NULL );
533
534     /* Hack: insert the help module here */
535     vlc_object_attach( p_help_module, libvlc.p_module_bank );
536     /* End hack */
537
538     /*
539      * Override configuration with command line settings
540      */
541     if( config_LoadCmdLine( p_vlc, &i_argc, ppsz_argv, VLC_FALSE ) )
542     {
543 #ifdef WIN32
544         ShowConsole();
545         /* Pause the console because it's destroyed when we exit */
546         fprintf( stderr, "The command line options couldn't be loaded, check "
547                  "that they are valid.\n" );
548         PauseConsole();
549 #endif
550         vlc_object_detach( p_help_module );
551         config_Free( p_help_module );
552         vlc_object_destroy( p_help_module );
553         module_EndBank( p_vlc );
554         if( i_object ) vlc_object_release( p_vlc );
555         return VLC_EGENERIC;
556     }
557
558     /* Hack: remove the help module here */
559     vlc_object_detach( p_help_module );
560     config_Free( p_help_module );
561     vlc_object_destroy( p_help_module );
562     /* End hack */
563
564     /*
565      * System specific configuration
566      */
567     system_Configure( p_vlc, &i_argc, ppsz_argv );
568
569     /*
570      * Message queue options
571      */
572
573     var_Create( p_vlc, "verbose", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
574     if( config_GetInt( p_vlc, "quiet" ) )
575     {
576         val.i_int = -1;
577         var_Set( p_vlc, "verbose", val );
578     }
579     var_AddCallback( p_vlc, "verbose", VerboseCallback, NULL );
580     var_Change( p_vlc, "verbose", VLC_VAR_TRIGGER_CALLBACKS, NULL, NULL );
581
582     libvlc.b_color = libvlc.b_color && config_GetInt( p_vlc, "color" );
583
584     /*
585      * Output messages that may still be in the queue
586      */
587     msg_Flush( p_vlc );
588
589     /* p_vlc initialization. FIXME ? */
590
591     if( !config_GetInt( p_vlc, "fpu" ) )
592         libvlc.i_cpu &= ~CPU_CAPABILITY_FPU;
593
594 #if defined( __i386__ ) || defined( __x86_64__ )
595     if( !config_GetInt( p_vlc, "mmx" ) )
596         libvlc.i_cpu &= ~CPU_CAPABILITY_MMX;
597     if( !config_GetInt( p_vlc, "3dn" ) )
598         libvlc.i_cpu &= ~CPU_CAPABILITY_3DNOW;
599     if( !config_GetInt( p_vlc, "mmxext" ) )
600         libvlc.i_cpu &= ~CPU_CAPABILITY_MMXEXT;
601     if( !config_GetInt( p_vlc, "sse" ) )
602         libvlc.i_cpu &= ~CPU_CAPABILITY_SSE;
603     if( !config_GetInt( p_vlc, "sse2" ) )
604         libvlc.i_cpu &= ~CPU_CAPABILITY_SSE2;
605 #endif
606 #if defined( __powerpc__ ) || defined( SYS_DARWIN )
607     if( !config_GetInt( p_vlc, "altivec" ) )
608         libvlc.i_cpu &= ~CPU_CAPABILITY_ALTIVEC;
609 #endif
610
611 #define PRINT_CAPABILITY( capability, string )                              \
612     if( libvlc.i_cpu & capability )                                         \
613     {                                                                       \
614         strncat( p_capabilities, string " ",                                \
615                  sizeof(p_capabilities) - strlen(p_capabilities) );         \
616         p_capabilities[sizeof(p_capabilities) - 1] = '\0';                  \
617     }
618
619     p_capabilities[0] = '\0';
620     PRINT_CAPABILITY( CPU_CAPABILITY_486, "486" );
621     PRINT_CAPABILITY( CPU_CAPABILITY_586, "586" );
622     PRINT_CAPABILITY( CPU_CAPABILITY_PPRO, "Pentium Pro" );
623     PRINT_CAPABILITY( CPU_CAPABILITY_MMX, "MMX" );
624     PRINT_CAPABILITY( CPU_CAPABILITY_3DNOW, "3DNow!" );
625     PRINT_CAPABILITY( CPU_CAPABILITY_MMXEXT, "MMXEXT" );
626     PRINT_CAPABILITY( CPU_CAPABILITY_SSE, "SSE" );
627     PRINT_CAPABILITY( CPU_CAPABILITY_SSE2, "SSE2" );
628     PRINT_CAPABILITY( CPU_CAPABILITY_ALTIVEC, "AltiVec" );
629     PRINT_CAPABILITY( CPU_CAPABILITY_FPU, "FPU" );
630     msg_Dbg( p_vlc, "CPU has capabilities %s", p_capabilities );
631
632     /*
633      * Choose the best memcpy module
634      */
635     p_vlc->p_memcpy_module = module_Need( p_vlc, "memcpy", "$memcpy", 0 );
636
637     if( p_vlc->pf_memcpy == NULL )
638     {
639         p_vlc->pf_memcpy = memcpy;
640     }
641
642     if( p_vlc->pf_memset == NULL )
643     {
644         p_vlc->pf_memset = memset;
645     }
646
647     /*
648      * Initialize hotkey handling
649      */
650     var_Create( p_vlc, "key-pressed", VLC_VAR_INTEGER );
651     p_vlc->p_hotkeys = malloc( sizeof(p_hotkeys) );
652     /* Do a copy (we don't need to modify the strings) */
653     memcpy( p_vlc->p_hotkeys, p_hotkeys, sizeof(p_hotkeys) );
654
655     /*
656      * Initialize playlist and get commandline files
657      */
658     p_playlist = playlist_Create( p_vlc );
659     if( !p_playlist )
660     {
661         msg_Err( p_vlc, "playlist initialization failed" );
662         if( p_vlc->p_memcpy_module != NULL )
663         {
664             module_Unneed( p_vlc, p_vlc->p_memcpy_module );
665         }
666         module_EndBank( p_vlc );
667         if( i_object ) vlc_object_release( p_vlc );
668         return VLC_EGENERIC;
669     }
670
671     psz_modules = config_GetPsz( p_playlist, "services-discovery" );
672     if( psz_modules && *psz_modules )
673     {
674         /* Add service discovery modules */
675         playlist_AddSDModules( p_playlist, psz_modules );
676     }
677     if( psz_modules ) free( psz_modules );
678
679     /*
680      * Load background interfaces
681      */
682     psz_modules = config_GetPsz( p_vlc, "extraintf" );
683     psz_control = config_GetPsz( p_vlc, "control" );
684
685     if( psz_modules && *psz_modules && psz_control && *psz_control )
686     {
687         psz_modules = (char *)realloc( psz_modules, strlen( psz_modules ) +
688                                                     strlen( psz_control ) + 1 );
689         sprintf( psz_modules, "%s:%s", psz_modules, psz_control );
690     }
691     else if( psz_control && *psz_control )
692     {
693         if( psz_modules ) free( psz_modules );
694         psz_modules = strdup( psz_control );
695     }
696
697     psz_parser = psz_modules;
698     while ( psz_parser && *psz_parser )
699     {
700         char *psz_module, *psz_temp;
701         psz_module = psz_parser;
702         psz_parser = strchr( psz_module, ':' );
703         if ( psz_parser )
704         {
705             *psz_parser = '\0';
706             psz_parser++;
707         }
708         psz_temp = (char *)malloc( strlen(psz_module) + sizeof(",none") );
709         if( psz_temp )
710         {
711             sprintf( psz_temp, "%s,none", psz_module );
712             VLC_AddIntf( 0, psz_temp, VLC_FALSE, VLC_FALSE );
713             free( psz_temp );
714         }
715     }
716     if ( psz_modules )
717     {
718         free( psz_modules );
719     }
720
721     /*
722      * Allways load the hotkeys interface if it exists
723      */
724     VLC_AddIntf( 0, "hotkeys,none", VLC_FALSE, VLC_FALSE );
725
726     /*
727      * FIXME: kludge to use a p_vlc-local variable for the Mozilla plugin
728      */
729     var_Create( p_vlc, "drawable", VLC_VAR_INTEGER );
730     var_Create( p_vlc, "drawableredraw", VLC_VAR_INTEGER );
731     var_Create( p_vlc, "drawablet", VLC_VAR_INTEGER );
732     var_Create( p_vlc, "drawablel", VLC_VAR_INTEGER );
733     var_Create( p_vlc, "drawableb", VLC_VAR_INTEGER );
734     var_Create( p_vlc, "drawabler", VLC_VAR_INTEGER );
735     var_Create( p_vlc, "drawablex", VLC_VAR_INTEGER );
736     var_Create( p_vlc, "drawabley", VLC_VAR_INTEGER );
737     var_Create( p_vlc, "drawablew", VLC_VAR_INTEGER );
738     var_Create( p_vlc, "drawableh", VLC_VAR_INTEGER );
739     var_Create( p_vlc, "drawableportx", VLC_VAR_INTEGER );
740     var_Create( p_vlc, "drawableporty", VLC_VAR_INTEGER );
741
742     /*
743      * Get input filenames given as commandline arguments
744      */
745     GetFilenames( p_vlc, i_argc, ppsz_argv );
746
747     /*
748      * Get --open argument
749      */
750     var_Create( p_vlc, "open", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
751     var_Get( p_vlc, "open", &val );
752     if ( val.psz_string != NULL && *val.psz_string )
753     {
754         VLC_AddTarget( p_vlc->i_object_id, val.psz_string, NULL, 0,
755                        PLAYLIST_INSERT, 0 );
756     }
757     if ( val.psz_string != NULL ) free( val.psz_string );
758
759     if( i_object ) vlc_object_release( p_vlc );
760     return VLC_SUCCESS;
761 }
762
763 /*****************************************************************************
764  * VLC_AddIntf: add an interface
765  *****************************************************************************
766  * This function opens an interface plugin and runs it. If b_block is set
767  * to 0, VLC_AddIntf will return immediately and let the interface run in a
768  * separate thread. If b_block is set to 1, VLC_AddIntf will continue until
769  * user requests to quit. If b_play is set to 1, VLC_AddIntf will start playing
770  * the playlist when it is completely initialised.
771  *****************************************************************************/
772 int VLC_AddIntf( int i_object, char const *psz_module,
773                  vlc_bool_t b_block, vlc_bool_t b_play )
774 {
775     int i_err;
776     intf_thread_t *p_intf;
777     vlc_t *p_vlc = vlc_current_object( i_object );
778
779     if( !p_vlc )
780     {
781         return VLC_ENOOBJ;
782     }
783
784 #ifndef WIN32
785     if( p_vlc->p_libvlc->b_daemon && b_block && !psz_module )
786     {
787         /* Daemon mode hack.
788          * We prefer the dummy interface if none is specified. */
789         char *psz_interface = config_GetPsz( p_vlc, "intf" );
790         if( !psz_interface || !*psz_interface ) psz_module = "dummy";
791         if( psz_interface ) free( psz_interface );
792     }
793 #endif
794
795     /* Try to create the interface */
796     p_intf = intf_Create( p_vlc, psz_module ? psz_module : "$intf" );
797
798     if( p_intf == NULL )
799     {
800         msg_Err( p_vlc, "interface \"%s\" initialization failed", psz_module );
801         if( i_object ) vlc_object_release( p_vlc );
802         return VLC_EGENERIC;
803     }
804
805     /* Interface doesn't handle play on start so do it ourselves */
806     if( !p_intf->b_play && b_play ) VLC_Play( i_object );
807
808     /* Try to run the interface */
809     p_intf->b_play = b_play;
810     p_intf->b_block = b_block;
811     i_err = intf_RunThread( p_intf );
812     if( i_err )
813     {
814         vlc_object_detach( p_intf );
815         intf_Destroy( p_intf );
816         if( i_object ) vlc_object_release( p_vlc );
817         return i_err;
818     }
819
820     if( i_object ) vlc_object_release( p_vlc );
821     return VLC_SUCCESS;
822 }
823
824 /*****************************************************************************
825  * VLC_Die: ask vlc to die.
826  *****************************************************************************
827  * This function sets p_vlc->b_die to VLC_TRUE, but does not do any other
828  * task. It is your duty to call VLC_CleanUp and VLC_Destroy afterwards.
829  *****************************************************************************/
830 int VLC_Die( int i_object )
831 {
832     vlc_t *p_vlc = vlc_current_object( i_object );
833
834     if( !p_vlc )
835     {
836         return VLC_ENOOBJ;
837     }
838
839     p_vlc->b_die = VLC_TRUE;
840
841     if( i_object ) vlc_object_release( p_vlc );
842     return VLC_SUCCESS;
843 }
844
845 /*****************************************************************************
846  * VLC_CleanUp: CleanUp all the intf, playlist, vout, aout
847  *****************************************************************************/
848 int VLC_CleanUp( int i_object )
849 {
850     intf_thread_t      * p_intf;
851     playlist_t         * p_playlist;
852     vout_thread_t      * p_vout;
853     aout_instance_t    * p_aout;
854     announce_handler_t * p_announce;
855     vlc_t *p_vlc = vlc_current_object( i_object );
856
857     /* Check that the handle is valid */
858     if( !p_vlc )
859     {
860         return VLC_ENOOBJ;
861     }
862
863     /*
864      * Ask the interfaces to stop and destroy them
865      */
866     msg_Dbg( p_vlc, "removing all interfaces" );
867     while( (p_intf = vlc_object_find( p_vlc, VLC_OBJECT_INTF, FIND_CHILD )) )
868     {
869         intf_StopThread( p_intf );
870         vlc_object_detach( p_intf );
871         vlc_object_release( p_intf );
872         intf_Destroy( p_intf );
873     }
874
875     /*
876      * Free playlists
877      */
878     msg_Dbg( p_vlc, "removing all playlists" );
879     while( (p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST,
880                                           FIND_CHILD )) )
881     {
882         vlc_object_detach( p_playlist );
883         vlc_object_release( p_playlist );
884         playlist_Destroy( p_playlist );
885     }
886
887     /*
888      * Free video outputs
889      */
890     msg_Dbg( p_vlc, "removing all video outputs" );
891     while( (p_vout = vlc_object_find( p_vlc, VLC_OBJECT_VOUT, FIND_CHILD )) )
892     {
893         vlc_object_detach( p_vout );
894         vlc_object_release( p_vout );
895         vout_Destroy( p_vout );
896     }
897
898     /*
899      * Free audio outputs
900      */
901     msg_Dbg( p_vlc, "removing all audio outputs" );
902     while( (p_aout = vlc_object_find( p_vlc, VLC_OBJECT_AOUT, FIND_CHILD )) )
903     {
904         vlc_object_detach( (vlc_object_t *)p_aout );
905         vlc_object_release( (vlc_object_t *)p_aout );
906         aout_Delete( p_aout );
907     }
908
909     /*
910      * Free announce handler(s?)
911      */
912     msg_Dbg( p_vlc, "removing announce handler" );
913     while( (p_announce = vlc_object_find( p_vlc, VLC_OBJECT_ANNOUNCE,
914                                                  FIND_CHILD ) ) )
915    {
916         vlc_object_detach( p_announce );
917         vlc_object_release( p_announce );
918         announce_HandlerDestroy( p_announce );
919    }
920
921     if( i_object ) vlc_object_release( p_vlc );
922     return VLC_SUCCESS;
923 }
924
925 /*****************************************************************************
926  * VLC_Destroy: Destroy everything.
927  *****************************************************************************
928  * This function requests the running threads to finish, waits for their
929  * termination, and destroys their structure.
930  *****************************************************************************/
931 int VLC_Destroy( int i_object )
932 {
933     vlc_t *p_vlc = vlc_current_object( i_object );
934
935     if( !p_vlc )
936     {
937         return VLC_ENOOBJ;
938     }
939
940     /*
941      * Free allocated memory
942      */
943     if( p_vlc->p_memcpy_module )
944     {
945         module_Unneed( p_vlc, p_vlc->p_memcpy_module );
946         p_vlc->p_memcpy_module = NULL;
947     }
948
949     /*
950      * Free module bank !
951      */
952     module_EndBank( p_vlc );
953
954     if( p_vlc->psz_homedir )
955     {
956         free( p_vlc->psz_homedir );
957         p_vlc->psz_homedir = NULL;
958     }
959
960     if( p_vlc->psz_configfile )
961     {
962         free( p_vlc->psz_configfile );
963         p_vlc->psz_configfile = NULL;
964     }
965
966     if( p_vlc->p_hotkeys )
967     {
968         free( p_vlc->p_hotkeys );
969         p_vlc->p_hotkeys = NULL;
970     }
971
972     /*
973      * System specific cleaning code
974      */
975     system_End( p_vlc );
976
977     /*
978      * Free message queue.
979      * Nobody shall use msg_* afterward.
980      */
981     msg_Flush( p_vlc );
982     msg_Destroy( p_libvlc );
983
984     /* Destroy global iconv */
985     LocaleDeinit();
986
987     /* Destroy mutexes */
988     vlc_mutex_destroy( &p_vlc->config_lock );
989
990     vlc_object_detach( p_vlc );
991
992     /* Release object before destroying it */
993     if( i_object ) vlc_object_release( p_vlc );
994
995     vlc_object_destroy( p_vlc );
996
997     /* Stop thread system: last one out please shut the door! */
998     vlc_threads_end( p_libvlc );
999
1000     return VLC_SUCCESS;
1001 }
1002
1003 /*****************************************************************************
1004  * VLC_VariableSet: set a vlc variable
1005  *****************************************************************************/
1006 int VLC_VariableSet( int i_object, char const *psz_var, vlc_value_t value )
1007 {
1008     vlc_t *p_vlc = vlc_current_object( i_object );
1009     int i_ret;
1010
1011     if( !p_vlc )
1012     {
1013         return VLC_ENOOBJ;
1014     }
1015
1016     /* FIXME: Temporary hack for Mozilla, if variable starts with conf:: then
1017      * we handle it as a configuration variable. Don't tell Gildas :) -- sam */
1018     if( !strncmp( psz_var, "conf::", 6 ) )
1019     {
1020         module_config_t *p_item;
1021         char const *psz_newvar = psz_var + 6;
1022
1023         p_item = config_FindConfig( VLC_OBJECT(p_vlc), psz_newvar );
1024
1025         if( p_item )
1026         {
1027             switch( p_item->i_type )
1028             {
1029                 case CONFIG_ITEM_BOOL:
1030                     config_PutInt( p_vlc, psz_newvar, value.b_bool );
1031                     break;
1032                 case CONFIG_ITEM_INTEGER:
1033                     config_PutInt( p_vlc, psz_newvar, value.i_int );
1034                     break;
1035                 case CONFIG_ITEM_FLOAT:
1036                     config_PutFloat( p_vlc, psz_newvar, value.f_float );
1037                     break;
1038                 default:
1039                     config_PutPsz( p_vlc, psz_newvar, value.psz_string );
1040                     break;
1041             }
1042             if( i_object ) vlc_object_release( p_vlc );
1043             return VLC_SUCCESS;
1044         }
1045     }
1046
1047     i_ret = var_Set( p_vlc, psz_var, value );
1048
1049     if( i_object ) vlc_object_release( p_vlc );
1050     return i_ret;
1051 }
1052
1053 /*****************************************************************************
1054  * VLC_VariableGet: get a vlc variable
1055  *****************************************************************************/
1056 int VLC_VariableGet( int i_object, char const *psz_var, vlc_value_t *p_value )
1057 {
1058     vlc_t *p_vlc = vlc_current_object( i_object );
1059     int i_ret;
1060
1061     if( !p_vlc )
1062     {
1063         return VLC_ENOOBJ;
1064     }
1065
1066     i_ret = var_Get( p_vlc , psz_var, p_value );
1067
1068     if( i_object ) vlc_object_release( p_vlc );
1069     return i_ret;
1070 }
1071
1072 /*****************************************************************************
1073  * VLC_VariableType: get a vlc variable type
1074  *****************************************************************************/
1075 int VLC_VariableType( int i_object, char const *psz_var, int *pi_type )
1076 {
1077     int i_type;
1078     vlc_t *p_vlc = vlc_current_object( i_object );
1079
1080     if( !p_vlc )
1081     {
1082         return VLC_ENOOBJ;
1083     }
1084
1085     /* FIXME: Temporary hack for Mozilla, if variable starts with conf:: then
1086      * we handle it as a configuration variable. Don't tell Gildas :) -- sam */
1087     if( !strncmp( psz_var, "conf::", 6 ) )
1088     {
1089         module_config_t *p_item;
1090         char const *psz_newvar = psz_var + 6;
1091
1092         p_item = config_FindConfig( VLC_OBJECT(p_vlc), psz_newvar );
1093
1094         if( p_item )
1095         {
1096             switch( p_item->i_type )
1097             {
1098                 case CONFIG_ITEM_BOOL:
1099                     i_type = VLC_VAR_BOOL;
1100                     break;
1101                 case CONFIG_ITEM_INTEGER:
1102                     i_type = VLC_VAR_INTEGER;
1103                     break;
1104                 case CONFIG_ITEM_FLOAT:
1105                     i_type = VLC_VAR_FLOAT;
1106                     break;
1107                 default:
1108                     i_type = VLC_VAR_STRING;
1109                     break;
1110             }
1111         }
1112         else
1113             i_type = 0;
1114     }
1115     else
1116         i_type = VLC_VAR_TYPE & var_Type( p_vlc , psz_var );
1117
1118     if( i_object ) vlc_object_release( p_vlc );
1119
1120     if( i_type > 0 )
1121     {
1122         *pi_type = i_type;
1123         return VLC_SUCCESS;
1124     }
1125     return VLC_ENOVAR;
1126 }
1127
1128 /*****************************************************************************
1129  * VLC_AddTarget: adds a target for playing.
1130  *****************************************************************************
1131  * This function adds psz_target to the current playlist. If a playlist does
1132  * not exist, it will create one.
1133  *****************************************************************************/
1134 int VLC_AddTarget( int i_object, char const *psz_target,
1135                    char const **ppsz_options, int i_options,
1136                    int i_mode, int i_pos )
1137 {
1138     int i_err;
1139     playlist_t *p_playlist;
1140     vlc_t *p_vlc = vlc_current_object( i_object );
1141
1142     if( !p_vlc )
1143     {
1144         return VLC_ENOOBJ;
1145     }
1146
1147     p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST, FIND_ANYWHERE );
1148
1149     if( p_playlist == NULL )
1150     {
1151         msg_Dbg( p_vlc, "no playlist present, creating one" );
1152         p_playlist = playlist_Create( p_vlc );
1153
1154         if( p_playlist == NULL )
1155         {
1156             if( i_object ) vlc_object_release( p_vlc );
1157             return VLC_EGENERIC;
1158         }
1159
1160         vlc_object_yield( p_playlist );
1161     }
1162
1163     i_err = playlist_AddExt( p_playlist, psz_target, psz_target,
1164                              i_mode, i_pos, -1, ppsz_options, i_options);
1165
1166     vlc_object_release( p_playlist );
1167
1168     if( i_object ) vlc_object_release( p_vlc );
1169     return i_err;
1170 }
1171
1172 /*****************************************************************************
1173  * VLC_Play: play
1174  *****************************************************************************/
1175 int VLC_Play( int i_object )
1176 {
1177     playlist_t * p_playlist;
1178     vlc_t *p_vlc = vlc_current_object( i_object );
1179
1180     /* Check that the handle is valid */
1181     if( !p_vlc )
1182     {
1183         return VLC_ENOOBJ;
1184     }
1185
1186     p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST, FIND_CHILD );
1187
1188     if( !p_playlist )
1189     {
1190         if( i_object ) vlc_object_release( p_vlc );
1191         return VLC_ENOOBJ;
1192     }
1193
1194     playlist_Play( p_playlist );
1195     vlc_object_release( p_playlist );
1196
1197     if( i_object ) vlc_object_release( p_vlc );
1198     return VLC_SUCCESS;
1199 }
1200
1201 /*****************************************************************************
1202  * VLC_Pause: toggle pause
1203  *****************************************************************************/
1204 int VLC_Pause( int i_object )
1205 {
1206     playlist_t * p_playlist;
1207     vlc_t *p_vlc = vlc_current_object( i_object );
1208
1209     /* Check that the handle is valid */
1210     if( !p_vlc )
1211     {
1212         return VLC_ENOOBJ;
1213     }
1214
1215     p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST, FIND_CHILD );
1216
1217     if( !p_playlist )
1218     {
1219         if( i_object ) vlc_object_release( p_vlc );
1220         return VLC_ENOOBJ;
1221     }
1222
1223     playlist_Pause( p_playlist );
1224     vlc_object_release( p_playlist );
1225
1226     if( i_object ) vlc_object_release( p_vlc );
1227     return VLC_SUCCESS;
1228 }
1229
1230 /*****************************************************************************
1231  * VLC_Pause: toggle pause
1232  *****************************************************************************/
1233 int VLC_Stop( int i_object )
1234 {
1235     playlist_t * p_playlist;
1236     vlc_t *p_vlc = vlc_current_object( i_object );
1237
1238     /* Check that the handle is valid */
1239     if( !p_vlc )
1240     {
1241         return VLC_ENOOBJ;
1242     }
1243
1244     p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST, FIND_CHILD );
1245
1246     if( !p_playlist )
1247     {
1248         if( i_object ) vlc_object_release( p_vlc );
1249         return VLC_ENOOBJ;
1250     }
1251
1252     playlist_Stop( p_playlist );
1253     vlc_object_release( p_playlist );
1254
1255     if( i_object ) vlc_object_release( p_vlc );
1256     return VLC_SUCCESS;
1257 }
1258
1259 /*****************************************************************************
1260  * VLC_IsPlaying: Query for Playlist Status
1261  *****************************************************************************/
1262 vlc_bool_t VLC_IsPlaying( int i_object )
1263 {
1264     playlist_t * p_playlist;
1265     vlc_bool_t   b_playing;
1266
1267     vlc_t *p_vlc = vlc_current_object( i_object );
1268
1269     /* Check that the handle is valid */
1270     if( !p_vlc )
1271     {
1272         return VLC_ENOOBJ;
1273     }
1274
1275     p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST, FIND_CHILD );
1276
1277     if( !p_playlist )
1278     {
1279         if( i_object ) vlc_object_release( p_vlc );
1280         return VLC_ENOOBJ;
1281     }
1282
1283     b_playing = playlist_IsPlaying( p_playlist );
1284     vlc_object_release( p_playlist );
1285
1286     if( i_object ) vlc_object_release( p_vlc );
1287     return b_playing;
1288 }
1289
1290 /**
1291  * Get the current position in a input
1292  *
1293  * Return the current position as a float
1294  * \note For some inputs, this will be unknown.
1295  *
1296  * \param i_object a vlc object id
1297  * \return a float in the range of 0.0 - 1.0
1298  */
1299 float VLC_PositionGet( int i_object )
1300 {
1301     input_thread_t *p_input;
1302     vlc_value_t val;
1303     vlc_t *p_vlc = vlc_current_object( i_object );
1304
1305     /* Check that the handle is valid */
1306     if( !p_vlc )
1307     {
1308         return VLC_ENOOBJ;
1309     }
1310
1311     p_input = vlc_object_find( p_vlc, VLC_OBJECT_INPUT, FIND_CHILD );
1312
1313     if( !p_input )
1314     {
1315         if( i_object ) vlc_object_release( p_vlc );
1316         return VLC_ENOOBJ;
1317     }
1318
1319     var_Get( p_input, "position", &val );
1320     vlc_object_release( p_input );
1321
1322     if( i_object ) vlc_object_release( p_vlc );
1323     return val.f_float;
1324 }
1325
1326 /**
1327  * Set the current position in a input
1328  *
1329  * Set the current position in a input and then return
1330  * the current position as a float.
1331  * \note For some inputs, this will be unknown.
1332  *
1333  * \param i_object a vlc object id
1334  * \param i_position a float in the range of 0.0 - 1.0
1335  * \return a float in the range of 0.0 - 1.0
1336  */
1337 float VLC_PositionSet( int i_object, float i_position )
1338 {
1339     input_thread_t *p_input;
1340     vlc_value_t val;
1341     vlc_t *p_vlc = vlc_current_object( i_object );
1342
1343     /* Check that the handle is valid */
1344     if( !p_vlc )
1345     {
1346         return VLC_ENOOBJ;
1347     }
1348
1349     p_input = vlc_object_find( p_vlc, VLC_OBJECT_INPUT, FIND_CHILD );
1350
1351     if( !p_input )
1352     {
1353         if( i_object ) vlc_object_release( p_vlc );
1354         return VLC_ENOOBJ;
1355     }
1356
1357     val.f_float = i_position;
1358     var_Set( p_input, "position", val );
1359     var_Get( p_input, "position", &val );
1360     vlc_object_release( p_input );
1361
1362     if( i_object ) vlc_object_release( p_vlc );
1363     return val.f_float;
1364 }
1365
1366 /**
1367  * Get the current position in a input
1368  *
1369  * Return the current position in seconds from the start.
1370  * \note For some inputs, this will be unknown.
1371  *
1372  * \param i_object a vlc object id
1373  * \return the offset from 0:00 in seconds
1374  */
1375 int VLC_TimeGet( int i_object )
1376 {
1377     input_thread_t *p_input;
1378     vlc_value_t val;
1379     vlc_t *p_vlc = vlc_current_object( i_object );
1380
1381     /* Check that the handle is valid */
1382     if( !p_vlc )
1383     {
1384         return VLC_ENOOBJ;
1385     }
1386
1387     p_input = vlc_object_find( p_vlc, VLC_OBJECT_INPUT, FIND_CHILD );
1388
1389     if( !p_input )
1390     {
1391         if( i_object ) vlc_object_release( p_vlc );
1392         return VLC_ENOOBJ;
1393     }
1394
1395     var_Get( p_input, "time", &val );
1396     vlc_object_release( p_input );
1397
1398     if( i_object ) vlc_object_release( p_vlc );
1399     return val.i_time  / 1000000;
1400 }
1401
1402 /**
1403  * Seek to a position in the current input
1404  *
1405  * Seek i_seconds in the current input. If b_relative is set,
1406  * then the seek will be relative to the current position, otherwise
1407  * it will seek to i_seconds from the beginning of the input.
1408  * \note For some inputs, this will be unknown.
1409  *
1410  * \param i_object a vlc object id
1411  * \param i_seconds seconds from current position or from beginning of input
1412  * \param b_relative seek relative from current position
1413  * \return VLC_SUCCESS on success
1414  */
1415 int VLC_TimeSet( int i_object, int i_seconds, vlc_bool_t b_relative )
1416 {
1417     input_thread_t *p_input;
1418     vlc_value_t val;
1419     vlc_t *p_vlc = vlc_current_object( i_object );
1420
1421     /* Check that the handle is valid */
1422     if( !p_vlc )
1423     {
1424         return VLC_ENOOBJ;
1425     }
1426
1427     p_input = vlc_object_find( p_vlc, VLC_OBJECT_INPUT, FIND_CHILD );
1428
1429     if( !p_input )
1430     {
1431         if( i_object ) vlc_object_release( p_vlc );
1432         return VLC_ENOOBJ;
1433     }
1434
1435     if( b_relative )
1436     {
1437         val.i_time = i_seconds;
1438         val.i_time = val.i_time * 1000000L;
1439         var_Set( p_input, "time-offset", val );
1440     }
1441     else
1442     {
1443         val.i_time = i_seconds;
1444         val.i_time = val.i_time * 1000000L;
1445         var_Set( p_input, "time", val );
1446     }
1447     vlc_object_release( p_input );
1448
1449     if( i_object ) vlc_object_release( p_vlc );
1450     return VLC_SUCCESS;
1451 }
1452
1453 /**
1454  * Get the total length of a input
1455  *
1456  * Return the total length in seconds from the current input.
1457  * \note For some inputs, this will be unknown.
1458  *
1459  * \param i_object a vlc object id
1460  * \return the length in seconds
1461  */
1462 int VLC_LengthGet( int i_object )
1463 {
1464     input_thread_t *p_input;
1465     vlc_value_t val;
1466     vlc_t *p_vlc = vlc_current_object( i_object );
1467
1468     /* Check that the handle is valid */
1469     if( !p_vlc )
1470     {
1471         return VLC_ENOOBJ;
1472     }
1473
1474     p_input = vlc_object_find( p_vlc, VLC_OBJECT_INPUT, FIND_CHILD );
1475
1476     if( !p_input )
1477     {
1478         if( i_object ) vlc_object_release( p_vlc );
1479         return VLC_ENOOBJ;
1480     }
1481
1482     var_Get( p_input, "length", &val );
1483     vlc_object_release( p_input );
1484
1485     if( i_object ) vlc_object_release( p_vlc );
1486     return val.i_time  / 1000000L;
1487 }
1488
1489 /**
1490  * Play the input faster than realtime
1491  *
1492  * 2x, 4x, 8x faster than realtime
1493  * \note For some inputs, this will be impossible.
1494  *
1495  * \param i_object a vlc object id
1496  * \return the current speedrate
1497  */
1498 float VLC_SpeedFaster( int i_object )
1499 {
1500     input_thread_t *p_input;
1501     vlc_value_t val;
1502     vlc_t *p_vlc = vlc_current_object( i_object );
1503
1504     /* Check that the handle is valid */
1505     if( !p_vlc )
1506     {
1507         return VLC_ENOOBJ;
1508     }
1509
1510     p_input = vlc_object_find( p_vlc, VLC_OBJECT_INPUT, FIND_CHILD );
1511
1512     if( !p_input )
1513     {
1514         if( i_object ) vlc_object_release( p_vlc );
1515         return VLC_ENOOBJ;
1516     }
1517
1518     val.b_bool = VLC_TRUE;
1519     var_Set( p_input, "rate-faster", val );
1520     var_Get( p_input, "rate", &val );
1521     vlc_object_release( p_input );
1522
1523     if( i_object ) vlc_object_release( p_vlc );
1524     return val.f_float / INPUT_RATE_DEFAULT;
1525 }
1526
1527 /**
1528  * Play the input slower than realtime
1529  *
1530  * 1/2x, 1/4x, 1/8x slower than realtime
1531  * \note For some inputs, this will be impossible.
1532  *
1533  * \param i_object a vlc object id
1534  * \return the current speedrate
1535  */
1536 float VLC_SpeedSlower( int i_object )
1537 {
1538     input_thread_t *p_input;
1539     vlc_value_t val;
1540     vlc_t *p_vlc = vlc_current_object( i_object );
1541
1542     /* Check that the handle is valid */
1543     if( !p_vlc )
1544     {
1545         return VLC_ENOOBJ;
1546     }
1547
1548     p_input = vlc_object_find( p_vlc, VLC_OBJECT_INPUT, FIND_CHILD );
1549
1550     if( !p_input )
1551     {
1552         if( i_object ) vlc_object_release( p_vlc );
1553         return VLC_ENOOBJ;
1554     }
1555
1556     val.b_bool = VLC_TRUE;
1557     var_Set( p_input, "rate-slower", val );
1558     var_Get( p_input, "rate", &val );
1559     vlc_object_release( p_input );
1560
1561     if( i_object ) vlc_object_release( p_vlc );
1562     return val.f_float / INPUT_RATE_DEFAULT;
1563 }
1564
1565 /**
1566  * Return the current playlist item
1567  *
1568  * Returns the index of the playlistitem that is currently selected for play.
1569  * This is valid even if nothing is currently playing.
1570  *
1571  * \param i_object a vlc object id
1572  * \return the current index
1573  */
1574 int VLC_PlaylistIndex( int i_object )
1575 {
1576     int i_index;
1577     playlist_t * p_playlist;
1578     vlc_t *p_vlc = vlc_current_object( i_object );
1579
1580     /* Check that the handle is valid */
1581     if( !p_vlc )
1582     {
1583         return VLC_ENOOBJ;
1584     }
1585
1586     p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST, FIND_CHILD );
1587
1588     if( !p_playlist )
1589     {
1590         if( i_object ) vlc_object_release( p_vlc );
1591         return VLC_ENOOBJ;
1592     }
1593
1594     i_index = p_playlist->i_index;
1595     vlc_object_release( p_playlist );
1596
1597     if( i_object ) vlc_object_release( p_vlc );
1598     return i_index;
1599 }
1600
1601 /**
1602  * Total amount of items in the playlist
1603  *
1604  * \param i_object a vlc object id
1605  * \return amount of playlist items
1606  */
1607 int VLC_PlaylistNumberOfItems( int i_object )
1608 {
1609     int i_size;
1610     playlist_t * p_playlist;
1611     vlc_t *p_vlc = vlc_current_object( i_object );
1612
1613     /* Check that the handle is valid */
1614     if( !p_vlc )
1615     {
1616         return VLC_ENOOBJ;
1617     }
1618
1619     p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST, FIND_CHILD );
1620
1621     if( !p_playlist )
1622     {
1623         if( i_object ) vlc_object_release( p_vlc );
1624         return VLC_ENOOBJ;
1625     }
1626
1627     i_size = p_playlist->i_size;
1628     vlc_object_release( p_playlist );
1629
1630     if( i_object ) vlc_object_release( p_vlc );
1631     return i_size;
1632 }
1633
1634 /**
1635  * Next playlist item
1636  *
1637  * Skip to the next playlistitem and play it.
1638  *
1639  * \param i_object a vlc object id
1640  * \return VLC_SUCCESS on success
1641  */
1642 int VLC_PlaylistNext( int i_object )
1643 {
1644     playlist_t * p_playlist;
1645     vlc_t *p_vlc = vlc_current_object( i_object );
1646
1647     /* Check that the handle is valid */
1648     if( !p_vlc )
1649     {
1650         return VLC_ENOOBJ;
1651     }
1652
1653     p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST, FIND_CHILD );
1654
1655     if( !p_playlist )
1656     {
1657         if( i_object ) vlc_object_release( p_vlc );
1658         return VLC_ENOOBJ;
1659     }
1660
1661     playlist_Next( p_playlist );
1662     vlc_object_release( p_playlist );
1663
1664     if( i_object ) vlc_object_release( p_vlc );
1665     return VLC_SUCCESS;
1666 }
1667
1668 /**
1669  * Previous playlist item
1670  *
1671  * Skip to the previous playlistitem and play it.
1672  *
1673  * \param i_object a vlc object id
1674  * \return VLC_SUCCESS on success
1675  */
1676 int VLC_PlaylistPrev( int i_object )
1677 {
1678     playlist_t * p_playlist;
1679     vlc_t *p_vlc = vlc_current_object( i_object );
1680
1681     /* Check that the handle is valid */
1682     if( !p_vlc )
1683     {
1684         return VLC_ENOOBJ;
1685     }
1686
1687     p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST, FIND_CHILD );
1688
1689     if( !p_playlist )
1690     {
1691         if( i_object ) vlc_object_release( p_vlc );
1692         return VLC_ENOOBJ;
1693     }
1694
1695     playlist_Prev( p_playlist );
1696     vlc_object_release( p_playlist );
1697
1698     if( i_object ) vlc_object_release( p_vlc );
1699     return VLC_SUCCESS;
1700 }
1701
1702
1703 /*****************************************************************************
1704  * VLC_PlaylistClear: Empty the playlist
1705  *****************************************************************************/
1706 int VLC_PlaylistClear( int i_object )
1707 {
1708     int i_err;
1709     playlist_t * p_playlist;
1710     vlc_t *p_vlc = vlc_current_object( i_object );
1711
1712     /* Check that the handle is valid */
1713     if( !p_vlc )
1714     {
1715         return VLC_ENOOBJ;
1716     }
1717
1718     p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST, FIND_CHILD );
1719
1720     if( !p_playlist )
1721     {
1722         if( i_object ) vlc_object_release( p_vlc );
1723         return VLC_ENOOBJ;
1724     }
1725
1726     i_err = playlist_Clear( p_playlist );
1727
1728     vlc_object_release( p_playlist );
1729
1730     if( i_object ) vlc_object_release( p_vlc );
1731     return i_err;
1732 }
1733
1734 /**
1735  * Change the volume
1736  *
1737  * \param i_object a vlc object id
1738  * \param i_volume something in a range from 0-200
1739  * \return the new volume (range 0-200 %)
1740  */
1741 int VLC_VolumeSet( int i_object, int i_volume )
1742 {
1743     audio_volume_t i_vol = 0;
1744     vlc_t *p_vlc = vlc_current_object( i_object );
1745
1746     /* Check that the handle is valid */
1747     if( !p_vlc )
1748     {
1749         return VLC_ENOOBJ;
1750     }
1751
1752     if( i_volume >= 0 && i_volume <= 200 )
1753     {
1754         i_vol = i_volume * AOUT_VOLUME_MAX / 200;
1755         aout_VolumeSet( p_vlc, i_vol );
1756     }
1757
1758     if( i_object ) vlc_object_release( p_vlc );
1759     return i_vol * 200 / AOUT_VOLUME_MAX;
1760 }
1761
1762 /**
1763  * Get the current volume
1764  *
1765  * Retrieve the current volume.
1766  *
1767  * \param i_object a vlc object id
1768  * \return the current volume (range 0-200 %)
1769  */
1770 int VLC_VolumeGet( int i_object )
1771 {
1772     audio_volume_t i_volume;
1773     vlc_t *p_vlc = vlc_current_object( i_object );
1774
1775     /* Check that the handle is valid */
1776     if( !p_vlc )
1777     {
1778         return VLC_ENOOBJ;
1779     }
1780
1781     aout_VolumeGet( p_vlc, &i_volume );
1782
1783     if( i_object ) vlc_object_release( p_vlc );
1784     return i_volume*200/AOUT_VOLUME_MAX;
1785 }
1786
1787 /**
1788  * Mute/Unmute the volume
1789  *
1790  * \param i_object a vlc object id
1791  * \return VLC_SUCCESS on success
1792  */
1793 int VLC_VolumeMute( int i_object )
1794 {
1795     vlc_t *p_vlc = vlc_current_object( i_object );
1796
1797     /* Check that the handle is valid */
1798     if( !p_vlc )
1799     {
1800         return VLC_ENOOBJ;
1801     }
1802
1803     aout_VolumeMute( p_vlc, NULL );
1804
1805     if( i_object ) vlc_object_release( p_vlc );
1806     return VLC_SUCCESS;
1807 }
1808
1809 /*****************************************************************************
1810  * VLC_FullScreen: toggle fullscreen mode
1811  *****************************************************************************/
1812 int VLC_FullScreen( int i_object )
1813 {
1814     vout_thread_t *p_vout;
1815     vlc_t *p_vlc = vlc_current_object( i_object );
1816
1817     if( !p_vlc )
1818     {
1819         return VLC_ENOOBJ;
1820     }
1821
1822     p_vout = vlc_object_find( p_vlc, VLC_OBJECT_VOUT, FIND_CHILD );
1823
1824     if( !p_vout )
1825     {
1826         if( i_object ) vlc_object_release( p_vlc );
1827         return VLC_ENOOBJ;
1828     }
1829
1830     p_vout->i_changes |= VOUT_FULLSCREEN_CHANGE;
1831     vlc_object_release( p_vout );
1832
1833     if( i_object ) vlc_object_release( p_vlc );
1834     return VLC_SUCCESS;
1835 }
1836
1837 /* following functions are local */
1838
1839 static void LocaleInit( void )
1840 {
1841     char *psz_charset;
1842
1843     if( !vlc_current_charset( &psz_charset ) )
1844     {
1845         vlc_mutex_init( p_libvlc, &libvlc.from_locale_lock );
1846         vlc_mutex_init( p_libvlc, &libvlc.to_locale_lock );
1847         libvlc.from_locale = vlc_iconv_open( "UTF-8", psz_charset );
1848         libvlc.to_locale = vlc_iconv_open( psz_charset, "UTF-8" );
1849         if( !libvlc.to_locale )
1850         {
1851             // Not sure it is the right thing to do, but at least it
1852             // doesn't make vlc crash with msvc !
1853             libvlc.to_locale = (vlc_iconv_t)(-1);
1854         }
1855     }
1856     else
1857         libvlc.from_locale = libvlc.to_locale = (vlc_iconv_t)(-1);
1858     free( psz_charset );
1859 }
1860
1861 static void LocaleDeinit( void )
1862 {
1863     if( libvlc.to_locale != (vlc_iconv_t)(-1) )
1864     {
1865         vlc_mutex_destroy( &libvlc.from_locale_lock );
1866         vlc_mutex_destroy( &libvlc.to_locale_lock );
1867         vlc_iconv_close( libvlc.from_locale );
1868         vlc_iconv_close( libvlc.to_locale );
1869     }
1870 }
1871
1872 /*****************************************************************************
1873  * SetLanguage: set the interface language.
1874  *****************************************************************************
1875  * We set the LC_MESSAGES locale category for interface messages and buttons,
1876  * as well as the LC_CTYPE category for string sorting and possible wide
1877  * character support.
1878  *****************************************************************************/
1879 static void SetLanguage ( char const *psz_lang )
1880 {
1881 #if defined( ENABLE_NLS ) \
1882      && ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
1883
1884     char *          psz_path;
1885 #if defined( SYS_DARWIN ) || defined ( WIN32 ) || defined( SYS_BEOS )
1886     char            psz_tmp[1024];
1887 #endif
1888
1889     if( psz_lang && !*psz_lang )
1890     {
1891 #   if defined( HAVE_LC_MESSAGES )
1892         setlocale( LC_MESSAGES, psz_lang );
1893 #   endif
1894         setlocale( LC_CTYPE, psz_lang );
1895     }
1896     else if( psz_lang )
1897     {
1898 #ifdef SYS_DARWIN
1899         /* I need that under Darwin, please check it doesn't disturb
1900          * other platforms. --Meuuh */
1901         setenv( "LANG", psz_lang, 1 );
1902
1903 #elif defined( SYS_BEOS ) || defined( WIN32 )
1904         /* We set LC_ALL manually because it is the only way to set
1905          * the language at runtime under eg. Windows. Beware that this
1906          * makes the environment unconsistent when libvlc is unloaded and
1907          * should probably be moved to a safer place like vlc.c. */
1908         static char psz_lcall[20];
1909         snprintf( psz_lcall, 19, "LC_ALL=%s", psz_lang );
1910         psz_lcall[19] = '\0';
1911         putenv( psz_lcall );
1912 #endif
1913
1914         setlocale( LC_ALL, psz_lang );
1915     }
1916
1917     /* Specify where to find the locales for current domain */
1918 #if !defined( SYS_DARWIN ) && !defined( WIN32 ) && !defined( SYS_BEOS )
1919     psz_path = LOCALEDIR;
1920 #else
1921     snprintf( psz_tmp, sizeof(psz_tmp), "%s/%s", libvlc.psz_vlcpath,
1922               "locale" );
1923     psz_path = psz_tmp;
1924 #endif
1925     if( !bindtextdomain( PACKAGE_NAME, psz_path ) )
1926     {
1927         fprintf( stderr, "warning: no domain %s in directory %s\n",
1928                  PACKAGE_NAME, psz_path );
1929     }
1930
1931     /* Set the default domain */
1932     textdomain( PACKAGE_NAME );
1933
1934     bind_textdomain_codeset( PACKAGE_NAME, "UTF-8" );
1935 #endif
1936 }
1937
1938 /*****************************************************************************
1939  * GetFilenames: parse command line options which are not flags
1940  *****************************************************************************
1941  * Parse command line for input files as well as their associated options.
1942  * An option always follows its associated input and begins with a ":".
1943  *****************************************************************************/
1944 static int GetFilenames( vlc_t *p_vlc, int i_argc, char *ppsz_argv[] )
1945 {
1946     int i_opt, i_options;
1947
1948     /* We assume that the remaining parameters are filenames
1949      * and their input options */
1950     for( i_opt = i_argc - 1; i_opt >= optind; i_opt-- )
1951     {
1952         const char *psz_target;
1953         i_options = 0;
1954
1955         /* Count the input options */
1956         while( *ppsz_argv[ i_opt ] == ':' && i_opt > optind )
1957         {
1958             i_options++;
1959             i_opt--;
1960         }
1961
1962         /* TODO: write an internal function of this one, to avoid
1963          *       unnecessary lookups. */
1964         /* FIXME: should we convert options to UTF-8 as well ?? */
1965         psz_target = FromLocale( ppsz_argv[ i_opt ] );
1966         VLC_AddTarget( p_vlc->i_object_id, psz_target,
1967                        (char const **)( i_options ? &ppsz_argv[i_opt + 1] :
1968                                         NULL ), i_options,
1969                        PLAYLIST_INSERT, 0 );
1970         LocaleFree( psz_target );
1971     }
1972
1973     return VLC_SUCCESS;
1974 }
1975
1976 /*****************************************************************************
1977  * Help: print program help
1978  *****************************************************************************
1979  * Print a short inline help. Message interface is initialized at this stage.
1980  *****************************************************************************/
1981 static void Help( vlc_t *p_this, char const *psz_help_name )
1982 {
1983 #ifdef WIN32
1984     ShowConsole();
1985 #endif
1986
1987     if( psz_help_name && !strcmp( psz_help_name, "help" ) )
1988     {
1989         fprintf( stdout, VLC_USAGE, p_this->psz_object_name );
1990         Usage( p_this, "help" );
1991         Usage( p_this, "main" );
1992     }
1993     else if( psz_help_name && !strcmp( psz_help_name, "longhelp" ) )
1994     {
1995         fprintf( stdout, VLC_USAGE, p_this->psz_object_name );
1996         Usage( p_this, NULL );
1997     }
1998     else if( psz_help_name )
1999     {
2000         Usage( p_this, psz_help_name );
2001     }
2002
2003 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
2004     PauseConsole();
2005 #endif
2006 }
2007
2008 /*****************************************************************************
2009  * Usage: print module usage
2010  *****************************************************************************
2011  * Print a short inline help. Message interface is initialized at this stage.
2012  *****************************************************************************/
2013 static void Usage( vlc_t *p_this, char const *psz_module_name )
2014 {
2015 #define FORMAT_STRING "  %s --%s%s%s%s%s%s%s "
2016     /* short option ------'    |     | | | |  | |
2017      * option name ------------'     | | | |  | |
2018      * <bra -------------------------' | | |  | |
2019      * option type or "" --------------' | |  | |
2020      * ket> -----------------------------' |  | |
2021      * padding spaces ---------------------'  | |
2022      * comment -------------------------------' |
2023      * comment suffix --------------------------'
2024      *
2025      * The purpose of having bra and ket is that we might i18n them as well.
2026      */
2027 #define LINE_START 8
2028 #define PADDING_SPACES 25
2029     vlc_list_t *p_list;
2030     module_t *p_parser;
2031     module_config_t *p_item;
2032     char psz_spaces_text[PADDING_SPACES+LINE_START+1];
2033     char psz_spaces_longtext[LINE_START+3];
2034     char psz_format[sizeof(FORMAT_STRING)];
2035     char psz_buffer[10000];
2036     char psz_short[4];
2037     int i_index;
2038     int i_width = ConsoleWidth() - (PADDING_SPACES+LINE_START+1);
2039     vlc_bool_t b_advanced = config_GetInt( p_this, "advanced" );
2040     vlc_bool_t b_description;
2041
2042     memset( psz_spaces_text, ' ', PADDING_SPACES+LINE_START );
2043     psz_spaces_text[PADDING_SPACES+LINE_START] = '\0';
2044     memset( psz_spaces_longtext, ' ', LINE_START+2 );
2045     psz_spaces_longtext[LINE_START+2] = '\0';
2046
2047     strcpy( psz_format, FORMAT_STRING );
2048
2049     /* List all modules */
2050     p_list = vlc_list_find( p_this, VLC_OBJECT_MODULE, FIND_ANYWHERE );
2051
2052     /* Enumerate the config for each module */
2053     for( i_index = 0; i_index < p_list->i_count; i_index++ )
2054     {
2055         vlc_bool_t b_help_module;
2056
2057         p_parser = (module_t *)p_list->p_values[i_index].p_object ;
2058
2059         if( psz_module_name && strcmp( psz_module_name,
2060                                        p_parser->psz_object_name ) )
2061         {
2062             continue;
2063         }
2064
2065         /* Ignore modules without config options */
2066         if( !p_parser->i_config_items )
2067         {
2068             continue;
2069         }
2070
2071         /* Ignore modules with only advanced config options if requested */
2072         if( !b_advanced )
2073         {
2074             for( p_item = p_parser->p_config;
2075                  p_item->i_type != CONFIG_HINT_END;
2076                  p_item++ )
2077             {
2078                 if( (p_item->i_type & CONFIG_ITEM) &&
2079                     !p_item->b_advanced ) break;
2080             }
2081             if( p_item->i_type == CONFIG_HINT_END ) continue;
2082         }
2083
2084         /* Print name of module */
2085         if( strcmp( "main", p_parser->psz_object_name ) )
2086         fprintf( stdout, "\n %s\n", p_parser->psz_longname );
2087
2088         b_help_module = !strcmp( "help", p_parser->psz_object_name );
2089
2090         /* Print module options */
2091         for( p_item = p_parser->p_config;
2092              p_item->i_type != CONFIG_HINT_END;
2093              p_item++ )
2094         {
2095             char *psz_text, *psz_spaces = psz_spaces_text;
2096             char *psz_bra = NULL, *psz_type = NULL, *psz_ket = NULL;
2097             char *psz_suf = "", *psz_prefix = NULL;
2098             signed int i;
2099
2100             /* Skip deprecated options */
2101             if( p_item->psz_current )
2102             {
2103                 continue;
2104             }
2105             /* Skip advanced options if requested */
2106             if( p_item->b_advanced && !b_advanced )
2107             {
2108                 continue;
2109             }
2110
2111             switch( p_item->i_type )
2112             {
2113             case CONFIG_HINT_CATEGORY:
2114             case CONFIG_HINT_USAGE:
2115                 if( !strcmp( "main", p_parser->psz_object_name ) )
2116                 fprintf( stdout, "\n %s\n", p_item->psz_text );
2117                 break;
2118
2119             case CONFIG_ITEM_STRING:
2120             case CONFIG_ITEM_FILE:
2121             case CONFIG_ITEM_DIRECTORY:
2122             case CONFIG_ITEM_MODULE: /* We could also have "=<" here */
2123             case CONFIG_ITEM_MODULE_CAT:
2124             case CONFIG_ITEM_MODULE_LIST:
2125             case CONFIG_ITEM_MODULE_LIST_CAT:
2126                 psz_bra = " <"; psz_type = _("string"); psz_ket = ">";
2127
2128                 if( p_item->ppsz_list )
2129                 {
2130                     psz_bra = " {";
2131                     psz_type = psz_buffer;
2132                     psz_type[0] = '\0';
2133                     for( i = 0; p_item->ppsz_list[i]; i++ )
2134                     {
2135                         if( i ) strcat( psz_type, "," );
2136                         strcat( psz_type, p_item->ppsz_list[i] );
2137                     }
2138                     psz_ket = "}";
2139                 }
2140                 break;
2141             case CONFIG_ITEM_INTEGER:
2142             case CONFIG_ITEM_KEY: /* FIXME: do something a bit more clever */
2143                 psz_bra = " <"; psz_type = _("integer"); psz_ket = ">";
2144
2145                 if( p_item->i_list )
2146                 {
2147                     psz_bra = " {";
2148                     psz_type = psz_buffer;
2149                     psz_type[0] = '\0';
2150                     for( i = 0; p_item->ppsz_list_text[i]; i++ )
2151                     {
2152                         if( i ) strcat( psz_type, ", " );
2153                         sprintf( psz_type + strlen(psz_type), "%i (%s)",
2154                                  p_item->pi_list[i],
2155                                  p_item->ppsz_list_text[i] );
2156                     }
2157                     psz_ket = "}";
2158                 }
2159                 break;
2160             case CONFIG_ITEM_FLOAT:
2161                 psz_bra = " <"; psz_type = _("float"); psz_ket = ">";
2162                 break;
2163             case CONFIG_ITEM_BOOL:
2164                 psz_bra = ""; psz_type = ""; psz_ket = "";
2165                 if( !b_help_module )
2166                 {
2167                     psz_suf = p_item->i_value ? _(" (default enabled)") :
2168                                                 _(" (default disabled)");
2169                 }
2170                 break;
2171             }
2172
2173             if( !psz_type )
2174             {
2175                 continue;
2176             }
2177
2178             /* Add short option if any */
2179             if( p_item->i_short )
2180             {
2181                 sprintf( psz_short, "-%c,", p_item->i_short );
2182             }
2183             else
2184             {
2185                 strcpy( psz_short, "   " );
2186             }
2187
2188             i = PADDING_SPACES - strlen( p_item->psz_name )
2189                  - strlen( psz_bra ) - strlen( psz_type )
2190                  - strlen( psz_ket ) - 1;
2191
2192             if( p_item->i_type == CONFIG_ITEM_BOOL && !b_help_module )
2193             {
2194                 psz_prefix =  ", --no-";
2195                 i -= strlen( p_item->psz_name ) + strlen( psz_prefix );
2196             }
2197
2198             if( i < 0 )
2199             {
2200                 psz_spaces[0] = '\n';
2201                 i = 0;
2202             }
2203             else
2204             {
2205                 psz_spaces[i] = '\0';
2206             }
2207
2208             if( p_item->i_type == CONFIG_ITEM_BOOL && !b_help_module )
2209             {
2210                 fprintf( stdout, psz_format, psz_short, p_item->psz_name,
2211                          psz_prefix, p_item->psz_name, psz_bra, psz_type,
2212                          psz_ket, psz_spaces );
2213             }
2214             else
2215             {
2216                 fprintf( stdout, psz_format, psz_short, p_item->psz_name,
2217                          "", "", psz_bra, psz_type, psz_ket, psz_spaces );
2218             }
2219
2220             psz_spaces[i] = ' ';
2221
2222             /* We wrap the rest of the output */
2223             sprintf( psz_buffer, "%s%s", p_item->psz_text, psz_suf );
2224             b_description = config_GetInt( p_this, "help-verbose" );
2225
2226  description:
2227             psz_text = psz_buffer;
2228             while( *psz_text )
2229             {
2230                 char *psz_parser, *psz_word;
2231                 size_t i_end = strlen( psz_text );
2232
2233                 /* If the remaining text fits in a line, print it. */
2234                 if( i_end <= (size_t)i_width )
2235                 {
2236                     fprintf( stdout, "%s\n", psz_text );
2237                     break;
2238                 }
2239
2240                 /* Otherwise, eat as many words as possible */
2241                 psz_parser = psz_text;
2242                 do
2243                 {
2244                     psz_word = psz_parser;
2245                     psz_parser = strchr( psz_word, ' ' );
2246                     /* If no space was found, we reached the end of the text
2247                      * block; otherwise, we skip the space we just found. */
2248                     psz_parser = psz_parser ? psz_parser + 1
2249                                             : psz_text + i_end;
2250
2251                 } while( psz_parser - psz_text <= i_width );
2252
2253                 /* We cut a word in one of these cases:
2254                  *  - it's the only word in the line and it's too long.
2255                  *  - we used less than 80% of the width and the word we are
2256                  *    going to wrap is longer than 40% of the width, and even
2257                  *    if the word would have fit in the next line. */
2258                 if( psz_word == psz_text
2259                      || ( psz_word - psz_text < 80 * i_width / 100
2260                            && psz_parser - psz_word > 40 * i_width / 100 ) )
2261                 {
2262                     char c = psz_text[i_width];
2263                     psz_text[i_width] = '\0';
2264                     fprintf( stdout, "%s\n%s", psz_text, psz_spaces );
2265                     psz_text += i_width;
2266                     psz_text[0] = c;
2267                 }
2268                 else
2269                 {
2270                     psz_word[-1] = '\0';
2271                     fprintf( stdout, "%s\n%s", psz_text, psz_spaces );
2272                     psz_text = psz_word;
2273                 }
2274             }
2275
2276             if( b_description && p_item->psz_longtext )
2277             {
2278                 sprintf( psz_buffer, "%s%s", p_item->psz_longtext, psz_suf );
2279                 b_description = VLC_FALSE;
2280                 psz_spaces = psz_spaces_longtext;
2281                 fprintf( stdout, "%s", psz_spaces );
2282                 goto description;
2283             }
2284         }
2285     }
2286
2287     /* Release the module list */
2288     vlc_list_release( p_list );
2289 }
2290
2291 /*****************************************************************************
2292  * ListModules: list the available modules with their description
2293  *****************************************************************************
2294  * Print a list of all available modules (builtins and plugins) and a short
2295  * description for each one.
2296  *****************************************************************************/
2297 static void ListModules( vlc_t *p_this )
2298 {
2299     vlc_list_t *p_list;
2300     module_t *p_parser;
2301     char psz_spaces[22];
2302     int i_index;
2303
2304     memset( psz_spaces, ' ', 22 );
2305
2306 #ifdef WIN32
2307     ShowConsole();
2308 #endif
2309
2310     /* List all modules */
2311     p_list = vlc_list_find( p_this, VLC_OBJECT_MODULE, FIND_ANYWHERE );
2312
2313     /* Enumerate each module */
2314     for( i_index = 0; i_index < p_list->i_count; i_index++ )
2315     {
2316         int i;
2317
2318         p_parser = (module_t *)p_list->p_values[i_index].p_object ;
2319
2320         /* Nasty hack, but right now I'm too tired to think about a nice
2321          * solution */
2322         i = 22 - strlen( p_parser->psz_object_name ) - 1;
2323         if( i < 0 ) i = 0;
2324         psz_spaces[i] = 0;
2325
2326         fprintf( stdout, "  %s%s %s\n", p_parser->psz_object_name,
2327                          psz_spaces, p_parser->psz_longname );
2328
2329         psz_spaces[i] = ' ';
2330     }
2331
2332     vlc_list_release( p_list );
2333
2334 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
2335     PauseConsole();
2336 #endif
2337 }
2338
2339 /*****************************************************************************
2340  * Version: print complete program version
2341  *****************************************************************************
2342  * Print complete program version and build number.
2343  *****************************************************************************/
2344 static void Version( void )
2345 {
2346 #ifdef WIN32
2347     ShowConsole();
2348 #endif
2349
2350     fprintf( stdout, VERSION_MESSAGE "\n" );
2351     fprintf( stdout,
2352       _("This program comes with NO WARRANTY, to the extent permitted by "
2353         "law.\nYou may redistribute it under the terms of the GNU General "
2354         "Public License;\nsee the file named COPYING for details.\n"
2355         "Written by the VideoLAN team; see the AUTHORS file.\n") );
2356
2357 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
2358     PauseConsole();
2359 #endif
2360 }
2361
2362 /*****************************************************************************
2363  * ShowConsole: On Win32, create an output console for debug messages
2364  *****************************************************************************
2365  * This function is useful only on Win32.
2366  *****************************************************************************/
2367 #ifdef WIN32 /*  */
2368 static void ShowConsole( void )
2369 {
2370 #   ifndef UNDER_CE
2371
2372     if( getenv( "PWD" ) && getenv( "PS1" ) ) return; /* cygwin shell */
2373
2374     AllocConsole();
2375     freopen( "CONOUT$", "w", stdout );
2376     freopen( "CONOUT$", "w", stderr );
2377     freopen( "CONIN$", "r", stdin );
2378
2379 #   endif
2380 }
2381 #endif
2382
2383 /*****************************************************************************
2384  * PauseConsole: On Win32, wait for a key press before closing the console
2385  *****************************************************************************
2386  * This function is useful only on Win32.
2387  *****************************************************************************/
2388 #ifdef WIN32 /*  */
2389 static void PauseConsole( void )
2390 {
2391 #   ifndef UNDER_CE
2392
2393     if( getenv( "PWD" ) && getenv( "PS1" ) ) return; /* cygwin shell */
2394     fprintf( stdout, _("\nPress the RETURN key to continue...\n") );
2395     getchar();
2396
2397 #   endif
2398 }
2399 #endif
2400
2401 /*****************************************************************************
2402  * ConsoleWidth: Return the console width in characters
2403  *****************************************************************************
2404  * We use the stty shell command to get the console width; if this fails or
2405  * if the width is less than 80, we default to 80.
2406  *****************************************************************************/
2407 static int ConsoleWidth( void )
2408 {
2409     int i_width = 80;
2410
2411 #ifndef WIN32
2412     char buf[20], *psz_parser;
2413     FILE *file;
2414     int i_ret;
2415
2416     file = popen( "stty size 2>/dev/null", "r" );
2417     if( file )
2418     {
2419         i_ret = fread( buf, 1, 20, file );
2420         if( i_ret > 0 )
2421         {
2422             buf[19] = '\0';
2423             psz_parser = strchr( buf, ' ' );
2424             if( psz_parser )
2425             {
2426                 i_ret = atoi( psz_parser + 1 );
2427                 if( i_ret >= 80 )
2428                 {
2429                     i_width = i_ret;
2430                 }
2431             }
2432         }
2433
2434         pclose( file );
2435     }
2436 #endif
2437
2438     return i_width;
2439 }
2440
2441 static int VerboseCallback( vlc_object_t *p_this, const char *psz_variable,
2442                      vlc_value_t old_val, vlc_value_t new_val, void *param)
2443 {
2444     vlc_t *p_vlc = (vlc_t *)p_this;
2445
2446     if( new_val.i_int >= -1 )
2447     {
2448         p_vlc->p_libvlc->i_verbose = __MIN( new_val.i_int, 2 );
2449     }
2450     return VLC_SUCCESS;
2451 }
2452
2453 /*****************************************************************************
2454  * InitDeviceValues: initialize device values
2455  *****************************************************************************
2456  * This function inits the dvd, vcd and cd-audio values
2457  *****************************************************************************/
2458 static void InitDeviceValues( vlc_t *p_vlc )
2459 {
2460 #ifdef HAVE_HAL
2461     LibHalContext * ctx;
2462     int i, i_devices;
2463     char **devices;
2464     char *block_dev;
2465     dbus_bool_t b_dvd;
2466
2467     if( ( ctx = hal_initialize( NULL, FALSE ) ) )
2468     {
2469         if( ( devices = hal_get_all_devices( ctx, &i_devices ) ) )
2470         {
2471             for( i = 0; i < i_devices; i++ )
2472             {
2473                 if( !hal_device_property_exists( ctx, devices[ i ],
2474                                                 "storage.cdrom.dvd" ) )
2475                 {
2476                     continue;
2477                 }
2478
2479                 b_dvd = hal_device_get_property_bool( ctx, devices[ i ],
2480                                                       "storage.cdrom.dvd" );
2481                 block_dev = hal_device_get_property_string( ctx, devices[ i ],
2482                                                             "block.device" );
2483
2484                 if( b_dvd )
2485                 {
2486                     config_PutPsz( p_vlc, "dvd", block_dev );
2487                 }
2488
2489                 config_PutPsz( p_vlc, "vcd", block_dev );
2490                 config_PutPsz( p_vlc, "cd-audio", block_dev );
2491
2492                 hal_free_string( block_dev );
2493             }
2494             hal_free_string_array( devices );
2495         }
2496
2497         hal_shutdown( ctx );
2498     }
2499 #endif
2500 }
2501
2502 /*****************************************************************************
2503  * FromLocale: converts a locale string to UTF-8
2504  *****************************************************************************/
2505 char *FromLocale( const char *locale )
2506 {
2507     if( locale == NULL )
2508         return NULL;
2509
2510     if( libvlc.from_locale != (vlc_iconv_t)(-1) )
2511     {
2512         char *iptr = (char *)locale, *output, *optr;
2513         size_t inb, outb;
2514
2515         /*
2516          * We are not allowed to modify the locale pointer, even if we cast it
2517          * to non-const.
2518          */
2519         inb = strlen( locale );
2520         outb = inb * 6 + 1;
2521
2522         /* FIXME: I'm not sure about the value for the multiplication
2523          * (for western people, multiplication by 3 (Latin9) is sufficient) */
2524         optr = output = calloc( outb , 1);
2525
2526         vlc_mutex_lock( &libvlc.from_locale_lock );
2527         vlc_iconv( libvlc.from_locale, NULL, NULL, NULL, NULL );
2528
2529         while( vlc_iconv( libvlc.from_locale, &iptr, &inb, &optr, &outb )
2530                                                                == (size_t)-1 )
2531         {
2532             *optr++ = '?';
2533             *iptr++;
2534             vlc_iconv( libvlc.from_locale, NULL, NULL, NULL, NULL );
2535         }
2536         vlc_mutex_unlock( &libvlc.from_locale_lock );
2537
2538         return realloc( output, strlen( output ) + 1 );
2539     }
2540     return (char *)locale;
2541 }
2542
2543 /*****************************************************************************
2544  * ToLocale: converts an UTF-8 string to locale
2545  *****************************************************************************/
2546 char *ToLocale( const char *utf8 )
2547 {
2548     if( utf8 == NULL )
2549         return NULL;
2550
2551     if( libvlc.to_locale != (vlc_iconv_t)(-1) )
2552     {
2553         char *iptr = (char *)utf8, *output, *optr;
2554         size_t inb, outb;
2555
2556         /*
2557          * We are not allowed to modify the locale pointer, even if we cast it
2558          * to non-const.
2559          */
2560         inb = strlen( utf8 );
2561         /* FIXME: I'm not sure about the value for the multiplication
2562          * (for western people, multiplication is not needed) */
2563         outb = inb * 2 + 1;
2564
2565         optr = output = calloc( outb, 1 );
2566         vlc_mutex_lock( &libvlc.to_locale_lock );
2567         vlc_iconv( libvlc.to_locale, NULL, NULL, NULL, NULL );
2568
2569         while( vlc_iconv( libvlc.to_locale, &iptr, &inb, &optr, &outb )
2570                                                                == (size_t)-1 )
2571         {
2572             *optr++ = '?'; /* should not happen, and yes, it sucks */
2573             *iptr++;
2574             vlc_iconv( libvlc.to_locale, NULL, NULL, NULL, NULL );
2575         }
2576         vlc_mutex_unlock( &libvlc.to_locale_lock );
2577
2578         return realloc( output, strlen( output ) + 1 );
2579     }
2580     return (char *)utf8;
2581 }
2582
2583 void LocaleFree( const char *str )
2584 {
2585     if( ( str != NULL ) && ( libvlc.to_locale != (vlc_iconv_t)(-1) ) )
2586         free( (char *)str );
2587 }