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