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