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