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