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