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