]> git.sesse.net Git - vlc/blob - src/libvlc.c
9ec04a6b5590d8d63197d36d849e087009e0ed62
[vlc] / src / libvlc.c
1 /*****************************************************************************
2  * libvlc.c: libvlc instances creation and deletion, interfaces handling
3  *****************************************************************************
4  * Copyright (C) 1998-2008 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Vincent Seguin <seguin@via.ecp.fr>
8  *          Samuel Hocevar <sam@zoy.org>
9  *          Gildas Bazin <gbazin@videolan.org>
10  *          Derk-Jan Hartman <hartman at videolan dot org>
11  *          RĂ©mi Denis-Courmont <rem # videolan : org>
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 2 of the License, or
16  * (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
26  *****************************************************************************/
27
28 /** \file
29  * This file contains functions to create and destroy libvlc instances
30  */
31
32 /*****************************************************************************
33  * Preamble
34  *****************************************************************************/
35 #ifdef HAVE_CONFIG_H
36 # include "config.h"
37 #endif
38
39 #include <vlc_common.h>
40 #include "control/libvlc_internal.h"
41 #include <vlc_input.h>
42
43 #include "modules/modules.h"
44 #include "config/configuration.h"
45
46 #include <stdio.h>                                              /* sprintf() */
47 #include <string.h>
48 #include <stdlib.h>                                                /* free() */
49
50 #ifndef WIN32
51 #   include <netinet/in.h>                            /* BSD: struct in_addr */
52 #endif
53
54 #ifdef HAVE_UNISTD_H
55 #   include <unistd.h>
56 #elif defined( WIN32 ) && !defined( UNDER_CE )
57 #   include <io.h>
58 #endif
59
60 #include "config/vlc_getopt.h"
61
62 #ifdef HAVE_LOCALE_H
63 #   include <locale.h>
64 #endif
65
66 #ifdef HAVE_DBUS
67 /* used for one-instance mode */
68 #   include <dbus/dbus.h>
69 #endif
70
71
72 #include <vlc_media_library.h>
73 #include <vlc_playlist.h>
74 #include <vlc_interface.h>
75
76 #include <vlc_aout.h>
77 #include "audio_output/aout_internal.h"
78
79 #include <vlc_charset.h>
80 #include <vlc_fs.h>
81 #include <vlc_cpu.h>
82 #include <vlc_url.h>
83
84 #include "libvlc.h"
85
86 #include "playlist/playlist_internal.h"
87
88 #include <vlc_vlm.h>
89
90 #ifdef __APPLE__
91 # include <libkern/OSAtomic.h>
92 #endif
93
94 #include <assert.h>
95
96 /*****************************************************************************
97  * The evil global variables. We handle them with care, don't worry.
98  *****************************************************************************/
99 static unsigned          i_instances = 0;
100
101 #ifndef WIN32
102 static bool b_daemon = false;
103 #endif
104
105 #undef vlc_gc_init
106 #undef vlc_hold
107 #undef vlc_release
108
109 /**
110  * Atomically set the reference count to 1.
111  * @param p_gc reference counted object
112  * @param pf_destruct destruction calback
113  * @return p_gc.
114  */
115 void *vlc_gc_init (gc_object_t *p_gc, void (*pf_destruct) (gc_object_t *))
116 {
117     /* There is no point in using the GC if there is no destructor... */
118     assert (pf_destruct);
119     p_gc->pf_destructor = pf_destruct;
120
121     p_gc->refs = 1;
122 #if defined (__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4)
123     __sync_synchronize ();
124 #elif defined (WIN32) && defined (__GNUC__)
125 #elif defined(__APPLE__)
126     OSMemoryBarrier ();
127 #else
128     /* Nobody else can possibly lock the spin - it's there as a barrier */
129     vlc_spin_init (&p_gc->spin);
130     vlc_spin_lock (&p_gc->spin);
131     vlc_spin_unlock (&p_gc->spin);
132 #endif
133     return p_gc;
134 }
135
136 /**
137  * Atomically increment the reference count.
138  * @param p_gc reference counted object
139  * @return p_gc.
140  */
141 void *vlc_hold (gc_object_t * p_gc)
142 {
143     uintptr_t refs;
144     assert( p_gc );
145     assert ((((uintptr_t)&p_gc->refs) & (sizeof (void *) - 1)) == 0); /* alignment */
146
147 #if defined (__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4)
148     refs = __sync_add_and_fetch (&p_gc->refs, 1);
149 #elif defined (WIN64)
150     refs = InterlockedIncrement64 (&p_gc->refs);
151 #elif defined (WIN32)
152     refs = InterlockedIncrement (&p_gc->refs);
153 #elif defined(__APPLE__)
154     refs = OSAtomicIncrement32Barrier((int*)&p_gc->refs);
155 #else
156     vlc_spin_lock (&p_gc->spin);
157     refs = ++p_gc->refs;
158     vlc_spin_unlock (&p_gc->spin);
159 #endif
160     assert (refs != 1); /* there had to be a reference already */
161     return p_gc;
162 }
163
164 /**
165  * Atomically decrement the reference count and, if it reaches zero, destroy.
166  * @param p_gc reference counted object.
167  */
168 void vlc_release (gc_object_t *p_gc)
169 {
170     unsigned refs;
171
172     assert( p_gc );
173     assert ((((uintptr_t)&p_gc->refs) & (sizeof (void *) - 1)) == 0); /* alignment */
174
175 #if defined (__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4)
176     refs = __sync_sub_and_fetch (&p_gc->refs, 1);
177 #elif defined (WIN64)
178     refs = InterlockedDecrement64 (&p_gc->refs);
179 #elif defined (WIN32)
180     refs = InterlockedDecrement (&p_gc->refs);
181 #elif defined(__APPLE__)
182     refs = OSAtomicDecrement32Barrier((int*)&p_gc->refs);
183 #else
184     vlc_spin_lock (&p_gc->spin);
185     refs = --p_gc->refs;
186     vlc_spin_unlock (&p_gc->spin);
187 #endif
188
189     assert (refs != (uintptr_t)(-1)); /* reference underflow?! */
190     if (refs == 0)
191     {
192 #if defined (__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4)
193 #elif defined (WIN32) && defined (__GNUC__)
194 #elif defined(__APPLE__)
195 #else
196         vlc_spin_destroy (&p_gc->spin);
197 #endif
198         p_gc->pf_destructor (p_gc);
199     }
200 }
201
202 /*****************************************************************************
203  * Local prototypes
204  *****************************************************************************/
205 #if defined( ENABLE_NLS ) && (defined (__APPLE__) || defined (WIN32)) && \
206     ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
207 static void SetLanguage   ( char const * );
208 #endif
209 static void GetFilenames  ( libvlc_int_t *, unsigned, const char *const [] );
210 static void Help          ( libvlc_int_t *, char const *psz_help_name );
211 static void Usage         ( libvlc_int_t *, char const *psz_search );
212 static void ListModules   ( libvlc_int_t *, bool );
213 static void Version       ( void );
214
215 #ifdef WIN32
216 static void ShowConsole   ( bool );
217 static void PauseConsole  ( void );
218 #endif
219 static int  ConsoleWidth  ( void );
220
221 static vlc_mutex_t global_lock = VLC_STATIC_MUTEX;
222 extern const char psz_vlc_changeset[];
223
224 /**
225  * Allocate a libvlc instance, initialize global data if needed
226  * It also initializes the threading system
227  */
228 libvlc_int_t * libvlc_InternalCreate( void )
229 {
230     libvlc_int_t *p_libvlc;
231     libvlc_priv_t *priv;
232     char *psz_env = NULL;
233
234     /* Now that the thread system is initialized, we don't have much, but
235      * at least we have variables */
236     vlc_mutex_lock( &global_lock );
237     if( i_instances == 0 )
238     {
239         /* Guess what CPU we have */
240         cpu_flags = CPUCapabilities();
241         /* The module bank will be initialized later */
242     }
243
244     /* Allocate a libvlc instance object */
245     p_libvlc = vlc_custom_create( (vlc_object_t *)NULL, sizeof (*priv),
246                                   VLC_OBJECT_GENERIC, "libvlc" );
247     if( p_libvlc != NULL )
248         i_instances++;
249     vlc_mutex_unlock( &global_lock );
250
251     if( p_libvlc == NULL )
252         return NULL;
253
254     priv = libvlc_priv (p_libvlc);
255     priv->p_playlist = NULL;
256     priv->p_ml = NULL;
257     priv->p_dialog_provider = NULL;
258     priv->p_vlm = NULL;
259
260     /* Initialize message queue */
261     priv->msg_bank = msg_Create ();
262     if (unlikely(priv->msg_bank == NULL))
263         goto error;
264
265     /* Find verbosity from VLC_VERBOSE environment variable */
266     psz_env = getenv( "VLC_VERBOSE" );
267     if( psz_env != NULL )
268         priv->i_verbose = atoi( psz_env );
269     else
270         priv->i_verbose = 3;
271 #if defined( HAVE_ISATTY ) && !defined( WIN32 )
272     priv->b_color = isatty( 2 ); /* 2 is for stderr */
273 #else
274     priv->b_color = false;
275 #endif
276
277     /* Initialize mutexes */
278     vlc_mutex_init( &priv->timer_lock );
279     vlc_ExitInit( &priv->exit );
280
281     return p_libvlc;
282 error:
283     vlc_object_release (p_libvlc);
284     return NULL;
285 }
286
287 /**
288  * Initialize a libvlc instance
289  * This function initializes a previously allocated libvlc instance:
290  *  - CPU detection
291  *  - gettext initialization
292  *  - message queue, module bank and playlist initialization
293  *  - configuration and commandline parsing
294  */
295 int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
296                          const char *ppsz_argv[] )
297 {
298     libvlc_priv_t *priv = libvlc_priv (p_libvlc);
299     char *       p_tmp = NULL;
300     char *       psz_modules = NULL;
301     char *       psz_parser = NULL;
302     char *       psz_control = NULL;
303     bool   b_exit = false;
304     int          i_ret = VLC_EEXIT;
305     playlist_t  *p_playlist = NULL;
306     char        *psz_val;
307 #if defined( ENABLE_NLS ) \
308      && ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
309 # if defined (WIN32) || defined (__APPLE__)
310     char *       psz_language;
311 #endif
312 #endif
313
314     /* System specific initialization code */
315     system_Init( p_libvlc, &i_argc, ppsz_argv );
316
317     /*
318      * Support for gettext
319      */
320     vlc_bindtextdomain (PACKAGE_NAME);
321
322     /* Initialize the module bank and load the configuration of the
323      * main module. We need to do this at this stage to be able to display
324      * a short help if required by the user. (short help == main module
325      * options) */
326     module_InitBank( p_libvlc );
327
328     if( config_LoadCmdLine( p_libvlc, i_argc, ppsz_argv, NULL ) )
329     {
330         module_EndBank( p_libvlc, false );
331         return VLC_EGENERIC;
332     }
333
334     priv->i_verbose = var_InheritInteger( p_libvlc, "verbose" );
335     /* Announce who we are - Do it only for first instance ? */
336     msg_Dbg( p_libvlc, "VLC media player - %s", VERSION_MESSAGE );
337     msg_Dbg( p_libvlc, "%s", COPYRIGHT_MESSAGE );
338     msg_Dbg( p_libvlc, "revision %s", psz_vlc_changeset );
339     msg_Dbg( p_libvlc, "configured with %s", CONFIGURE_LINE );
340     /*xgettext: Translate "C" to the language code: "fr", "en_GB", "nl", "ru"... */
341     msg_Dbg( p_libvlc, "translation test: code is \"%s\"", _("C") );
342
343     /* Check for short help option */
344     if( var_InheritBool( p_libvlc, "help" ) )
345     {
346         Help( p_libvlc, "help" );
347         b_exit = true;
348         i_ret = VLC_EEXITSUCCESS;
349     }
350     /* Check for version option */
351     else if( var_InheritBool( p_libvlc, "version" ) )
352     {
353         Version();
354         b_exit = true;
355         i_ret = VLC_EEXITSUCCESS;
356     }
357
358     /* Check for daemon mode */
359 #ifndef WIN32
360     if( var_InheritBool( p_libvlc, "daemon" ) )
361     {
362 #ifdef HAVE_DAEMON
363         char *psz_pidfile = NULL;
364
365         if( daemon( 1, 0) != 0 )
366         {
367             msg_Err( p_libvlc, "Unable to fork vlc to daemon mode" );
368             b_exit = true;
369         }
370         b_daemon = true;
371
372         /* lets check if we need to write the pidfile */
373         psz_pidfile = var_CreateGetNonEmptyString( p_libvlc, "pidfile" );
374         if( psz_pidfile != NULL )
375         {
376             FILE *pidfile;
377             pid_t i_pid = getpid ();
378             msg_Dbg( p_libvlc, "PID is %d, writing it to %s",
379                                i_pid, psz_pidfile );
380             pidfile = vlc_fopen( psz_pidfile,"w" );
381             if( pidfile != NULL )
382             {
383                 utf8_fprintf( pidfile, "%d", (int)i_pid );
384                 fclose( pidfile );
385             }
386             else
387             {
388                 msg_Err( p_libvlc, "cannot open pid file for writing: %s (%m)",
389                          psz_pidfile );
390             }
391         }
392         free( psz_pidfile );
393
394 #else
395         pid_t i_pid;
396
397         if( ( i_pid = fork() ) < 0 )
398         {
399             msg_Err( p_libvlc, "unable to fork vlc to daemon mode" );
400             b_exit = true;
401         }
402         else if( i_pid )
403         {
404             /* This is the parent, exit right now */
405             msg_Dbg( p_libvlc, "closing parent process" );
406             b_exit = true;
407             i_ret = VLC_EEXITSUCCESS;
408         }
409         else
410         {
411             /* We are the child */
412             msg_Dbg( p_libvlc, "daemon spawned" );
413             close( STDIN_FILENO );
414             close( STDOUT_FILENO );
415             close( STDERR_FILENO );
416
417             b_daemon = true;
418         }
419 #endif
420     }
421 #endif
422
423     if( b_exit )
424     {
425         module_EndBank( p_libvlc, false );
426         return i_ret;
427     }
428
429     /* Check for translation config option */
430 #if defined( ENABLE_NLS ) \
431      && ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
432 # if defined (WIN32) || defined (__APPLE__)
433     if( !var_InheritBool( p_libvlc, "ignore-config" ) )
434         config_LoadConfigFile( p_libvlc, "main" );
435     priv->i_verbose = var_InheritInteger( p_libvlc, "verbose" );
436
437     /* Check if the user specified a custom language */
438     psz_language = var_CreateGetNonEmptyString( p_libvlc, "language" );
439     if( psz_language && strcmp( psz_language, "auto" ) )
440     {
441         /* Reset the default domain */
442         SetLanguage( psz_language );
443
444         /* Translate "C" to the language code: "fr", "en_GB", "nl", "ru"... */
445         msg_Dbg( p_libvlc, "translation test: code is \"%s\"", _("C") );
446     }
447     free( psz_language );
448 # endif
449 #endif
450
451     /*
452      * Load the builtins and plugins into the module_bank.
453      * We have to do it before config_Load*() because this also gets the
454      * list of configuration options exported by each module and loads their
455      * default values.
456      */
457     module_LoadPlugins( p_libvlc );
458     if( p_libvlc->b_die )
459     {
460         b_exit = true;
461     }
462
463     size_t module_count;
464     module_t **list = module_list_get( &module_count );
465     module_list_free( list );
466     msg_Dbg( p_libvlc, "module bank initialized (%zu modules)", module_count );
467
468     /* Check for help on modules */
469     if( (p_tmp = var_InheritString( p_libvlc, "module" )) )
470     {
471         Help( p_libvlc, p_tmp );
472         free( p_tmp );
473         b_exit = true;
474         i_ret = VLC_EEXITSUCCESS;
475     }
476     /* Check for full help option */
477     else if( var_InheritBool( p_libvlc, "full-help" ) )
478     {
479         var_Create( p_libvlc, "advanced", VLC_VAR_BOOL );
480         var_SetBool( p_libvlc, "advanced", true );
481         var_Create( p_libvlc, "help-verbose", VLC_VAR_BOOL );
482         var_SetBool( p_libvlc, "help-verbose", true );
483         Help( p_libvlc, "full-help" );
484         b_exit = true;
485         i_ret = VLC_EEXITSUCCESS;
486     }
487     /* Check for long help option */
488     else if( var_InheritBool( p_libvlc, "longhelp" ) )
489     {
490         Help( p_libvlc, "longhelp" );
491         b_exit = true;
492         i_ret = VLC_EEXITSUCCESS;
493     }
494     /* Check for module list option */
495     else if( var_InheritBool( p_libvlc, "list" ) )
496     {
497         ListModules( p_libvlc, false );
498         b_exit = true;
499         i_ret = VLC_EEXITSUCCESS;
500     }
501     else if( var_InheritBool( p_libvlc, "list-verbose" ) )
502     {
503         ListModules( p_libvlc, true );
504         b_exit = true;
505         i_ret = VLC_EEXITSUCCESS;
506     }
507
508     /* Check for config file options */
509     if( !var_InheritBool( p_libvlc, "ignore-config" ) )
510     {
511         if( var_InheritBool( p_libvlc, "reset-config" ) )
512         {
513             config_ResetAll( p_libvlc );
514             config_SaveConfigFile( p_libvlc, NULL );
515         }
516     }
517
518     if( module_count <= 1)
519     {
520         msg_Err( p_libvlc, "No modules were found, refusing to start. Check "
521                 "that you properly gave a module path with --plugin-path.");
522         b_exit = true;
523         i_ret = VLC_ENOITEM;
524     }
525
526     if( b_exit )
527     {
528         module_EndBank( p_libvlc, true );
529         return i_ret;
530     }
531
532     /*
533      * Override default configuration with config file settings
534      */
535     if( !var_InheritBool( p_libvlc, "ignore-config" ) )
536         config_LoadConfigFile( p_libvlc, NULL );
537
538     /*
539      * Override configuration with command line settings
540      */
541     int vlc_optind;
542     if( config_LoadCmdLine( p_libvlc, i_argc, ppsz_argv, &vlc_optind ) )
543     {
544 #ifdef WIN32
545         ShowConsole( false );
546         /* Pause the console because it's destroyed when we exit */
547         fprintf( stderr, "The command line options couldn't be loaded, check "
548                  "that they are valid.\n" );
549         PauseConsole();
550 #endif
551         module_EndBank( p_libvlc, true );
552         return VLC_EGENERIC;
553     }
554     priv->i_verbose = var_InheritInteger( p_libvlc, "verbose" );
555
556 /* FIXME: could be replaced by using Unix sockets */
557 #ifdef HAVE_DBUS
558     dbus_threads_init_default();
559
560     if( var_InheritBool( p_libvlc, "one-instance" )
561     || ( var_InheritBool( p_libvlc, "one-instance-when-started-from-file" )
562       && var_InheritBool( p_libvlc, "started-from-file" ) ) )
563     {
564         /* Initialise D-Bus interface, check for other instances */
565         DBusConnection  *p_conn = NULL;
566         DBusError       dbus_error;
567
568         dbus_error_init( &dbus_error );
569
570         /* connect to the session bus */
571         p_conn = dbus_bus_get( DBUS_BUS_SESSION, &dbus_error );
572         if( !p_conn )
573         {
574             msg_Err( p_libvlc, "Failed to connect to D-Bus session daemon: %s",
575                     dbus_error.message );
576             dbus_error_free( &dbus_error );
577         }
578         else
579         {
580             /* check if VLC is available on the bus
581              * if not: D-Bus control is not enabled on the other
582              * instance and we can't pass MRLs to it */
583             DBusMessage *p_test_msg = NULL;
584             DBusMessage *p_test_reply = NULL;
585             p_test_msg =  dbus_message_new_method_call(
586                     "org.mpris.vlc", "/",
587                     "org.freedesktop.MediaPlayer", "Identity" );
588             /* block until a reply arrives */
589             p_test_reply = dbus_connection_send_with_reply_and_block(
590                     p_conn, p_test_msg, -1, &dbus_error );
591             dbus_message_unref( p_test_msg );
592             if( p_test_reply == NULL )
593             {
594                 dbus_error_free( &dbus_error );
595                 msg_Dbg( p_libvlc, "No Media Player is running. "
596                         "Continuing normally." );
597             }
598             else
599             {
600                 int i_input;
601                 DBusMessage* p_dbus_msg = NULL;
602                 DBusMessageIter dbus_args;
603                 DBusPendingCall* p_dbus_pending = NULL;
604                 dbus_bool_t b_play;
605
606                 dbus_message_unref( p_test_reply );
607                 msg_Warn( p_libvlc, "Another Media Player is running. Exiting");
608
609                 for( i_input = vlc_optind; i_input < i_argc;i_input++ )
610                 {
611                     msg_Dbg( p_libvlc, "Adds %s to the running Media Player",
612                             ppsz_argv[i_input] );
613
614                     p_dbus_msg = dbus_message_new_method_call(
615                             "org.mpris.vlc", "/TrackList",
616                             "org.freedesktop.MediaPlayer", "AddTrack" );
617
618                     if ( NULL == p_dbus_msg )
619                     {
620                         msg_Err( p_libvlc, "D-Bus problem" );
621                         system_End( p_libvlc );
622                         exit( 1 );
623                     }
624
625                     /* append MRLs */
626                     dbus_message_iter_init_append( p_dbus_msg, &dbus_args );
627                     if ( !dbus_message_iter_append_basic( &dbus_args,
628                                 DBUS_TYPE_STRING, &ppsz_argv[i_input] ) )
629                     {
630                         dbus_message_unref( p_dbus_msg );
631                         system_End( p_libvlc );
632                         exit( 1 );
633                     }
634                     b_play = TRUE;
635                     if( var_InheritBool( p_libvlc, "playlist-enqueue" ) )
636                         b_play = FALSE;
637                     if ( !dbus_message_iter_append_basic( &dbus_args,
638                                 DBUS_TYPE_BOOLEAN, &b_play ) )
639                     {
640                         dbus_message_unref( p_dbus_msg );
641                         system_End( p_libvlc );
642                         exit( 1 );
643                     }
644
645                     /* send message and get a handle for a reply */
646                     if ( !dbus_connection_send_with_reply ( p_conn,
647                                 p_dbus_msg, &p_dbus_pending, -1 ) )
648                     {
649                         msg_Err( p_libvlc, "D-Bus problem" );
650                         dbus_message_unref( p_dbus_msg );
651                         system_End( p_libvlc );
652                         exit( 1 );
653                     }
654
655                     if ( NULL == p_dbus_pending )
656                     {
657                         msg_Err( p_libvlc, "D-Bus problem" );
658                         dbus_message_unref( p_dbus_msg );
659                         system_End( p_libvlc );
660                         exit( 1 );
661                     }
662                     dbus_connection_flush( p_conn );
663                     dbus_message_unref( p_dbus_msg );
664                     /* block until we receive a reply */
665                     dbus_pending_call_block( p_dbus_pending );
666                     dbus_pending_call_unref( p_dbus_pending );
667                 } /* processes all command line MRLs */
668
669                 /* bye bye */
670                 system_End( p_libvlc );
671                 exit( 0 );
672             }
673         }
674         /* we unreference the connection when we've finished with it */
675         if( p_conn ) dbus_connection_unref( p_conn );
676     }
677 #endif
678
679     /*
680      * Message queue options
681      */
682     char * psz_verbose_objects = var_CreateGetNonEmptyString( p_libvlc, "verbose-objects" );
683     if( psz_verbose_objects )
684     {
685         char * psz_object, * iter = psz_verbose_objects;
686         while( (psz_object = strsep( &iter, "," )) )
687         {
688             switch( psz_object[0] )
689             {
690                 printf("%s\n", psz_object+1);
691                 case '+': msg_EnableObjectPrinting(p_libvlc, psz_object+1); break;
692                 case '-': msg_DisableObjectPrinting(p_libvlc, psz_object+1); break;
693                 default:
694                     msg_Err( p_libvlc, "verbose-objects usage: \n"
695                             "--verbose-objects=+printthatobject,"
696                             "-dontprintthatone\n"
697                             "(keyword 'all' to applies to all objects)");
698                     free( psz_verbose_objects );
699                     /* FIXME: leaks!!!! */
700                     return VLC_EGENERIC;
701             }
702         }
703         free( psz_verbose_objects );
704     }
705
706     /* Last chance to set the verbosity. Once we start interfaces and other
707      * threads, verbosity becomes read-only. */
708     var_Create( p_libvlc, "verbose", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
709     if( var_InheritBool( p_libvlc, "quiet" ) )
710     {
711         var_SetInteger( p_libvlc, "verbose", -1 );
712         priv->i_verbose = -1;
713     }
714     vlc_threads_setup( p_libvlc );
715
716     if( priv->b_color )
717         priv->b_color = var_InheritBool( p_libvlc, "color" );
718
719     char p_capabilities[200];
720 #define PRINT_CAPABILITY( capability, string )                              \
721     if( vlc_CPU() & capability )                                            \
722     {                                                                       \
723         strncat( p_capabilities, string " ",                                \
724                  sizeof(p_capabilities) - strlen(p_capabilities) );         \
725         p_capabilities[sizeof(p_capabilities) - 1] = '\0';                  \
726     }
727     p_capabilities[0] = '\0';
728
729 #if defined( __i386__ ) || defined( __x86_64__ )
730     if( !var_InheritBool( p_libvlc, "mmx" ) )
731         cpu_flags &= ~CPU_CAPABILITY_MMX;
732     if( !var_InheritBool( p_libvlc, "3dn" ) )
733         cpu_flags &= ~CPU_CAPABILITY_3DNOW;
734     if( !var_InheritBool( p_libvlc, "mmxext" ) )
735         cpu_flags &= ~CPU_CAPABILITY_MMXEXT;
736     if( !var_InheritBool( p_libvlc, "sse" ) )
737         cpu_flags &= ~CPU_CAPABILITY_SSE;
738     if( !var_InheritBool( p_libvlc, "sse2" ) )
739         cpu_flags &= ~CPU_CAPABILITY_SSE2;
740     if( !var_InheritBool( p_libvlc, "sse3" ) )
741         cpu_flags &= ~CPU_CAPABILITY_SSE3;
742     if( !var_InheritBool( p_libvlc, "ssse3" ) )
743         cpu_flags &= ~CPU_CAPABILITY_SSSE3;
744     if( !var_InheritBool( p_libvlc, "sse41" ) )
745         cpu_flags &= ~CPU_CAPABILITY_SSE4_1;
746     if( !var_InheritBool( p_libvlc, "sse42" ) )
747         cpu_flags &= ~CPU_CAPABILITY_SSE4_2;
748
749     PRINT_CAPABILITY( CPU_CAPABILITY_MMX, "MMX" );
750     PRINT_CAPABILITY( CPU_CAPABILITY_3DNOW, "3DNow!" );
751     PRINT_CAPABILITY( CPU_CAPABILITY_MMXEXT, "MMXEXT" );
752     PRINT_CAPABILITY( CPU_CAPABILITY_SSE, "SSE" );
753     PRINT_CAPABILITY( CPU_CAPABILITY_SSE2, "SSE2" );
754     PRINT_CAPABILITY( CPU_CAPABILITY_SSE3, "SSE3" );
755     PRINT_CAPABILITY( CPU_CAPABILITY_SSSE3, "SSSE3" );
756     PRINT_CAPABILITY( CPU_CAPABILITY_SSE4_1, "SSE4.1" );
757     PRINT_CAPABILITY( CPU_CAPABILITY_SSE4_2, "SSE4.2" );
758     PRINT_CAPABILITY( CPU_CAPABILITY_SSE4A,  "SSE4A" );
759
760 #elif defined( __powerpc__ ) || defined( __ppc__ ) || defined( __ppc64__ )
761     if( !var_InheritBool( p_libvlc, "altivec" ) )
762         cpu_flags &= ~CPU_CAPABILITY_ALTIVEC;
763
764     PRINT_CAPABILITY( CPU_CAPABILITY_ALTIVEC, "AltiVec" );
765
766 #elif defined( __arm__ )
767     PRINT_CAPABILITY( CPU_CAPABILITY_NEON, "NEONv1" );
768
769 #endif
770
771 #if HAVE_FPU
772     strncat( p_capabilities, "FPU ",
773              sizeof(p_capabilities) - strlen( p_capabilities) );
774     p_capabilities[sizeof(p_capabilities) - 1] = '\0';
775 #endif
776
777     if (p_capabilities[0])
778         msg_Dbg( p_libvlc, "CPU has capabilities %s", p_capabilities );
779
780     /*
781      * Choose the best memcpy module
782      */
783     priv->p_memcpy_module = module_need( p_libvlc, "memcpy", "$memcpy", false );
784     /* Avoid being called "memcpy":*/
785     vlc_object_set_name( p_libvlc, "main" );
786
787     priv->b_stats = var_InheritBool( p_libvlc, "stats" );
788     priv->i_timers = 0;
789     priv->pp_timers = NULL;
790
791     priv->i_last_input_id = 0; /* Not very safe, should be removed */
792
793     /*
794      * Initialize hotkey handling
795      */
796     vlc_InitActions( p_libvlc );
797
798     /* Create a variable for showing the fullscreen interface */
799     var_Create( p_libvlc, "intf-show", VLC_VAR_BOOL );
800     var_SetBool( p_libvlc, "intf-show", true );
801
802     /* Create a variable for showing the right click menu */
803     var_Create( p_libvlc, "intf-popupmenu", VLC_VAR_BOOL );
804
805     /* variables for signalling creation of new files */
806     var_Create( p_libvlc, "snapshot-file", VLC_VAR_STRING );
807     var_Create( p_libvlc, "record-file", VLC_VAR_STRING );
808
809     /* Initialize playlist and get commandline files */
810     p_playlist = playlist_Create( VLC_OBJECT(p_libvlc) );
811     if( !p_playlist )
812     {
813         msg_Err( p_libvlc, "playlist initialization failed" );
814         if( priv->p_memcpy_module != NULL )
815         {
816             module_unneed( p_libvlc, priv->p_memcpy_module );
817         }
818         module_EndBank( p_libvlc, true );
819         return VLC_EGENERIC;
820     }
821
822     /* System specific configuration */
823     system_Configure( p_libvlc, i_argc - vlc_optind, ppsz_argv + vlc_optind );
824
825 #if defined(MEDIA_LIBRARY)
826     /* Get the ML */
827     if( var_GetBool( p_libvlc, "load-media-library-on-startup" ) == true )
828     {
829         priv->p_ml = __ml_Create( VLC_OBJECT( p_libvlc ), NULL );
830         if( !priv->p_ml )
831         {
832             msg_Err( p_libvlc, "ML initialization failed" );
833             return VLC_EGENERIC;
834         }
835     }
836     else
837     {
838         priv->p_ml = NULL;
839     }
840 #endif
841
842     /* Add service discovery modules */
843     psz_modules = var_InheritString( p_libvlc, "services-discovery" );
844     if( psz_modules )
845     {
846         char *p = psz_modules, *m;
847         while( ( m = strsep( &p, " :," ) ) != NULL )
848             playlist_ServicesDiscoveryAdd( p_playlist, m );
849         free( psz_modules );
850     }
851
852 #ifdef ENABLE_VLM
853     /* Initialize VLM if vlm-conf is specified */
854     psz_parser = var_CreateGetNonEmptyString( p_libvlc, "vlm-conf" );
855     if( psz_parser )
856     {
857         priv->p_vlm = vlm_New( p_libvlc );
858         if( !priv->p_vlm )
859             msg_Err( p_libvlc, "VLM initialization failed" );
860     }
861     free( psz_parser );
862 #endif
863
864     /*
865      * Load background interfaces
866      */
867     psz_modules = var_CreateGetNonEmptyString( p_libvlc, "extraintf" );
868     psz_control = var_CreateGetNonEmptyString( p_libvlc, "control" );
869
870     if( psz_modules && psz_control )
871     {
872         char* psz_tmp;
873         if( asprintf( &psz_tmp, "%s:%s", psz_modules, psz_control ) != -1 )
874         {
875             free( psz_modules );
876             psz_modules = psz_tmp;
877         }
878     }
879     else if( psz_control )
880     {
881         free( psz_modules );
882         psz_modules = strdup( psz_control );
883     }
884
885     psz_parser = psz_modules;
886     while ( psz_parser && *psz_parser )
887     {
888         char *psz_module, *psz_temp;
889         psz_module = psz_parser;
890         psz_parser = strchr( psz_module, ':' );
891         if ( psz_parser )
892         {
893             *psz_parser = '\0';
894             psz_parser++;
895         }
896         if( asprintf( &psz_temp, "%s,none", psz_module ) != -1)
897         {
898             intf_Create( p_libvlc, psz_temp );
899             free( psz_temp );
900         }
901     }
902     free( psz_modules );
903     free( psz_control );
904
905     /*
906      * Always load the hotkeys interface if it exists
907      */
908     intf_Create( p_libvlc, "hotkeys,none" );
909
910 #ifdef HAVE_DBUS
911     /* loads dbus control interface if in one-instance mode
912      * we do it only when playlist exists, because dbus module needs it */
913     if( var_InheritBool( p_libvlc, "one-instance" )
914      || ( var_InheritBool( p_libvlc, "one-instance-when-started-from-file" )
915        && var_InheritBool( p_libvlc, "started-from-file" ) ) )
916         intf_Create( p_libvlc, "dbus,none" );
917
918 # if !defined (HAVE_MAEMO)
919     /* Prevents the power management daemon from suspending the system
920      * when VLC is active */
921     if( var_InheritBool( p_libvlc, "inhibit" ) > 0 )
922         intf_Create( p_libvlc, "inhibit,none" );
923 # endif
924 #endif
925
926     if( var_InheritBool( p_libvlc, "file-logging" ) &&
927         !var_InheritBool( p_libvlc, "syslog" ) )
928     {
929         intf_Create( p_libvlc, "logger,none" );
930     }
931 #ifdef HAVE_SYSLOG_H
932     if( var_InheritBool( p_libvlc, "syslog" ) )
933     {
934         char *logmode = var_CreateGetNonEmptyString( p_libvlc, "logmode" );
935         var_SetString( p_libvlc, "logmode", "syslog" );
936         intf_Create( p_libvlc, "logger,none" );
937
938         if( logmode )
939         {
940             var_SetString( p_libvlc, "logmode", logmode );
941             free( logmode );
942         }
943         var_Destroy( p_libvlc, "logmode" );
944     }
945 #endif
946
947     if( var_InheritBool( p_libvlc, "network-synchronisation") )
948     {
949         intf_Create( p_libvlc, "netsync,none" );
950     }
951
952 #ifdef WIN32
953     if( var_InheritBool( p_libvlc, "prefer-system-codecs") )
954     {
955         char *psz_codecs = var_CreateGetNonEmptyString( p_libvlc, "codec" );
956         if( psz_codecs )
957         {
958             char *psz_morecodecs;
959             if( asprintf(&psz_morecodecs, "%s,dmo,quicktime", psz_codecs) != -1 )
960             {
961                 var_SetString( p_libvlc, "codec", psz_morecodecs);
962                 free( psz_morecodecs );
963             }
964             free( psz_codecs );
965         }
966         else
967             var_SetString( p_libvlc, "codec", "dmo,quicktime");
968     }
969 #endif
970
971     var_Create( p_libvlc, "drawable-view-top", VLC_VAR_INTEGER );
972     var_Create( p_libvlc, "drawable-view-left", VLC_VAR_INTEGER );
973     var_Create( p_libvlc, "drawable-view-bottom", VLC_VAR_INTEGER );
974     var_Create( p_libvlc, "drawable-view-right", VLC_VAR_INTEGER );
975     var_Create( p_libvlc, "drawable-clip-top", VLC_VAR_INTEGER );
976     var_Create( p_libvlc, "drawable-clip-left", VLC_VAR_INTEGER );
977     var_Create( p_libvlc, "drawable-clip-bottom", VLC_VAR_INTEGER );
978     var_Create( p_libvlc, "drawable-clip-right", VLC_VAR_INTEGER );
979 #ifdef WIN32
980     var_Create( p_libvlc, "drawable-hwnd", VLC_VAR_ADDRESS );
981 #endif
982
983     /*
984      * Get input filenames given as commandline arguments.
985      * We assume that the remaining parameters are filenames
986      * and their input options.
987      */
988     GetFilenames( p_libvlc, i_argc - vlc_optind, ppsz_argv + vlc_optind );
989
990     /*
991      * Get --open argument
992      */
993     psz_val = var_InheritString( p_libvlc, "open" );
994     if ( psz_val != NULL )
995     {
996         playlist_AddExt( p_playlist, psz_val, NULL, PLAYLIST_INSERT, 0,
997                          -1, 0, NULL, 0, true, pl_Unlocked );
998         free( psz_val );
999     }
1000
1001     return VLC_SUCCESS;
1002 }
1003
1004 /**
1005  * Cleanup a libvlc instance. The instance is not completely deallocated
1006  * \param p_libvlc the instance to clean
1007  */
1008 void libvlc_InternalCleanup( libvlc_int_t *p_libvlc )
1009 {
1010     libvlc_priv_t *priv = libvlc_priv (p_libvlc);
1011     playlist_t    *p_playlist = libvlc_priv (p_libvlc)->p_playlist;
1012
1013     /* Deactivate the playlist */
1014     msg_Dbg( p_libvlc, "deactivating the playlist" );
1015     pl_Deactivate( p_libvlc );
1016
1017     /* Remove all services discovery */
1018     msg_Dbg( p_libvlc, "removing all services discovery tasks" );
1019     playlist_ServicesDiscoveryKillAll( p_playlist );
1020
1021     /* Ask the interfaces to stop and destroy them */
1022     msg_Dbg( p_libvlc, "removing all interfaces" );
1023     libvlc_Quit( p_libvlc );
1024     intf_DestroyAll( p_libvlc );
1025
1026 #ifdef ENABLE_VLM
1027     /* Destroy VLM if created in libvlc_InternalInit */
1028     if( priv->p_vlm )
1029     {
1030         vlm_Delete( priv->p_vlm );
1031     }
1032 #endif
1033
1034     /* Free playlist now, all threads are gone */
1035     playlist_Destroy( p_playlist );
1036
1037     /* Free playlist now */
1038 #if defined(MEDIA_LIBRARY)
1039     media_library_t* p_ml = priv->p_ml;
1040     if( p_ml )
1041     {
1042         __ml_Destroy( VLC_OBJECT( p_ml ) );
1043         vlc_object_release( p_ml );
1044         libvlc_priv(p_playlist->p_libvlc)->p_ml = NULL;
1045     }
1046 #endif
1047
1048     /* Free playlist */
1049     /* Any thread still running must not assume pl_Hold() succeeds. */
1050     msg_Dbg( p_libvlc, "removing playlist" );
1051     vlc_object_release( p_playlist );
1052
1053     stats_TimersDumpAll( p_libvlc );
1054     stats_TimersCleanAll( p_libvlc );
1055
1056     msg_Dbg( p_libvlc, "removing stats" );
1057
1058 #ifndef WIN32
1059     char* psz_pidfile = NULL;
1060
1061     if( b_daemon )
1062     {
1063         psz_pidfile = var_CreateGetNonEmptyString( p_libvlc, "pidfile" );
1064         if( psz_pidfile != NULL )
1065         {
1066             msg_Dbg( p_libvlc, "removing pid file %s", psz_pidfile );
1067             if( unlink( psz_pidfile ) == -1 )
1068             {
1069                 msg_Dbg( p_libvlc, "removing pid file %s: %m",
1070                         psz_pidfile );
1071             }
1072         }
1073         free( psz_pidfile );
1074     }
1075 #endif
1076
1077     if( priv->p_memcpy_module )
1078     {
1079         module_unneed( p_libvlc, priv->p_memcpy_module );
1080         priv->p_memcpy_module = NULL;
1081     }
1082
1083     /* Free module bank. It is refcounted, so we call this each time  */
1084     module_EndBank( p_libvlc, true );
1085
1086     vlc_DeinitActions( p_libvlc );
1087 }
1088
1089 /**
1090  * Destroy everything.
1091  * This function requests the running threads to finish, waits for their
1092  * termination, and destroys their structure.
1093  * It stops the thread systems: no instance can run after this has run
1094  * \param p_libvlc the instance to destroy
1095  */
1096 void libvlc_InternalDestroy( libvlc_int_t *p_libvlc )
1097 {
1098     libvlc_priv_t *priv = libvlc_priv( p_libvlc );
1099
1100     vlc_mutex_lock( &global_lock );
1101     i_instances--;
1102
1103     if( i_instances == 0 )
1104     {
1105         /* System specific cleaning code */
1106         system_End( p_libvlc );
1107     }
1108     vlc_mutex_unlock( &global_lock );
1109
1110     msg_Destroy (priv->msg_bank);
1111
1112     /* Destroy mutexes */
1113     vlc_ExitDestroy( &priv->exit );
1114     vlc_mutex_destroy( &priv->timer_lock );
1115
1116 #ifndef NDEBUG /* Hack to dump leaked objects tree */
1117     if( vlc_internals( p_libvlc )->i_refcount > 1 )
1118         while( vlc_internals( p_libvlc )->i_refcount > 0 )
1119             vlc_object_release( p_libvlc );
1120 #endif
1121
1122     assert( vlc_internals( p_libvlc )->i_refcount == 1 );
1123     vlc_object_release( p_libvlc );
1124 }
1125
1126 /**
1127  * Add an interface plugin and run it
1128  */
1129 int libvlc_InternalAddIntf( libvlc_int_t *p_libvlc, char const *psz_module )
1130 {
1131     if( !p_libvlc )
1132         return VLC_EGENERIC;
1133
1134     if( !psz_module ) /* requesting the default interface */
1135     {
1136         char *psz_interface = var_CreateGetNonEmptyString( p_libvlc, "intf" );
1137         if( !psz_interface ) /* "intf" has not been set */
1138         {
1139 #ifndef WIN32
1140             if( b_daemon )
1141                  /* Daemon mode hack.
1142                   * We prefer the dummy interface if none is specified. */
1143                 psz_module = "dummy";
1144             else
1145 #endif
1146                 msg_Info( p_libvlc, "%s",
1147                           _("Running vlc with the default interface. "
1148                             "Use 'cvlc' to use vlc without interface.") );
1149         }
1150         free( psz_interface );
1151         var_Destroy( p_libvlc, "intf" );
1152     }
1153
1154     /* Try to create the interface */
1155     int ret = intf_Create( p_libvlc, psz_module ? psz_module : "$intf" );
1156     if( ret )
1157         msg_Err( p_libvlc, "interface \"%s\" initialization failed",
1158                  psz_module ? psz_module : "default" );
1159     return ret;
1160 }
1161
1162 #if defined( ENABLE_NLS ) && (defined (__APPLE__) || defined (WIN32)) && \
1163     ( defined( HAVE_GETTEXT ) || defined( HAVE_INCLUDED_GETTEXT ) )
1164 /*****************************************************************************
1165  * SetLanguage: set the interface language.
1166  *****************************************************************************
1167  * We set the LC_MESSAGES locale category for interface messages and buttons,
1168  * as well as the LC_CTYPE category for string sorting and possible wide
1169  * character support.
1170  *****************************************************************************/
1171 static void SetLanguage ( const char *psz_lang )
1172 {
1173 #ifdef __APPLE__
1174     /* I need that under Darwin, please check it doesn't disturb
1175      * other platforms. --Meuuh */
1176     setenv( "LANG", psz_lang, 1 );
1177
1178 #else
1179     /* We set LC_ALL manually because it is the only way to set
1180      * the language at runtime under eg. Windows. Beware that this
1181      * makes the environment unconsistent when libvlc is unloaded and
1182      * should probably be moved to a safer place like vlc.c. */
1183     static char psz_lcall[20];
1184     snprintf( psz_lcall, sizeof(psz_lcall), "LC_ALL=%s", psz_lang );
1185     putenv( psz_lcall );
1186 #endif
1187
1188     setlocale( LC_ALL, psz_lang );
1189 }
1190 #endif
1191
1192 /*****************************************************************************
1193  * GetFilenames: parse command line options which are not flags
1194  *****************************************************************************
1195  * Parse command line for input files as well as their associated options.
1196  * An option always follows its associated input and begins with a ":".
1197  *****************************************************************************/
1198 static void GetFilenames( libvlc_int_t *p_vlc, unsigned n,
1199                           const char *const args[] )
1200 {
1201     while( n > 0 )
1202     {
1203         /* Count the input options */
1204         unsigned i_options = 0;
1205
1206         while( args[--n][0] == ':' )
1207         {
1208             i_options++;
1209             if( n == 0 )
1210             {
1211                 msg_Warn( p_vlc, "options %s without item", args[n] );
1212                 return; /* syntax!? */
1213             }
1214         }
1215
1216         /* TODO: write an internal function of this one, to avoid
1217          *       unnecessary lookups. */
1218         char *mrl = make_URI( args[n] );
1219         if( !mrl )
1220             continue;
1221
1222         playlist_AddExt( pl_Get( p_vlc ), mrl, NULL, PLAYLIST_INSERT,
1223                 0, -1, i_options, ( i_options ? &args[n + 1] : NULL ),
1224                 VLC_INPUT_OPTION_TRUSTED, true, pl_Unlocked );
1225         free( mrl );
1226     }
1227 }
1228
1229 /*****************************************************************************
1230  * Help: print program help
1231  *****************************************************************************
1232  * Print a short inline help. Message interface is initialized at this stage.
1233  *****************************************************************************/
1234 static inline void print_help_on_full_help( void )
1235 {
1236     utf8_fprintf( stdout, "\n" );
1237     utf8_fprintf( stdout, "%s\n", _("To get exhaustive help, use '-H'.") );
1238 }
1239
1240 static const char vlc_usage[] = N_(
1241                             "Usage: %s [options] [stream] ..."
1242                             "\nYou can specify multiple streams on the commandline. They will be enqueued in the playlist."
1243                             "\nThe first item specified will be played first."
1244                             "\n"
1245                             "\nOptions-styles:"
1246                             "\n  --option  A global option that is set for the duration of the program."
1247                             "\n   -option  A single letter version of a global --option."
1248                             "\n   :option  An option that only applies to the stream directly before it"
1249                             "\n            and that overrides previous settings."
1250                             "\n"
1251                             "\nStream MRL syntax:"
1252                             "\n  [[access][/demux]://]URL[@[title][:chapter][-[title][:chapter]]] [:option=value ...]"
1253                             "\n"
1254                             "\n  Many of the global --options can also be used as MRL specific :options."
1255                             "\n  Multiple :option=value pairs can be specified."
1256                             "\n"
1257                             "\nURL syntax:"
1258                             "\n  [file://]filename              Plain media file"
1259                             "\n  http://ip:port/file            HTTP URL"
1260                             "\n  ftp://ip:port/file             FTP URL"
1261                             "\n  mms://ip:port/file             MMS URL"
1262                             "\n  screen://                      Screen capture"
1263                             "\n  [dvd://][device][@raw_device]  DVD device"
1264                             "\n  [vcd://][device]               VCD device"
1265                             "\n  [cdda://][device]              Audio CD device"
1266                             "\n  udp://[[<source address>]@[<bind address>][:<bind port>]]"
1267                             "\n                                 UDP stream sent by a streaming server"
1268                             "\n  vlc://pause:<seconds>          Special item to pause the playlist for a certain time"
1269                             "\n  vlc://quit                     Special item to quit VLC"
1270                             "\n");
1271
1272 static void Help( libvlc_int_t *p_this, char const *psz_help_name )
1273 {
1274 #ifdef WIN32
1275     ShowConsole( true );
1276 #endif
1277
1278     if( psz_help_name && !strcmp( psz_help_name, "help" ) )
1279     {
1280         utf8_fprintf( stdout, vlc_usage, "vlc" );
1281         Usage( p_this, "=help" );
1282         Usage( p_this, "=main" );
1283         print_help_on_full_help();
1284     }
1285     else if( psz_help_name && !strcmp( psz_help_name, "longhelp" ) )
1286     {
1287         utf8_fprintf( stdout, vlc_usage, "vlc" );
1288         Usage( p_this, NULL );
1289         print_help_on_full_help();
1290     }
1291     else if( psz_help_name && !strcmp( psz_help_name, "full-help" ) )
1292     {
1293         utf8_fprintf( stdout, vlc_usage, "vlc" );
1294         Usage( p_this, NULL );
1295     }
1296     else if( psz_help_name )
1297     {
1298         Usage( p_this, psz_help_name );
1299     }
1300
1301 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1302     PauseConsole();
1303 #endif
1304 }
1305
1306 /*****************************************************************************
1307  * Usage: print module usage
1308  *****************************************************************************
1309  * Print a short inline help. Message interface is initialized at this stage.
1310  *****************************************************************************/
1311 #   define COL(x)  "\033[" #x ";1m"
1312 #   define RED     COL(31)
1313 #   define GREEN   COL(32)
1314 #   define YELLOW  COL(33)
1315 #   define BLUE    COL(34)
1316 #   define MAGENTA COL(35)
1317 #   define CYAN    COL(36)
1318 #   define WHITE   COL(0)
1319 #   define GRAY    "\033[0m"
1320 static void
1321 print_help_section( const module_t *m, const module_config_t *p_item,
1322                     bool b_color, bool b_description )
1323 {
1324     if( !p_item ) return;
1325     if( b_color )
1326     {
1327         utf8_fprintf( stdout, RED"   %s:\n"GRAY,
1328                       module_gettext( m, p_item->psz_text ) );
1329         if( b_description && p_item->psz_longtext && *p_item->psz_longtext )
1330             utf8_fprintf( stdout, MAGENTA"   %s\n"GRAY,
1331                           module_gettext( m, p_item->psz_longtext ) );
1332     }
1333     else
1334     {
1335         utf8_fprintf( stdout, "   %s:\n",
1336                       module_gettext( m, p_item->psz_text ) );
1337         if( b_description && p_item->psz_longtext && *p_item->psz_longtext )
1338             utf8_fprintf( stdout, "   %s\n",
1339                           module_gettext(m, p_item->psz_longtext ) );
1340     }
1341 }
1342
1343 static void Usage( libvlc_int_t *p_this, char const *psz_search )
1344 {
1345 #define FORMAT_STRING "  %s --%s%s%s%s%s%s%s "
1346     /* short option ------'    | | | | | | |
1347      * option name ------------' | | | | | |
1348      * <bra ---------------------' | | | | |
1349      * option type or "" ----------' | | | |
1350      * ket> -------------------------' | | |
1351      * padding spaces -----------------' | |
1352      * comment --------------------------' |
1353      * comment suffix ---------------------'
1354      *
1355      * The purpose of having bra and ket is that we might i18n them as well.
1356      */
1357
1358 #define COLOR_FORMAT_STRING (WHITE"  %s --%s"YELLOW"%s%s%s%s%s%s "GRAY)
1359 #define COLOR_FORMAT_STRING_BOOL (WHITE"  %s --%s%s%s%s%s%s%s "GRAY)
1360
1361 #define LINE_START 8
1362 #define PADDING_SPACES 25
1363 #ifdef WIN32
1364 #   define OPTION_VALUE_SEP "="
1365 #else
1366 #   define OPTION_VALUE_SEP " "
1367 #endif
1368     char psz_spaces_text[PADDING_SPACES+LINE_START+1];
1369     char psz_spaces_longtext[LINE_START+3];
1370     char psz_format[sizeof(COLOR_FORMAT_STRING)];
1371     char psz_format_bool[sizeof(COLOR_FORMAT_STRING_BOOL)];
1372     char psz_buffer[10000];
1373     char psz_short[4];
1374     int i_width = ConsoleWidth() - (PADDING_SPACES+LINE_START+1);
1375     int i_width_description = i_width + PADDING_SPACES - 1;
1376     bool b_advanced    = var_InheritBool( p_this, "advanced" );
1377     bool b_description = var_InheritBool( p_this, "help-verbose" );
1378     bool b_description_hack;
1379     bool b_color       = var_InheritBool( p_this, "color" );
1380     bool b_has_advanced = false;
1381     bool b_found       = false;
1382     int  i_only_advanced = 0; /* Number of modules ignored because they
1383                                * only have advanced options */
1384     bool b_strict = psz_search && *psz_search == '=';
1385     if( b_strict ) psz_search++;
1386
1387     memset( psz_spaces_text, ' ', PADDING_SPACES+LINE_START );
1388     psz_spaces_text[PADDING_SPACES+LINE_START] = '\0';
1389     memset( psz_spaces_longtext, ' ', LINE_START+2 );
1390     psz_spaces_longtext[LINE_START+2] = '\0';
1391 #ifndef WIN32
1392     if( !isatty( 1 ) )
1393 #endif
1394         b_color = false; // don't put color control codes in a .txt file
1395
1396     if( b_color )
1397     {
1398         strcpy( psz_format, COLOR_FORMAT_STRING );
1399         strcpy( psz_format_bool, COLOR_FORMAT_STRING_BOOL );
1400     }
1401     else
1402     {
1403         strcpy( psz_format, FORMAT_STRING );
1404         strcpy( psz_format_bool, FORMAT_STRING );
1405     }
1406
1407     /* List all modules */
1408     module_t **list = module_list_get (NULL);
1409     if (!list)
1410         return;
1411
1412     /* Ugly hack to make sure that the help options always come first
1413      * (part 1) */
1414     if( !psz_search )
1415         Usage( p_this, "help" );
1416
1417     /* Enumerate the config for each module */
1418     for (size_t i = 0; list[i]; i++)
1419     {
1420         bool b_help_module;
1421         module_t *p_parser = list[i];
1422         module_config_t *p_item = NULL;
1423         module_config_t *p_section = NULL;
1424         module_config_t *p_end = p_parser->p_config + p_parser->confsize;
1425
1426         if( psz_search &&
1427             ( b_strict ? strcmp( psz_search, p_parser->psz_object_name )
1428                        : !strstr( p_parser->psz_object_name, psz_search ) ) )
1429         {
1430             char *const *pp_shortcuts = p_parser->pp_shortcuts;
1431             unsigned i;
1432             for( i = 0; i < p_parser->i_shortcuts; i++ )
1433             {
1434                 if( b_strict ? !strcmp( psz_search, pp_shortcuts[i] )
1435                              : !!strstr( pp_shortcuts[i], psz_search ) )
1436                     break;
1437             }
1438             if( i == p_parser->i_shortcuts )
1439                 continue;
1440         }
1441
1442         /* Ignore modules without config options */
1443         if( !p_parser->i_config_items )
1444         {
1445             continue;
1446         }
1447
1448         b_help_module = !strcmp( "help", p_parser->psz_object_name );
1449         /* Ugly hack to make sure that the help options always come first
1450          * (part 2) */
1451         if( !psz_search && b_help_module )
1452             continue;
1453
1454         /* Ignore modules with only advanced config options if requested */
1455         if( !b_advanced )
1456         {
1457             for( p_item = p_parser->p_config;
1458                  p_item < p_end;
1459                  p_item++ )
1460             {
1461                 if( (p_item->i_type & CONFIG_ITEM) &&
1462                     !p_item->b_advanced && !p_item->b_removed ) break;
1463             }
1464
1465             if( p_item == p_end )
1466             {
1467                 i_only_advanced++;
1468                 continue;
1469             }
1470         }
1471
1472         b_found = true;
1473
1474         /* Print name of module */
1475         if( strcmp( "main", p_parser->psz_object_name ) )
1476         {
1477             if( b_color )
1478                 utf8_fprintf( stdout, "\n " GREEN "%s" GRAY " (%s)\n",
1479                               module_gettext( p_parser, p_parser->psz_longname ),
1480                               p_parser->psz_object_name );
1481             else
1482                 utf8_fprintf( stdout, "\n %s\n",
1483                               module_gettext(p_parser, p_parser->psz_longname ) );
1484         }
1485         if( p_parser->psz_help )
1486         {
1487             if( b_color )
1488                 utf8_fprintf( stdout, CYAN" %s\n"GRAY,
1489                               module_gettext( p_parser, p_parser->psz_help ) );
1490             else
1491                 utf8_fprintf( stdout, " %s\n",
1492                               module_gettext( p_parser, p_parser->psz_help ) );
1493         }
1494
1495         /* Print module options */
1496         for( p_item = p_parser->p_config;
1497              p_item < p_end;
1498              p_item++ )
1499         {
1500             char *psz_text, *psz_spaces = psz_spaces_text;
1501             const char *psz_bra = NULL, *psz_type = NULL, *psz_ket = NULL;
1502             const char *psz_suf = "", *psz_prefix = NULL;
1503             signed int i;
1504             size_t i_cur_width;
1505
1506             /* Skip removed options */
1507             if( p_item->b_removed )
1508             {
1509                 continue;
1510             }
1511             /* Skip advanced options if requested */
1512             if( p_item->b_advanced && !b_advanced )
1513             {
1514                 b_has_advanced = true;
1515                 continue;
1516             }
1517
1518             switch( p_item->i_type )
1519             {
1520             case CONFIG_HINT_CATEGORY:
1521             case CONFIG_HINT_USAGE:
1522                 if( !strcmp( "main", p_parser->psz_object_name ) )
1523                 {
1524                     if( b_color )
1525                         utf8_fprintf( stdout, GREEN "\n %s\n" GRAY,
1526                                       module_gettext( p_parser, p_item->psz_text ) );
1527                     else
1528                         utf8_fprintf( stdout, "\n %s\n",
1529                                       module_gettext( p_parser, p_item->psz_text ) );
1530                 }
1531                 if( b_description && p_item->psz_longtext
1532                  && *p_item->psz_longtext )
1533                 {
1534                     if( b_color )
1535                         utf8_fprintf( stdout, CYAN " %s\n" GRAY,
1536                                       module_gettext( p_parser, p_item->psz_longtext ) );
1537                     else
1538                         utf8_fprintf( stdout, " %s\n",
1539                                       module_gettext( p_parser, p_item->psz_longtext ) );
1540                 }
1541                 break;
1542
1543             case CONFIG_HINT_SUBCATEGORY:
1544                 if( strcmp( "main", p_parser->psz_object_name ) )
1545                     break;
1546             case CONFIG_SECTION:
1547                 p_section = p_item;
1548                 break;
1549
1550             case CONFIG_ITEM_STRING:
1551             case CONFIG_ITEM_FILE:
1552             case CONFIG_ITEM_DIRECTORY:
1553             case CONFIG_ITEM_MODULE: /* We could also have "=<" here */
1554             case CONFIG_ITEM_MODULE_CAT:
1555             case CONFIG_ITEM_MODULE_LIST:
1556             case CONFIG_ITEM_MODULE_LIST_CAT:
1557             case CONFIG_ITEM_FONT:
1558             case CONFIG_ITEM_PASSWORD:
1559                 print_help_section( p_parser, p_section, b_color,
1560                                     b_description );
1561                 p_section = NULL;
1562                 psz_bra = OPTION_VALUE_SEP "<";
1563                 psz_type = _("string");
1564                 psz_ket = ">";
1565
1566                 if( p_item->ppsz_list )
1567                 {
1568                     psz_bra = OPTION_VALUE_SEP "{";
1569                     psz_type = psz_buffer;
1570                     psz_buffer[0] = '\0';
1571                     for( i = 0; p_item->ppsz_list[i]; i++ )
1572                     {
1573                         if( i ) strcat( psz_buffer, "," );
1574                         strcat( psz_buffer, p_item->ppsz_list[i] );
1575                     }
1576                     psz_ket = "}";
1577                 }
1578                 break;
1579             case CONFIG_ITEM_INTEGER:
1580             case CONFIG_ITEM_KEY: /* FIXME: do something a bit more clever */
1581                 print_help_section( p_parser, p_section, b_color,
1582                                     b_description );
1583                 p_section = NULL;
1584                 psz_bra = OPTION_VALUE_SEP "<";
1585                 psz_type = _("integer");
1586                 psz_ket = ">";
1587
1588                 if( p_item->min.i || p_item->max.i )
1589                 {
1590                     sprintf( psz_buffer, "%s [%i .. %i]", psz_type,
1591                              p_item->min.i, p_item->max.i );
1592                     psz_type = psz_buffer;
1593                 }
1594
1595                 if( p_item->i_list )
1596                 {
1597                     psz_bra = OPTION_VALUE_SEP "{";
1598                     psz_type = psz_buffer;
1599                     psz_buffer[0] = '\0';
1600                     for( i = 0; p_item->ppsz_list_text[i]; i++ )
1601                     {
1602                         if( i ) strcat( psz_buffer, ", " );
1603                         sprintf( psz_buffer + strlen(psz_buffer), "%i (%s)",
1604                                  p_item->pi_list[i],
1605                                  module_gettext( p_parser, p_item->ppsz_list_text[i] ) );
1606                     }
1607                     psz_ket = "}";
1608                 }
1609                 break;
1610             case CONFIG_ITEM_FLOAT:
1611                 print_help_section( p_parser, p_section, b_color,
1612                                     b_description );
1613                 p_section = NULL;
1614                 psz_bra = OPTION_VALUE_SEP "<";
1615                 psz_type = _("float");
1616                 psz_ket = ">";
1617                 if( p_item->min.f || p_item->max.f )
1618                 {
1619                     sprintf( psz_buffer, "%s [%f .. %f]", psz_type,
1620                              p_item->min.f, p_item->max.f );
1621                     psz_type = psz_buffer;
1622                 }
1623                 break;
1624             case CONFIG_ITEM_BOOL:
1625                 print_help_section( p_parser, p_section, b_color,
1626                                     b_description );
1627                 p_section = NULL;
1628                 psz_bra = ""; psz_type = ""; psz_ket = "";
1629                 if( !b_help_module )
1630                 {
1631                     psz_suf = p_item->value.i ? _(" (default enabled)") :
1632                                                 _(" (default disabled)");
1633                 }
1634                 break;
1635             }
1636
1637             if( !psz_type )
1638             {
1639                 continue;
1640             }
1641
1642             /* Add short option if any */
1643             if( p_item->i_short )
1644             {
1645                 sprintf( psz_short, "-%c,", p_item->i_short );
1646             }
1647             else
1648             {
1649                 strcpy( psz_short, "   " );
1650             }
1651
1652             i = PADDING_SPACES - strlen( p_item->psz_name )
1653                  - strlen( psz_bra ) - strlen( psz_type )
1654                  - strlen( psz_ket ) - 1;
1655
1656             if( p_item->i_type == CONFIG_ITEM_BOOL && !b_help_module )
1657             {
1658                 psz_prefix =  ", --no-";
1659                 i -= strlen( p_item->psz_name ) + strlen( psz_prefix );
1660             }
1661
1662             if( i < 0 )
1663             {
1664                 psz_spaces[0] = '\n';
1665                 i = 0;
1666             }
1667             else
1668             {
1669                 psz_spaces[i] = '\0';
1670             }
1671
1672             if( p_item->i_type == CONFIG_ITEM_BOOL && !b_help_module )
1673             {
1674                 utf8_fprintf( stdout, psz_format_bool, psz_short,
1675                               p_item->psz_name, psz_prefix, p_item->psz_name,
1676                               psz_bra, psz_type, psz_ket, psz_spaces );
1677             }
1678             else
1679             {
1680                 utf8_fprintf( stdout, psz_format, psz_short, p_item->psz_name,
1681                          "", "", psz_bra, psz_type, psz_ket, psz_spaces );
1682             }
1683
1684             psz_spaces[i] = ' ';
1685
1686             /* We wrap the rest of the output */
1687             sprintf( psz_buffer, "%s%s", module_gettext( p_parser, p_item->psz_text ),
1688                      psz_suf );
1689             b_description_hack = b_description;
1690
1691  description:
1692             psz_text = psz_buffer;
1693             i_cur_width = b_description && !b_description_hack
1694                           ? i_width_description
1695                           : i_width;
1696             while( *psz_text )
1697             {
1698                 char *psz_parser, *psz_word;
1699                 size_t i_end = strlen( psz_text );
1700
1701                 /* If the remaining text fits in a line, print it. */
1702                 if( i_end <= i_cur_width )
1703                 {
1704                     if( b_color )
1705                     {
1706                         if( !b_description || b_description_hack )
1707                             utf8_fprintf( stdout, BLUE"%s\n"GRAY, psz_text );
1708                         else
1709                             utf8_fprintf( stdout, "%s\n", psz_text );
1710                     }
1711                     else
1712                     {
1713                         utf8_fprintf( stdout, "%s\n", psz_text );
1714                     }
1715                     break;
1716                 }
1717
1718                 /* Otherwise, eat as many words as possible */
1719                 psz_parser = psz_text;
1720                 do
1721                 {
1722                     psz_word = psz_parser;
1723                     psz_parser = strchr( psz_word, ' ' );
1724                     /* If no space was found, we reached the end of the text
1725                      * block; otherwise, we skip the space we just found. */
1726                     psz_parser = psz_parser ? psz_parser + 1
1727                                             : psz_text + i_end;
1728
1729                 } while( (size_t)(psz_parser - psz_text) <= i_cur_width );
1730
1731                 /* We cut a word in one of these cases:
1732                  *  - it's the only word in the line and it's too long.
1733                  *  - we used less than 80% of the width and the word we are
1734                  *    going to wrap is longer than 40% of the width, and even
1735                  *    if the word would have fit in the next line. */
1736                 if( psz_word == psz_text
1737              || ( (size_t)(psz_word - psz_text) < 80 * i_cur_width / 100
1738              && (size_t)(psz_parser - psz_word) > 40 * i_cur_width / 100 ) )
1739                 {
1740                     char c = psz_text[i_cur_width];
1741                     psz_text[i_cur_width] = '\0';
1742                     if( b_color )
1743                     {
1744                         if( !b_description || b_description_hack )
1745                             utf8_fprintf( stdout, BLUE"%s\n%s"GRAY,
1746                                           psz_text, psz_spaces );
1747                         else
1748                             utf8_fprintf( stdout, "%s\n%s",
1749                                           psz_text, psz_spaces );
1750                     }
1751                     else
1752                     {
1753                         utf8_fprintf( stdout, "%s\n%s", psz_text, psz_spaces );
1754                     }
1755                     psz_text += i_cur_width;
1756                     psz_text[0] = c;
1757                 }
1758                 else
1759                 {
1760                     psz_word[-1] = '\0';
1761                     if( b_color )
1762                     {
1763                         if( !b_description || b_description_hack )
1764                             utf8_fprintf( stdout, BLUE"%s\n%s"GRAY,
1765                                           psz_text, psz_spaces );
1766                         else
1767                             utf8_fprintf( stdout, "%s\n%s",
1768                                           psz_text, psz_spaces );
1769                     }
1770                     else
1771                     {
1772                         utf8_fprintf( stdout, "%s\n%s", psz_text, psz_spaces );
1773                     }
1774                     psz_text = psz_word;
1775                 }
1776             }
1777
1778             if( b_description_hack && p_item->psz_longtext
1779              && *p_item->psz_longtext )
1780             {
1781                 sprintf( psz_buffer, "%s%s",
1782                          module_gettext( p_parser, p_item->psz_longtext ),
1783                          psz_suf );
1784                 b_description_hack = false;
1785                 psz_spaces = psz_spaces_longtext;
1786                 utf8_fprintf( stdout, "%s", psz_spaces );
1787                 goto description;
1788             }
1789         }
1790     }
1791
1792     if( b_has_advanced )
1793     {
1794         if( b_color )
1795             utf8_fprintf( stdout, "\n" WHITE "%s" GRAY " %s\n", _( "Note:" ),
1796            _( "add --advanced to your command line to see advanced options."));
1797         else
1798             utf8_fprintf( stdout, "\n%s %s\n", _( "Note:" ),
1799            _( "add --advanced to your command line to see advanced options."));
1800     }
1801
1802     if( i_only_advanced > 0 )
1803     {
1804         if( b_color )
1805         {
1806             utf8_fprintf( stdout, "\n" WHITE "%s" GRAY " ", _( "Note:" ) );
1807             utf8_fprintf( stdout, _( "%d module(s) were not displayed because they only have advanced options.\n" ), i_only_advanced );
1808         }
1809         else
1810         {
1811             utf8_fprintf( stdout, "\n%s ", _( "Note:" ) );
1812             utf8_fprintf( stdout, _( "%d module(s) were not displayed because they only have advanced options.\n" ), i_only_advanced );
1813         }
1814     }
1815     else if( !b_found )
1816     {
1817         if( b_color )
1818             utf8_fprintf( stdout, "\n" WHITE "%s" GRAY "\n",
1819                        _( "No matching module found. Use --list or " \
1820                           "--list-verbose to list available modules." ) );
1821         else
1822             utf8_fprintf( stdout, "\n%s\n",
1823                        _( "No matching module found. Use --list or " \
1824                           "--list-verbose to list available modules." ) );
1825     }
1826
1827     /* Release the module list */
1828     module_list_free (list);
1829 }
1830
1831 /*****************************************************************************
1832  * ListModules: list the available modules with their description
1833  *****************************************************************************
1834  * Print a list of all available modules (builtins and plugins) and a short
1835  * description for each one.
1836  *****************************************************************************/
1837 static void ListModules( libvlc_int_t *p_this, bool b_verbose )
1838 {
1839     module_t *p_parser;
1840
1841     bool b_color = var_InheritBool( p_this, "color" );
1842
1843 #ifdef WIN32
1844     ShowConsole( true );
1845     b_color = false; // don't put color control codes in a .txt file
1846 #else
1847     if( !isatty( 1 ) )
1848         b_color = false;
1849 #endif
1850
1851     /* List all modules */
1852     module_t **list = module_list_get (NULL);
1853
1854     /* Enumerate each module */
1855     for (size_t j = 0; (p_parser = list[j]) != NULL; j++)
1856     {
1857         if( b_color )
1858             utf8_fprintf( stdout, GREEN"  %-22s "WHITE"%s\n"GRAY,
1859                           p_parser->psz_object_name,
1860                           module_gettext( p_parser, p_parser->psz_longname ) );
1861         else
1862             utf8_fprintf( stdout, "  %-22s %s\n",
1863                           p_parser->psz_object_name,
1864                           module_gettext( p_parser, p_parser->psz_longname ) );
1865
1866         if( b_verbose )
1867         {
1868             char *const *pp_shortcuts = p_parser->pp_shortcuts;
1869             for( unsigned i = 0; i < p_parser->i_shortcuts; i++ )
1870             {
1871                 if( strcmp( pp_shortcuts[i], p_parser->psz_object_name ) )
1872                 {
1873                     if( b_color )
1874                         utf8_fprintf( stdout, CYAN"   s %s\n"GRAY,
1875                                       pp_shortcuts[i] );
1876                     else
1877                         utf8_fprintf( stdout, "   s %s\n",
1878                                       pp_shortcuts[i] );
1879                 }
1880             }
1881             if( p_parser->psz_capability )
1882             {
1883                 if( b_color )
1884                     utf8_fprintf( stdout, MAGENTA"   c %s (%d)\n"GRAY,
1885                                   p_parser->psz_capability,
1886                                   p_parser->i_score );
1887                 else
1888                     utf8_fprintf( stdout, "   c %s (%d)\n",
1889                                   p_parser->psz_capability,
1890                                   p_parser->i_score );
1891             }
1892         }
1893     }
1894     module_list_free (list);
1895
1896 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1897     PauseConsole();
1898 #endif
1899 }
1900
1901 /*****************************************************************************
1902  * Version: print complete program version
1903  *****************************************************************************
1904  * Print complete program version and build number.
1905  *****************************************************************************/
1906 static void Version( void )
1907 {
1908 #ifdef WIN32
1909     ShowConsole( true );
1910 #endif
1911
1912     utf8_fprintf( stdout, _("VLC version %s (%s)\n"), VLC_Version(),
1913                   psz_vlc_changeset );
1914     utf8_fprintf( stdout, _("Compiled by %s on %s (%s)\n"),
1915              VLC_CompileBy(), VLC_CompileHost(), __DATE__" "__TIME__ );
1916     utf8_fprintf( stdout, _("Compiler: %s\n"), VLC_Compiler() );
1917     utf8_fprintf( stdout, "%s", LICENSE_MSG );
1918
1919 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1920     PauseConsole();
1921 #endif
1922 }
1923
1924 /*****************************************************************************
1925  * ShowConsole: On Win32, create an output console for debug messages
1926  *****************************************************************************
1927  * This function is useful only on Win32.
1928  *****************************************************************************/
1929 #ifdef WIN32 /*  */
1930 static void ShowConsole( bool b_dofile )
1931 {
1932 #   ifndef UNDER_CE
1933     FILE *f_help = NULL;
1934
1935     if( getenv( "PWD" ) && getenv( "PS1" ) ) return; /* cygwin shell */
1936
1937     AllocConsole();
1938     /* Use the ANSI code page (e.g. Windows-1252) as expected by the LibVLC
1939      * Unicode/locale subsystem. By default, we have the obsolecent OEM code
1940      * page (e.g. CP437 or CP850). */
1941     SetConsoleOutputCP (GetACP ());
1942     SetConsoleTitle ("VLC media player version "PACKAGE_VERSION);
1943
1944     freopen( "CONOUT$", "w", stderr );
1945     freopen( "CONIN$", "r", stdin );
1946
1947     if( b_dofile && (f_help = fopen( "vlc-help.txt", "wt" )) )
1948     {
1949         fclose( f_help );
1950         freopen( "vlc-help.txt", "wt", stdout );
1951         utf8_fprintf( stderr, _("\nDumped content to vlc-help.txt file.\n") );
1952     }
1953     else freopen( "CONOUT$", "w", stdout );
1954
1955 #   endif
1956 }
1957 #endif
1958
1959 /*****************************************************************************
1960  * PauseConsole: On Win32, wait for a key press before closing the console
1961  *****************************************************************************
1962  * This function is useful only on Win32.
1963  *****************************************************************************/
1964 #ifdef WIN32 /*  */
1965 static void PauseConsole( void )
1966 {
1967 #   ifndef UNDER_CE
1968
1969     if( getenv( "PWD" ) && getenv( "PS1" ) ) return; /* cygwin shell */
1970
1971     utf8_fprintf( stderr, _("\nPress the RETURN key to continue...\n") );
1972     getchar();
1973     fclose( stdout );
1974
1975 #   endif
1976 }
1977 #endif
1978
1979 /*****************************************************************************
1980  * ConsoleWidth: Return the console width in characters
1981  *****************************************************************************
1982  * We use the stty shell command to get the console width; if this fails or
1983  * if the width is less than 80, we default to 80.
1984  *****************************************************************************/
1985 static int ConsoleWidth( void )
1986 {
1987     unsigned i_width = 80;
1988
1989 #ifndef WIN32
1990     FILE *file = popen( "stty size 2>/dev/null", "r" );
1991     if (file != NULL)
1992     {
1993         if (fscanf (file, "%*u %u", &i_width) <= 0)
1994             i_width = 80;
1995         pclose( file );
1996     }
1997 #elif !defined (UNDER_CE)
1998     CONSOLE_SCREEN_BUFFER_INFO buf;
1999
2000     if (GetConsoleScreenBufferInfo (GetStdHandle (STD_OUTPUT_HANDLE), &buf))
2001         i_width = buf.dwSize.X;
2002 #endif
2003
2004     return i_width;
2005 }