]> git.sesse.net Git - vlc/blob - src/interface/main.c
71032974c627530cd88fe9fe65c6cf453ba43f8f
[vlc] / src / interface / main.c
1 /*****************************************************************************
2  * main.c: main vlc source
3  * Includes the main() function for vlc. Parses command line, start interface
4  * and spawn threads.
5  *****************************************************************************
6  * Copyright (C) 1998-2001 VideoLAN
7  * $Id: main.c,v 1.186 2002/04/23 14:16:21 sam Exp $
8  *
9  * Authors: Vincent Seguin <seguin@via.ecp.fr>
10  *          Samuel Hocevar <sam@zoy.org>
11  *          Gildas Bazin <gbazin@netcourrier.com>
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
26  *****************************************************************************/
27
28 /*****************************************************************************
29  * Preamble
30  *****************************************************************************/
31 #include <signal.h>                               /* SIGHUP, SIGINT, SIGKILL */
32 #include <stdio.h>                                              /* sprintf() */
33 #include <setjmp.h>                                       /* longjmp, setjmp */
34
35 #include <videolan/vlc.h>
36
37 #ifdef HAVE_GETOPT_LONG
38 #   ifdef HAVE_GETOPT_H
39 #       include <getopt.h>                                       /* getopt() */
40 #   endif
41 #else
42 #   include "GNUgetopt/getopt.h"
43 #endif
44
45 #ifdef SYS_DARWIN
46 #   include <mach/mach.h>                               /* Altivec detection */
47 #   include <mach/mach_error.h>       /* some day the header files||compiler *
48                                                        will define it for us */
49 #   include <mach/bootstrap.h>
50 #endif
51
52 #ifndef WIN32
53 #   include <netinet/in.h>                            /* BSD: struct in_addr */
54 #endif
55
56 #ifdef HAVE_UNISTD_H
57 #   include <unistd.h>
58 #elif defined( _MSC_VER ) && defined( _WIN32 )
59 #   include <io.h>
60 #endif
61
62 #ifdef HAVE_LOCALE_H
63 #   include <locale.h>
64 #endif
65
66 #include <errno.h>                                                 /* ENOMEM */
67 #include <stdlib.h>                                  /* getenv(), strtol(),  */
68 #include <string.h>                                            /* strerror() */
69
70 #include "netutils.h"                                 /* network_ChannelJoin */
71
72 #include "stream_control.h"
73 #include "input_ext-intf.h"
74
75 #include "intf_playlist.h"
76 #include "interface.h"
77
78 #include "audio_output.h"
79
80 #include "video.h"
81 #include "video_output.h"
82
83 #include "debug.h"
84
85 /*****************************************************************************
86  * Configuration options for the main program. Each module will also separatly
87  * define its own configuration options.
88  * Look into configuration.h if you need to know more about the following
89  * macros.
90  *
91  *****************************************************************************/
92 #define BUILTIN
93 #define MODULE_NAME main
94 #include "modules_inner.h"                        /* for configuration stuff */
95
96
97 #define INTF_TEXT N_("interface module")
98 #define INTF_LONGTEXT N_( \
99     "This option allows you to select the interface used by vlc.\nNote that " \
100     "the default behavior is to automatically select the best method " \
101     "available.")
102
103 #define WARNING_TEXT N_("warning level (or use -v, -vv, etc...)")
104 #define WARNING_LONGTEXT N_( \
105     "Increasing the warning level will allow you to see more debug messages " \
106     "and can sometimes help you to troubleshoot a problem.")
107
108 #define STATS_TEXT N_("output statistics")
109 #define STATS_LONGTEXT N_( \
110     "Enabling the stats mode will flood your log console with various " \
111     "statistics messages.")
112
113 #define INTF_PATH_TEXT N_("interface default search path")
114 #define INTF_PATH_LONGTEXT N_( \
115     "This option allows you to set the default path that the interface will " \
116     "open when looking for a file.")
117
118 #define AOUT_TEXT N_("audio output module")
119 #define AOUT_LONGTEXT N_( \
120     "This option allows you to select the audio audio output method used by " \
121     "vlc.\nNote that the default behavior is to automatically select the " \
122     "best method available.")
123
124 #define NOAUDIO_TEXT N_("disable audio")
125 #define NOAUDIO_LONGTEXT N_( \
126     "This will completely disable the audio output. The audio decoding " \
127     "stage shouldn't even be done, so it can allow you to save some " \
128     "processing power.")
129
130 #define MONO_TEXT N_("mono audio")
131 #define MONO_LONGTEXT N_("This will force a mono audio output")
132
133 #define VOLUME_TEXT N_("audio output volume")
134 #define VOLUME_LONGTEXT N_( \
135     "You can set the default audio output volume here, in a range from 0 to " \
136     "1024.")
137
138 #define FORMAT_TEXT N_("audio output format")
139 #define FORMAT_LONGTEXT N_( \
140     "You can force the audio output format here.\n" \
141     "0 -> 16 bits signed native endian (default)\n" \
142     "1 ->  8 bits unsigned\n"                       \
143     "2 -> 16 bits signed little endian\n"           \
144     "3 -> 16 bits signed big endian\n"              \
145     "4 ->  8 bits signed\n"                         \
146     "5 -> 16 bits unsigned little endian\n"         \
147     "6 -> 16 bits unsigned big endian\n"            \
148     "7 -> mpeg2 audio (unsupported)\n"              \
149     "8 -> ac3 pass-through")
150
151 #define RATE_TEXT N_("audio output frequency (Hz)")
152 #define RATE_LONGTEXT N_( \
153     "You can force the audio output frequency here.\nCommon values are " \
154     "48000, 44100, 32000, 22050, 16000, 11025, 8000.")
155
156 #define DESYNC_TEXT N_("compensate desynchronization of audio (in ms)")
157 #define DESYNC_LONGTEXT N_( \
158     "This option allows you to delay the audio output. This can be handy if " \
159     "you notice a lag between the video and the audio.")
160
161 #define VOUT_TEXT N_("video output module")
162 #define VOUT_LONGTEXT N_( \
163     "This option allows you to select the video output method used by vlc.\n" \
164     "Note that the default behavior is to automatically select the best " \
165     "method available.")
166
167 #define NOVIDEO_TEXT N_("disable video")
168 #define NOVIDEO_LONGTEXT N_( \
169     "This will completely disable the video output. The video decoding " \
170     "stage shouldn't even be done, so it can allow you to save some " \
171     "processing power.")
172
173 #define DISPLAY_TEXT N_("display identifier")
174 #define DISPLAY_LONGTEXT ""
175
176 #define WIDTH_TEXT N_("video width")
177 #define WIDTH_LONGTEXT N_( \
178     "You can enforce the video width here.\nNote that by default vlc will " \
179     "adapt to the video characteristics.")
180
181 #define HEIGHT_TEXT N_("video height")
182 #define HEIGHT_LONGTEXT N_( \
183     "You can enforce the video height here.\nNote that by default vlc will " \
184     "adapt to the video characteristics.")
185
186 #define ZOOM_TEXT N_("zoom video")
187 #define ZOOM_LONGTEXT N_( \
188     "You can zoom the video by the specified factor.")
189
190 #define GRAYSCALE_TEXT N_("grayscale video output")
191 #define GRAYSCALE_LONGTEXT N_( \
192     "Using this option, vlc will not decode the color information from the " \
193     "video (this can also allow you to save some processing power).")
194
195 #define FULLSCREEN_TEXT N_("fullscreen video output")
196 #define FULLSCREEN_LONGTEXT N_( \
197     "If this option is enabled, vlc will always start a video in fullscreen " \
198     "mode.")
199
200 #define NOOVERLAY_TEXT N_("disable hardware acceleration for the video output")
201 #define NOOVERLAY_LONGTEXT N_( \
202     "By default vlc will try to take advantage of the overlay capabilities " \
203     "of you graphics card.")
204
205 #define SPUMARGIN_TEXT N_("force SPU position")
206 #define SPUMARGIN_LONGTEXT ""
207
208 #define FILTER_TEXT N_("video filter module")
209 #define FILTER_LONGTEXT ""
210
211 #define SERVER_PORT_TEXT N_("server port")
212 #define SERVER_PORT_LONGTEXT ""
213
214 #define NETCHANNEL_TEXT N_("enable network channel mode")
215 #define NETCHANNEL_LONGTEXT ""
216
217 #define CHAN_SERV_TEXT N_("channel server address")
218 #define CHAN_SERV_LONGTEXT ""
219
220 #define CHAN_PORT_TEXT N_("channel server port")
221 #define CHAN_PORT_LONGTEXT ""
222
223 #define IFACE_TEXT N_("network interface")
224 #define IFACE_LONGTEXT ""
225
226 #define INPUT_PROGRAM_TEXT N_("choose program (SID)")
227 #define INPUT_PROGRAM_LONGTEXT N_( \
228     "Choose the program to select by giving its Service ID.")
229
230 #define INPUT_AUDIO_TEXT N_("choose audio")
231 #define INPUT_AUDIO_LONGTEXT ""
232
233 #define INPUT_CHAN_TEXT N_("choose channel")
234 #define INPUT_CHAN_LONGTEXT ""
235
236 #define INPUT_SUBT_TEXT N_("choose subtitles")
237 #define INPUT_SUBT_LONGTEXT ""
238
239 #define DVD_DEV_TEXT N_("DVD device")
240 #define DVD_DEV_LONGTEXT ""
241
242 #define VCD_DEV_TEXT N_("VCD device")
243 #define VCD_DEV_LONGTEXT ""
244
245 #define IPV6_TEXT N_("force IPv6")
246 #define IPV6_LONGTEXT ""
247
248 #define IPV4_TEXT N_("force IPv4")
249 #define IPV4_LONGTEXT ""
250
251 #define ADEC_MPEG_TEXT N_("choose MPEG audio decoder")
252 #define ADEC_MPEG_LONGTEXT ""
253
254 #define ADEC_AC3_TEXT N_("choose AC3 audio decoder")
255 #define ADEC_AC3_LONGTEXT ""
256
257 #define VDEC_SMP_TEXT N_("use additional processors")
258 #define VDEC_SMP_LONGTEXT ""
259
260 #define VPAR_SYNCHRO_TEXT N_("force synchro algorithm {I|I+|IP|IP+|IPB}")
261 #define VPAR_SYNCHRO_LONGTEXT ""
262
263 #define NOMMX_TEXT N_("disable CPU's MMX support")
264 #define NOMMX_LONGTEXT ""
265
266 #define NO3DN_TEXT N_("disable CPU's 3D Now! support")
267 #define NO3DN_LONGTEXT ""
268
269 #define NOMMXEXT_TEXT N_("disable CPU's MMX EXT support")
270 #define NOMMXEXT_LONGTEXT ""
271
272 #define NOSSE_TEXT N_("disable CPU's SSE support")
273 #define NOSSE_LONGTEXT ""
274
275 #define NOALTIVEC_TEXT N_("disable CPU's AltiVec support")
276 #define NOALTIVEC_LONGTEXT ""
277
278 #define PLAYLIST_LAUNCH_TEXT N_("launch playlist on startup")
279 #define PLAYLIST_LAUNCH_LONGTEXT ""
280
281 #define PLAYLIST_ENQUEUE_TEXT N_("enqueue playlist as default")
282 #define PLAYLIST_ENQUEUE_LONGTEXT ""
283
284 #define PLAYLIST_LOOP_TEXT N_("loop playlist on end")
285 #define PLAYLIST_LOOP_LONGTEXT ""
286
287 #define MEMCPY_TEXT N_("memory copy module")
288 #define MEMCPY_LONGTEXT ""
289
290 #define FAST_PTHREAD_TEXT N_("fast pthread on NT/2K/XP (developpers only)")
291 #define FAST_PTHREAD_LONGTEXT N_( \
292     "On Windows NT/2K/XP we use a slow but correct pthread implementation, " \
293     "you can also use this faster implementation but you might experience " \
294     "problems with it.")
295
296 /*
297  * Quick usage guide for the configuration options:
298  *
299  * MODULE_CONFIG_START
300  * MODULE_CONFIG_STOP
301  * ADD_CATEGORY_HINT( N_(text), longtext )
302  * ADD_SUBCATEGORY_HINT( N_(text), longtext )
303  * ADD_STRING( option_name, value, p_callback, N_(text), N_(longtext) )
304  * ADD_FILE( option_name, psz_value, p_callback, N_(text), N_(longtext) )
305  * ADD_MODULE( option_name, psz_value, i_capability, p_callback,
306  *             N_(text), N_(longtext) )
307  * ADD_INTEGER( option_name, i_value, p_callback, N_(text), N_(longtext) )
308  * ADD_BOOL( option_name, p_callback, N_(text), N_(longtext) )
309  */
310
311 MODULE_CONFIG_START
312
313 /* Interface options */
314 ADD_CATEGORY_HINT( N_("Interface"), NULL)
315 ADD_MODULE_WITH_SHORT  ( "intf", 'I', MODULE_CAPABILITY_INTF, NULL, NULL, INTF_TEXT, INTF_LONGTEXT )
316 ADD_INTEGER ( "warning", 0, NULL, WARNING_TEXT, WARNING_LONGTEXT )
317 ADD_BOOL    ( "stats", NULL, STATS_TEXT, STATS_LONGTEXT )
318 ADD_STRING  ( "search-path", NULL, NULL, INTF_PATH_TEXT, INTF_PATH_LONGTEXT )
319
320 /* Audio options */
321 ADD_CATEGORY_HINT( N_("Audio"), NULL)
322 ADD_MODULE_WITH_SHORT  ( "aout", 'A', MODULE_CAPABILITY_AOUT, NULL, NULL, AOUT_TEXT, AOUT_LONGTEXT )
323 ADD_BOOL    ( "noaudio", NULL, NOAUDIO_TEXT, NOAUDIO_LONGTEXT )
324 ADD_BOOL    ( "mono", NULL, MONO_TEXT, MONO_LONGTEXT )
325 ADD_INTEGER ( "volume", VOLUME_DEFAULT, NULL, VOLUME_TEXT, VOLUME_LONGTEXT )
326 ADD_INTEGER ( "rate", 44100, NULL, RATE_TEXT, RATE_LONGTEXT )
327 ADD_INTEGER ( "desync", 0, NULL, DESYNC_TEXT, DESYNC_LONGTEXT )
328 ADD_INTEGER ( "audio-format", 0, NULL, FORMAT_TEXT,
329               FORMAT_LONGTEXT )
330
331 /* Video options */
332 ADD_CATEGORY_HINT( N_("Video"), NULL )
333 ADD_MODULE_WITH_SHORT  ( "vout", 'V', MODULE_CAPABILITY_VOUT, NULL, NULL, VOUT_TEXT, VOUT_LONGTEXT )
334 ADD_BOOL    ( "novideo", NULL, NOVIDEO_TEXT, NOVIDEO_LONGTEXT )
335 ADD_INTEGER ( "width", -1, NULL, WIDTH_TEXT, WIDTH_LONGTEXT )
336 ADD_INTEGER ( "height", -1, NULL, HEIGHT_TEXT, HEIGHT_LONGTEXT )
337 ADD_FLOAT   ( "zoom", 1, NULL, ZOOM_TEXT, ZOOM_LONGTEXT )
338 ADD_BOOL    ( "grayscale", NULL, GRAYSCALE_TEXT, GRAYSCALE_LONGTEXT )
339 ADD_BOOL    ( "fullscreen", NULL, FULLSCREEN_TEXT, FULLSCREEN_LONGTEXT )
340 ADD_BOOL    ( "nooverlay", NULL, NOOVERLAY_TEXT, NOOVERLAY_LONGTEXT )
341 ADD_INTEGER ( "spumargin", -1, NULL, SPUMARGIN_TEXT, SPUMARGIN_LONGTEXT )
342 ADD_MODULE  ( "filter", MODULE_CAPABILITY_VOUT, NULL, NULL, FILTER_TEXT, FILTER_LONGTEXT )
343
344 /* Input options */
345 ADD_CATEGORY_HINT( N_("Input"), NULL )
346 ADD_INTEGER ( "server-port", 1234, NULL, SERVER_PORT_TEXT, SERVER_PORT_LONGTEXT )
347 ADD_BOOL    ( "network-channel", NULL, NETCHANNEL_TEXT, NETCHANNEL_LONGTEXT )
348 ADD_STRING  ( "channel-server", "localhost", NULL, CHAN_SERV_TEXT, CHAN_SERV_LONGTEXT )
349 ADD_INTEGER ( "channel-port", 6010, NULL, CHAN_PORT_TEXT, CHAN_PORT_LONGTEXT )
350 ADD_STRING  ( "iface", "eth0", NULL, IFACE_TEXT, IFACE_LONGTEXT )
351
352 ADD_INTEGER ( "program", 0, NULL, INPUT_PROGRAM_TEXT, INPUT_PROGRAM_LONGTEXT )
353 ADD_INTEGER ( "audio-type", -1, NULL, INPUT_AUDIO_TEXT, INPUT_AUDIO_LONGTEXT )
354 ADD_INTEGER ( "audio-channel", -1, NULL, INPUT_CHAN_TEXT, INPUT_CHAN_LONGTEXT )
355 ADD_INTEGER ( "spu-channel", -1, NULL, INPUT_SUBT_TEXT, INPUT_SUBT_LONGTEXT )
356
357 ADD_STRING  ( "dvd", "/dev/dvd", NULL, DVD_DEV_TEXT, DVD_DEV_LONGTEXT )
358 ADD_STRING  ( "vcd", "/dev/cdrom", NULL, VCD_DEV_TEXT, VCD_DEV_LONGTEXT )
359
360 ADD_BOOL_WITH_SHORT    ( "ipv6", '6', NULL, IPV6_TEXT, IPV6_LONGTEXT )
361 ADD_BOOL_WITH_SHORT    ( "ipv4", '4', NULL, IPV4_TEXT, IPV4_LONGTEXT )
362
363 /* Decoder options */
364 ADD_CATEGORY_HINT( N_("Decoders"), NULL )
365 ADD_MODULE  ( "mpeg-adec", MODULE_CAPABILITY_DECODER, NULL, NULL, ADEC_MPEG_TEXT, ADEC_MPEG_LONGTEXT )
366 ADD_MODULE  ( "ac3-adec", MODULE_CAPABILITY_DECODER, NULL, NULL, ADEC_AC3_TEXT, ADEC_AC3_LONGTEXT )
367 ADD_INTEGER ( "vdec-smp", 0, NULL, VDEC_SMP_TEXT, VDEC_SMP_LONGTEXT )
368 ADD_STRING  ( "vpar-synchro", NULL, NULL, VPAR_SYNCHRO_TEXT, VPAR_SYNCHRO_LONGTEXT )
369
370 /* CPU options */
371 ADD_CATEGORY_HINT( N_("CPU"), NULL )
372 ADD_BOOL    ( "nommx", NULL, NOMMX_TEXT, NOMMX_LONGTEXT )
373 ADD_BOOL    ( "no3dn", NULL, NO3DN_TEXT, NO3DN_LONGTEXT )
374 ADD_BOOL    ( "nommxext", NULL, NOMMXEXT_TEXT, NOMMXEXT_LONGTEXT )
375 ADD_BOOL    ( "nosse", NULL, NOSSE_TEXT, NOSSE_LONGTEXT )
376 ADD_BOOL    ( "noaltivec", NULL, NOALTIVEC_TEXT, NOALTIVEC_LONGTEXT )
377
378 /* Playlist options */
379 ADD_CATEGORY_HINT( N_("Playlist"), NULL )
380 ADD_BOOL    ( "launch-playlist", NULL, PLAYLIST_LAUNCH_TEXT, PLAYLIST_LAUNCH_LONGTEXT )
381 ADD_BOOL    ( "enqueue-playlist", NULL, PLAYLIST_ENQUEUE_TEXT, PLAYLIST_ENQUEUE_LONGTEXT )
382 ADD_BOOL    ( "loop-playlist", NULL, PLAYLIST_LOOP_TEXT, PLAYLIST_LOOP_LONGTEXT )
383
384 /* Misc options */
385 ADD_CATEGORY_HINT( N_("Miscellaneous"), NULL )
386 ADD_MODULE  ( "memcpy", MODULE_CAPABILITY_MEMCPY, NULL, NULL, MEMCPY_TEXT, MEMCPY_LONGTEXT )
387 ADD_MODULE  ( "access", MODULE_CAPABILITY_ACCESS, NULL, NULL, "access module", "This is a legacy entry to let you configure access modules" )
388 ADD_MODULE  ( "demux", MODULE_CAPABILITY_DEMUX, NULL, NULL, "demux module", "This is a legacy entry to let you configure demux modules" )
389
390 #if defined(WIN32)
391 ADD_BOOL    ( "fast_pthread", NULL, FAST_PTHREAD_TEXT, FAST_PTHREAD_LONGTEXT )
392 #endif
393
394 MODULE_CONFIG_STOP
395
396 MODULE_INIT_START
397     SET_DESCRIPTION( N_("main program") )
398     ADD_CAPABILITY( MAIN, 100/*whatever*/ )
399 MODULE_INIT_STOP
400
401 MODULE_ACTIVATE_START
402 MODULE_ACTIVATE_STOP
403
404 MODULE_DEACTIVATE_START
405 MODULE_DEACTIVATE_STOP
406
407 /* Hack for help options */
408 static module_t help_module;
409 static module_config_t p_help_config[] =
410 {
411     { MODULE_CONFIG_ITEM_BOOL, "help", 'h', N_("print help"),
412       NULL, NULL, 0, 0, NULL, NULL, 0 },
413     { MODULE_CONFIG_ITEM_BOOL, "longhelp", 'H', N_("print detailed help"),
414       NULL, NULL, 0, 0, NULL, NULL, 0 },
415     { MODULE_CONFIG_ITEM_BOOL, "list", 'l', N_("print a list of available "
416       "modules"), NULL, NULL, 0, 0, NULL, NULL, 0 },
417     { MODULE_CONFIG_ITEM_STRING, "module", 'p', N_("print help on module "
418       "<string>"), NULL, NULL, 0, 0, NULL, &help_module.config_lock, 0 },
419     { MODULE_CONFIG_ITEM_BOOL, "version", '\0',
420       N_("print version information"), NULL, NULL, 0, 0, NULL, NULL, 0 },
421     { MODULE_CONFIG_HINT_END, NULL, '\0', NULL, NULL, NULL, 0, 0,
422       NULL, NULL, 0 }
423 };
424
425 /*****************************************************************************
426  * End configuration.
427  *****************************************************************************/
428
429 /*****************************************************************************
430  * Global variables - these are the only ones, see main.h and modules.h
431  *****************************************************************************/
432 main_t        *p_main;
433 p_main_sys_t  p_main_sys;
434 module_bank_t *p_module_bank;
435 input_bank_t  *p_input_bank;
436 aout_bank_t   *p_aout_bank;
437 vout_bank_t   *p_vout_bank;
438
439 /*****************************************************************************
440  * Local prototypes
441  *****************************************************************************/
442 static int  GetFilenames                ( int i_argc, char *ppsz_argv[] );
443 static void Usage                       ( const char *psz_module_name );
444 static void ListModules                 ( void );
445 static void Version                     ( void );
446
447 static void InitSignalHandler           ( void );
448 static void SimpleSignalHandler         ( int i_signal );
449 static void FatalSignalHandler          ( int i_signal );
450 static void IllegalSignalHandler        ( int i_signal );
451 static u32  CPUCapabilities             ( void );
452
453 #ifdef WIN32
454 static void ShowConsole                 ( void );
455 #endif
456
457 static jmp_buf env;
458 static int     i_illegal;
459 static char   *psz_capability;
460
461 /*****************************************************************************
462  * main: parse command line, start interface and spawn threads
463  *****************************************************************************
464  * Steps during program execution are:
465  *      -configuration parsing and messages interface initialization
466  *      -opening of audio output device and some global modules
467  *      -execution of interface, which exit on error or on user request
468  *      -closing of audio output device and some global modules
469  * On error, the spawned threads are canceled, and the open devices closed.
470  *****************************************************************************/
471 int main( int i_argc, char *ppsz_argv[], char *ppsz_env[] )
472 {
473     main_t        main_data;                /* root of all data - see main.h */
474     module_bank_t module_bank;
475     input_bank_t  input_bank;
476     aout_bank_t   aout_bank;
477     vout_bank_t   vout_bank;
478     char *psz_module;
479     char *p_tmp;
480     struct module_config_s *p_item;
481
482     p_main        = &main_data;               /* set up the global variables */
483     p_module_bank = &module_bank;
484     p_input_bank  = &input_bank;
485     p_aout_bank   = &aout_bank;
486     p_vout_bank   = &vout_bank;
487
488     p_main->i_warning_level = 0;
489
490     /*
491      * Support for gettext
492      */
493 #if defined( ENABLE_NLS ) && defined ( HAVE_GETTEXT )
494 #   if defined( HAVE_LOCALE_H ) && defined( HAVE_LC_MESSAGES )
495     if( !setlocale( LC_MESSAGES, "" ) )
496     {
497         fprintf( stderr, "warning: unsupported locale settings\n" );
498     }
499
500     setlocale( LC_CTYPE, "" );
501 #   endif
502
503     if( !bindtextdomain( PACKAGE, LOCALEDIR ) )
504     {
505         fprintf( stderr, "warning: no domain %s in directory %s\n",
506                  PACKAGE, LOCALEDIR );
507     }
508
509     textdomain( PACKAGE );
510 #endif
511
512     /*
513      * Initialize threads system
514      */
515     vlc_threads_init();
516
517     /*
518      * Test if our code is likely to run on this CPU
519      */
520     p_main->i_cpu_capabilities = CPUCapabilities();
521
522     /*
523      * System specific initialization code
524      */
525 #if defined( SYS_BEOS ) || defined( SYS_DARWIN ) || defined( WIN32 )
526     system_Init( &i_argc, ppsz_argv, ppsz_env );
527
528 #elif defined( SYS_LINUX )
529 #   ifdef DEBUG
530     /* Activate malloc checking routines to detect heap corruptions. */
531     putenv( "MALLOC_CHECK_=2" );
532     putenv( "GNOME_DISABLE_CRASH_DIALOG=1" );
533 #   endif
534 #endif
535
536     /*
537      * Initialize messages interface
538      */
539     intf_MsgCreate();
540
541     intf_Msg( COPYRIGHT_MESSAGE "\n" );
542
543
544     /* Get the executable name (similar to the basename command) */
545     p_main->psz_arg0 = p_tmp = ppsz_argv[ 0 ];
546     while( *p_tmp )
547     {
548         if( *p_tmp == '/' ) p_main->psz_arg0 = ++p_tmp;
549         else ++p_tmp;
550     }
551
552     /*
553      * Initialize the module bank and and load the configuration of the main
554      * module. We need to do this at this stage to be able to display a short
555      * help if required by the user. (short help == main module options)
556      */
557     module_InitBank();
558     module_LoadMain();
559
560     /* Hack: insert the help module here */
561     help_module.psz_name = "help";
562     help_module.psz_longname = _( "help module" );
563     help_module.i_config_items =
564                     sizeof(p_help_config) / sizeof(module_config_t) - 1;
565     vlc_mutex_init( &help_module.config_lock );
566     help_module.p_config = config_Duplicate( p_help_config );
567     for( p_item = help_module.p_config;
568          p_item->i_type != MODULE_CONFIG_HINT_END;
569          p_item++ )
570     {
571         p_item->p_lock = &help_module.config_lock;
572     }
573     help_module.next = p_module_bank->first;
574     p_module_bank->first = &help_module;
575     /* end hack */
576
577     if( config_LoadCmdLine( &i_argc, ppsz_argv, 1 ) )
578     {
579         intf_MsgDestroy();
580         return( errno );
581     }
582
583     /* Check for short help option */
584     if( config_GetIntVariable( "help" ) )
585     {
586         intf_Msg( _("Usage: %s [options] [parameters] [file]...\n"),
587                     p_main->psz_arg0 );
588
589         Usage( "help" );
590         Usage( "main" );
591         return( -1 );
592     }
593
594     /* Check for version option */
595     if( config_GetIntVariable( "version" ) )
596     {
597         Version();
598         return( -1 );
599     }
600
601     /* Hack: remove the help module here */
602     p_module_bank->first = help_module.next;
603     /* end hack */
604
605     /*
606      * Load the builtins and plugins into the module_bank.
607      * We have to do it before config_Load*() because this also gets the
608      * list of configuration options exported by each module and loads their
609      * default values.
610      */
611     module_LoadBuiltins();
612     module_LoadPlugins();
613     intf_WarnMsg( 2, "module: module bank initialized, found %i modules",
614                   p_module_bank->i_count );
615
616     /* Hack: insert the help module here */
617     help_module.next = p_module_bank->first;
618     p_module_bank->first = &help_module;
619     /* end hack */
620
621     /* Check for help on modules */
622     if( (p_tmp = config_GetPszVariable( "module" )) )
623     {
624         Usage( p_tmp );
625         free( p_tmp );
626         return( -1 );
627     }
628
629     /* Check for long help option */
630     if( config_GetIntVariable( "longhelp" ) )
631     {
632         Usage( NULL );
633         return( -1 );
634     }
635
636     /* Check for module list option */
637     if( config_GetIntVariable( "list" ) )
638     {
639         ListModules();
640         return( -1 );
641     }
642
643     /* Hack: remove the help module here */
644     p_module_bank->first = help_module.next;
645     /* end hack */
646
647
648     /*
649      * Override default configuration with config file settings
650      */
651     vlc_mutex_init( &p_main->config_lock );
652     p_main->psz_homedir = config_GetHomeDir();
653     config_LoadConfigFile( NULL );
654
655     /*
656      * Override configuration with command line settings
657      */
658     if( config_LoadCmdLine( &i_argc, ppsz_argv, 0 ) )
659     {
660 #ifdef WIN32
661         ShowConsole();
662         /* Pause the console because it's destroyed when we exit */
663         intf_Msg( "The command line options couldn't be loaded, check that "
664                   "they are valid.\nPress the RETURN key to continue..." );
665         getchar();
666 #endif
667         intf_MsgDestroy();
668         return( errno );
669     }
670
671
672     /*
673      * System specific configuration
674      */
675 #if defined( WIN32 )
676     system_Configure();
677 #endif
678
679     /* p_main inititalization. FIXME ? */
680     p_main->i_warning_level = config_GetIntVariable( "warning" );
681     p_main->i_desync = config_GetIntVariable( "desync" ) * (mtime_t)1000;
682     p_main->b_stats = config_GetIntVariable( "stats" );
683     p_main->b_audio = !config_GetIntVariable( "noaudio" );
684     p_main->b_stereo= !config_GetIntVariable( "mono" );
685     p_main->b_video = !config_GetIntVariable( "novideo" );
686     if( config_GetIntVariable( "nommx" ) )
687         p_main->i_cpu_capabilities &= ~CPU_CAPABILITY_MMX;
688     if( config_GetIntVariable( "no3dn" ) )
689         p_main->i_cpu_capabilities &= ~CPU_CAPABILITY_3DNOW;
690     if( config_GetIntVariable( "nommxext" ) )
691         p_main->i_cpu_capabilities &= ~CPU_CAPABILITY_MMXEXT;
692     if( config_GetIntVariable( "nosse" ) )
693         p_main->i_cpu_capabilities &= ~CPU_CAPABILITY_SSE;
694     if( config_GetIntVariable( "noaltivec" ) )
695         p_main->i_cpu_capabilities &= ~CPU_CAPABILITY_ALTIVEC;
696
697
698     if( p_main->b_stats )
699     {
700         char p_capabilities[200];
701         p_capabilities[0] = '\0';
702
703 #define PRINT_CAPABILITY( capability, string )                              \
704         if( p_main->i_cpu_capabilities & capability )                       \
705         {                                                                   \
706             strncat( p_capabilities, string " ",                            \
707                      sizeof(p_capabilities) - strlen(p_capabilities) );     \
708             p_capabilities[sizeof(p_capabilities) - 1] = '\0';              \
709         }
710
711         PRINT_CAPABILITY( CPU_CAPABILITY_486, "486" );
712         PRINT_CAPABILITY( CPU_CAPABILITY_586, "586" );
713         PRINT_CAPABILITY( CPU_CAPABILITY_PPRO, "Pentium Pro" );
714         PRINT_CAPABILITY( CPU_CAPABILITY_MMX, "MMX" );
715         PRINT_CAPABILITY( CPU_CAPABILITY_3DNOW, "3DNow!" );
716         PRINT_CAPABILITY( CPU_CAPABILITY_MMXEXT, "MMXEXT" );
717         PRINT_CAPABILITY( CPU_CAPABILITY_SSE, "SSE" );
718         PRINT_CAPABILITY( CPU_CAPABILITY_ALTIVEC, "Altivec" );
719         PRINT_CAPABILITY( CPU_CAPABILITY_FPU, "FPU" );
720         intf_StatMsg( "info: CPU has capabilities : %s", p_capabilities );
721     }
722
723     /*
724      * Initialize playlist and get commandline files
725      */
726     p_main->p_playlist = intf_PlaylistCreate();
727     if( !p_main->p_playlist )
728     {
729         intf_ErrMsg( "playlist error: playlist initialization failed" );
730         intf_MsgDestroy();
731         return( errno );
732     }
733     intf_PlaylistInit( p_main->p_playlist );
734
735     /*
736      * Get input filenames given as commandline arguments
737      */
738     GetFilenames( i_argc, ppsz_argv );
739
740     /*
741      * Initialize input, aout and vout banks
742      */
743     input_InitBank();
744     aout_InitBank();
745     vout_InitBank();
746
747     /*
748      * Choose the best memcpy module
749      */
750     psz_module = config_GetPszVariable( "memcpy" );
751     p_main->p_memcpy_module = module_Need( MODULE_CAPABILITY_MEMCPY,
752                                            psz_module, NULL );
753     if( psz_module ) free( psz_module );
754     if( p_main->p_memcpy_module == NULL )
755     {
756         intf_ErrMsg( "intf error: no suitable memcpy module, "
757                      "using libc default" );
758         p_main->pf_memcpy = memcpy;
759     }
760     else
761     {
762         p_main->pf_memcpy = p_main->p_memcpy_module->p_functions
763                                   ->memcpy.functions.memcpy.pf_memcpy;
764     }
765
766     /*
767      * Initialize shared resources and libraries
768      */
769     if( config_GetIntVariable( "network-channel" ) &&
770         network_ChannelCreate() )
771     {
772         /* On error during Channels initialization, switch off channels */
773         intf_ErrMsg( "intf error: channels initialization failed, "
774                                  "deactivating channels" );
775         config_PutIntVariable( "network-channel", 0 );
776     }
777
778     /*
779      * Try to run the interface
780      */
781     p_main->p_intf = intf_Create();
782     if( p_main->p_intf == NULL )
783     {
784         intf_ErrMsg( "intf error: interface initialization failed" );
785     }
786     else
787     {
788         /*
789          * Set signal handling policy for all threads
790          */
791         InitSignalHandler();
792
793         /*
794          * This is the main loop
795          */
796         p_main->p_intf->pf_run( p_main->p_intf );
797
798         /*
799          * Finished, destroy the interface
800          */
801         intf_Destroy( p_main->p_intf );
802
803         /*
804          * Go back into channel 0 which is the network
805          */
806         if( config_GetIntVariable( "network-channel" ) && p_main->p_channel )
807         {
808             network_ChannelJoin( COMMON_CHANNEL );
809         }
810     }
811
812     /*
813      * Free input, aout and vout banks
814      */
815     input_EndBank();
816     vout_EndBank();
817     aout_EndBank();
818
819     /*
820      * Free playlist
821      */
822     intf_PlaylistDestroy( p_main->p_playlist );
823
824     /*
825      * Free memcpy module if it was allocated
826      */
827     if( p_main->p_memcpy_module != NULL )
828     {
829         module_Unneed( p_main->p_memcpy_module );
830     }
831
832     /*
833      * Free module bank
834      */
835     module_EndBank();
836
837     /*
838      * System specific cleaning code
839      */
840 #if defined( SYS_BEOS ) || defined( SYS_DARWIN ) || defined( WIN32 )
841     system_End();
842 #endif
843
844
845     /*
846      * Terminate messages interface and program
847      */
848     intf_WarnMsg( 1, "intf: program terminated" );
849     intf_MsgDestroy();
850
851     /*
852      * Stop threads system
853      */
854     vlc_threads_end( );
855
856     return 0;
857 }
858
859
860 /* following functions are local */
861
862 /*****************************************************************************
863  * GetFilenames: parse command line options which are not flags
864  *****************************************************************************
865  * Parse command line for input files.
866  *****************************************************************************/
867 static int GetFilenames( int i_argc, char *ppsz_argv[] )
868 {
869     int i_opt;
870
871     /* We assume that the remaining parameters are filenames */
872     for( i_opt = optind; i_opt < i_argc; i_opt++ )
873     {
874         intf_PlaylistAdd( p_main->p_playlist, PLAYLIST_END,
875                           ppsz_argv[ i_opt ] );
876     }
877
878     return( 0 );
879 }
880
881 /*****************************************************************************
882  * Usage: print program usage
883  *****************************************************************************
884  * Print a short inline help. Message interface is initialized at this stage.
885  *****************************************************************************/
886 static void Usage( const char *psz_module_name )
887 {
888 #define FORMAT_STRING "      --%s%s%s%s%s %s"
889     /* option name ---------------' | | | |  |
890      * <bra ------------------------' | | |  |
891      * option type or "" -------------' | |  |
892      * ket> ----------------------------' |  |
893      * padding spaces --------------------'  |
894      * comment ------------------------------'
895      *
896      * The purpose of having bra and ket is that we might i18n them as well.
897      */
898 #define LINE_START 8
899 #define PADDING_SPACES 25
900     module_t *p_module;
901     module_config_t *p_item;
902     char psz_spaces[PADDING_SPACES+LINE_START+1];
903     char psz_format[sizeof(FORMAT_STRING)];
904
905     memset( psz_spaces, ' ', PADDING_SPACES+LINE_START );
906     psz_spaces[PADDING_SPACES+LINE_START] = '\0';
907
908     strcpy( psz_format, FORMAT_STRING );
909
910 #ifdef WIN32
911     ShowConsole();
912 #endif
913
914     /* Enumerate the config of each module */
915     for( p_module = p_module_bank->first ;
916          p_module != NULL ;
917          p_module = p_module->next )
918     {
919         if( psz_module_name && strcmp( psz_module_name, p_module->psz_name ) )
920             continue;
921
922         /* ignore modules without config options */
923         if( !p_module->i_config_items ) continue;
924
925         /* print module name */
926         intf_Msg( _("%s module options:\n"), p_module->psz_name );
927
928         for( p_item = p_module->p_config;
929              p_item->i_type != MODULE_CONFIG_HINT_END;
930              p_item++ )
931         {
932             char *psz_bra = NULL, *psz_type = NULL, *psz_ket = NULL;
933             int i;
934
935             if( p_item->i_short )
936             {
937                 psz_format[2] = '-';
938                 psz_format[3] = p_item->i_short;
939                 psz_format[4] = ',';
940             }
941             else
942             {
943                 psz_format[2] = ' ';
944                 psz_format[3] = ' ';
945                 psz_format[4] = ' ';
946             }
947
948             switch( p_item->i_type )
949             {
950             case MODULE_CONFIG_HINT_CATEGORY:
951                 intf_Msg( " %s", p_item->psz_text );
952                 break;
953
954             case MODULE_CONFIG_ITEM_STRING:
955             case MODULE_CONFIG_ITEM_FILE:
956             case MODULE_CONFIG_ITEM_MODULE: /* We could also have "=<" here */
957                 psz_bra = " <"; psz_type = _("string"); psz_ket = ">";
958                 break;
959             case MODULE_CONFIG_ITEM_INTEGER:
960                 psz_bra = " <"; psz_type = _("integer"); psz_ket = ">";
961                 break;
962             case MODULE_CONFIG_ITEM_FLOAT:
963                 psz_bra = " <"; psz_type = _("float"); psz_ket = ">";
964                 break;
965             case MODULE_CONFIG_ITEM_BOOL:
966                 psz_bra = ""; psz_type = ""; psz_ket = "";
967                 break;
968             }
969
970             if( psz_type )
971             {
972                 i = PADDING_SPACES - strlen( p_item->psz_name )
973                      - strlen( psz_bra ) - strlen( psz_type )
974                      - strlen( psz_ket ) - 1;
975                 if( i < 0 )
976                 {
977                     i = 0;
978                     psz_spaces[i] = '\n';
979                 }
980                 else
981                 {
982                     psz_spaces[i] = '\0';
983                 }
984
985                 intf_Msg( psz_format, p_item->psz_name, psz_bra, psz_type,
986                           psz_ket, psz_spaces, p_item->psz_text );
987                 psz_spaces[i] = ' ';
988             }
989         }
990
991         /* Yet another nasty hack.
992          * Maybe we could use MODULE_CONFIG_ITEM_END to display tail messages
993          * for each module?? */
994         if( !strcmp( "main", p_module->psz_name ) )
995         {
996             intf_Msg( _("\nPlaylist items:"
997                 "\n  *.mpg, *.vob                   plain MPEG-1/2 files"
998                 "\n  [dvd:][device][@raw_device][@[title][,[chapter][,angle]]]"
999                 "\n                                 DVD device"
1000                 "\n  [vcd:][device][@[title][,[chapter]]"
1001                 "\n                                 VCD device"
1002                 "\n  udpstream:[@[<bind address>][:<bind port>]]"
1003                 "\n                                 UDP stream sent by VLS"
1004                 "\n  vlc:loop                       loop execution of the "
1005                       "playlist"
1006                 "\n  vlc:pause                      pause execution of "
1007                       "playlist items"
1008                 "\n  vlc:quit                       quit VLC") );
1009         }
1010
1011         intf_Msg( "" );
1012
1013     }
1014
1015 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1016         intf_Msg( _("\nPress the RETURN key to continue...") );
1017         getchar();
1018 #endif
1019 }
1020
1021 /*****************************************************************************
1022  * ListModules: list the available modules with their description
1023  *****************************************************************************
1024  * Print a list of all available modules (builtins and plugins) and a short
1025  * description for each one.
1026  *****************************************************************************/
1027 static void ListModules( void )
1028 {
1029     module_t *p_module;
1030     char psz_spaces[22];
1031
1032     memset( psz_spaces, ' ', 22 );
1033
1034 #ifdef WIN32
1035     ShowConsole();
1036 #endif
1037
1038     /* Usage */
1039     intf_Msg( _("Usage: %s [options] [parameters] [file]...\n"),
1040               p_main->psz_arg0 );
1041
1042     intf_Msg( _("[module]              [description]") );
1043
1044     /* Enumerate each module */
1045     for( p_module = p_module_bank->first ;
1046          p_module != NULL ;
1047          p_module = p_module->next )
1048     {
1049         int i;
1050
1051         /* Nasty hack, but right now I'm too tired to think about a nice
1052          * solution */
1053         i = 22 - strlen( p_module->psz_name ) - 1;
1054         if( i < 0 ) i = 0;
1055         psz_spaces[i] = 0;
1056
1057         intf_Msg( "  %s%s %s", p_module->psz_name, psz_spaces,
1058                   p_module->psz_longname );
1059
1060         psz_spaces[i] = ' ';
1061
1062     }
1063
1064 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1065         intf_Msg( _("\nPress the RETURN key to continue...") );
1066         getchar();
1067 #endif
1068 }
1069
1070 /*****************************************************************************
1071  * Version: print complete program version
1072  *****************************************************************************
1073  * Print complete program version and build number.
1074  *****************************************************************************/
1075 static void Version( void )
1076 {
1077 #ifdef WIN32
1078     ShowConsole();
1079 #endif
1080
1081     intf_Msg( VERSION_MESSAGE );
1082     intf_Msg(
1083       _("This program comes with NO WARRANTY, to the extent permitted by "
1084         "law.\nYou may redistribute it under the terms of the GNU General "
1085         "Public License;\nsee the file named COPYING for details.\n"
1086         "Written by the VideoLAN team at Ecole Centrale, Paris.") );
1087
1088 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
1089         intf_Msg( _("\nPress the RETURN key to continue...") );
1090         getchar();
1091 #endif
1092 }
1093
1094 /*****************************************************************************
1095  * InitSignalHandler: system signal handler initialization
1096  *****************************************************************************
1097  * Set the signal handlers. SIGTERM is not intercepted, because we need at
1098  * at least a method to kill the program when all other methods failed, and
1099  * when we don't want to use SIGKILL.
1100  *****************************************************************************/
1101 static void InitSignalHandler( void )
1102 {
1103     /* Termination signals */
1104 #ifndef WIN32
1105     signal( SIGINT,  FatalSignalHandler );
1106     signal( SIGHUP,  FatalSignalHandler );
1107     signal( SIGQUIT, FatalSignalHandler );
1108
1109     /* Other signals */
1110     signal( SIGALRM, SimpleSignalHandler );
1111     signal( SIGPIPE, SimpleSignalHandler );
1112 #endif
1113 }
1114
1115 /*****************************************************************************
1116  * SimpleSignalHandler: system signal handler
1117  *****************************************************************************
1118  * This function is called when a non fatal signal is received by the program.
1119  *****************************************************************************/
1120 static void SimpleSignalHandler( int i_signal )
1121 {
1122     /* Acknowledge the signal received */
1123     intf_WarnMsg( 0, "intf: ignoring signal %d", i_signal );
1124 }
1125
1126 /*****************************************************************************
1127  * FatalSignalHandler: system signal handler
1128  *****************************************************************************
1129  * This function is called when a fatal signal is received by the program.
1130  * It tries to end the program in a clean way.
1131  *****************************************************************************/
1132 static void FatalSignalHandler( int i_signal )
1133 {
1134     /* Once a signal has been trapped, the termination sequence will be
1135      * armed and following signals will be ignored to avoid sending messages
1136      * to an interface having been destroyed */
1137 #ifndef WIN32
1138     signal( SIGINT,  SIG_IGN );
1139     signal( SIGHUP,  SIG_IGN );
1140     signal( SIGQUIT, SIG_IGN );
1141 #endif
1142
1143     /* Acknowledge the signal received */
1144     intf_ErrMsg( "intf error: signal %d received, exiting", i_signal );
1145
1146     /* Try to terminate everything - this is done by requesting the end of the
1147      * interface thread */
1148     p_main->p_intf->b_die = 1;
1149 }
1150
1151 /*****************************************************************************
1152  * IllegalSignalHandler: system signal handler
1153  *****************************************************************************
1154  * This function is called when an illegal instruction signal is received by
1155  * the program. We use this function to test OS and CPU capabilities
1156  *****************************************************************************/
1157 static void IllegalSignalHandler( int i_signal )
1158 {
1159     /* Acknowledge the signal received */
1160     i_illegal = 1;
1161
1162 #ifdef HAVE_SIGRELSE
1163     sigrelse( i_signal );
1164 #endif
1165
1166 #if defined( __i386__ )
1167     fprintf( stderr, "warning: your CPU has %s instructions, but not your "
1168                      "operating system.\n", psz_capability );
1169     fprintf( stderr, "         some optimizations will be disabled unless "
1170                      "you upgrade your OS\n" );
1171 #   if defined( SYS_LINUX )
1172     fprintf( stderr, "         (for instance Linux kernel 2.4.x or later)\n" );
1173 #   endif
1174 #endif
1175
1176     longjmp( env, 1 );
1177 }
1178
1179 /*****************************************************************************
1180  * CPUCapabilities: list the processors MMX support and other capabilities
1181  *****************************************************************************
1182  * This function is called to list extensions the CPU may have.
1183  *****************************************************************************/
1184 static u32 CPUCapabilities( void )
1185 {
1186     volatile u32 i_capabilities = CPU_CAPABILITY_NONE;
1187
1188 #if defined( SYS_DARWIN )
1189     struct host_basic_info hi;
1190     kern_return_t          ret;
1191     host_name_port_t       host;
1192
1193     int i_size;
1194     char *psz_name, *psz_subname;
1195
1196     i_capabilities |= CPU_CAPABILITY_FPU;
1197
1198     /* Should 'never' fail? */
1199     host = mach_host_self();
1200
1201     i_size = sizeof( hi ) / sizeof( int );
1202     ret = host_info( host, HOST_BASIC_INFO, ( host_info_t )&hi, &i_size );
1203
1204     if( ret != KERN_SUCCESS )
1205     {
1206         fprintf( stderr, "error: couldn't get CPU information\n" );
1207         return( i_capabilities );
1208     }
1209
1210     slot_name( hi.cpu_type, hi.cpu_subtype, &psz_name, &psz_subname );
1211     /* FIXME: need better way to detect newer proccessors.
1212      * could do strncmp(a,b,5), but that's real ugly */
1213     if( !strcmp(psz_name, "ppc7400") || !strcmp(psz_name, "ppc7450") )
1214     {
1215         i_capabilities |= CPU_CAPABILITY_ALTIVEC;
1216     }
1217
1218     return( i_capabilities );
1219
1220 #elif defined( __i386__ )
1221     volatile unsigned int  i_eax, i_ebx, i_ecx, i_edx;
1222     volatile boolean_t     b_amd;
1223
1224     /* Needed for x86 CPU capabilities detection */
1225 #   define cpuid( a )                      \
1226         asm volatile ( "pushl %%ebx\n\t"   \
1227                        "cpuid\n\t"         \
1228                        "movl %%ebx,%1\n\t" \
1229                        "popl %%ebx\n\t"    \
1230                      : "=a" ( i_eax ),     \
1231                        "=r" ( i_ebx ),     \
1232                        "=c" ( i_ecx ),     \
1233                        "=d" ( i_edx )      \
1234                      : "a"  ( a )          \
1235                      : "cc" );
1236
1237     i_capabilities |= CPU_CAPABILITY_FPU;
1238
1239 #   if defined( CAN_COMPILE_SSE ) || defined ( CAN_COMPILE_3DNOW )
1240     signal( SIGILL, IllegalSignalHandler );
1241 #   endif
1242
1243     /* test for a 486 CPU */
1244     asm volatile ( "pushl %%ebx\n\t"
1245                    "pushfl\n\t"
1246                    "popl %%eax\n\t"
1247                    "movl %%eax, %%ebx\n\t"
1248                    "xorl $0x200000, %%eax\n\t"
1249                    "pushl %%eax\n\t"
1250                    "popfl\n\t"
1251                    "pushfl\n\t"
1252                    "popl %%eax\n\t"
1253                    "movl %%ebx,%1\n\t"
1254                    "popl %%ebx\n\t"
1255                  : "=a" ( i_eax ),
1256                    "=r" ( i_ebx )
1257                  :
1258                  : "cc" );
1259
1260     if( i_eax == i_ebx )
1261     {
1262 #   if defined( CAN_COMPILE_SSE ) || defined ( CAN_COMPILE_3DNOW )
1263         signal( SIGILL, NULL );
1264 #   endif
1265         return( i_capabilities );
1266     }
1267
1268     i_capabilities |= CPU_CAPABILITY_486;
1269
1270     /* the CPU supports the CPUID instruction - get its level */
1271     cpuid( 0x00000000 );
1272
1273     if( !i_eax )
1274     {
1275 #   if defined( CAN_COMPILE_SSE ) || defined ( CAN_COMPILE_3DNOW )
1276         signal( SIGILL, NULL );
1277 #   endif
1278         return( i_capabilities );
1279     }
1280
1281     /* FIXME: this isn't correct, since some 486s have cpuid */
1282     i_capabilities |= CPU_CAPABILITY_586;
1283
1284     /* borrowed from mpeg2dec */
1285     b_amd = ( i_ebx == 0x68747541 ) && ( i_ecx == 0x444d4163 )
1286                     && ( i_edx == 0x69746e65 );
1287
1288     /* test for the MMX flag */
1289     cpuid( 0x00000001 );
1290
1291     if( ! (i_edx & 0x00800000) )
1292     {
1293 #   if defined( CAN_COMPILE_SSE ) || defined ( CAN_COMPILE_3DNOW )
1294         signal( SIGILL, NULL );
1295 #   endif
1296         return( i_capabilities );
1297     }
1298
1299     i_capabilities |= CPU_CAPABILITY_MMX;
1300
1301     if( i_edx & 0x02000000 )
1302     {
1303         i_capabilities |= CPU_CAPABILITY_MMXEXT;
1304
1305 #   ifdef CAN_COMPILE_SSE
1306         /* We test if OS supports the SSE instructions */
1307         psz_capability = "SSE";
1308         i_illegal = 0;
1309         if( setjmp( env ) == 0 )
1310         {
1311             /* Test a SSE instruction */
1312             __asm__ __volatile__ ( "xorps %%xmm0,%%xmm0\n" : : );
1313         }
1314
1315         if( i_illegal == 0 )
1316         {
1317             i_capabilities |= CPU_CAPABILITY_SSE;
1318         }
1319 #   endif
1320     }
1321
1322     /* test for additional capabilities */
1323     cpuid( 0x80000000 );
1324
1325     if( i_eax < 0x80000001 )
1326     {
1327 #   if defined( CAN_COMPILE_SSE ) || defined ( CAN_COMPILE_3DNOW )
1328         signal( SIGILL, NULL );
1329 #   endif
1330         return( i_capabilities );
1331     }
1332
1333     /* list these additional capabilities */
1334     cpuid( 0x80000001 );
1335
1336 #   ifdef CAN_COMPILE_3DNOW
1337     if( i_edx & 0x80000000 )
1338     {
1339         psz_capability = "3D Now!";
1340         i_illegal = 0;
1341         if( setjmp( env ) == 0 )
1342         {
1343             /* Test a 3D Now! instruction */
1344             __asm__ __volatile__ ( "pfadd %%mm0,%%mm0\n" "femms\n" : : );
1345         }
1346
1347         if( i_illegal == 0 )
1348         {
1349             i_capabilities |= CPU_CAPABILITY_3DNOW;
1350         }
1351     }
1352 #   endif
1353
1354     if( b_amd && ( i_edx & 0x00400000 ) )
1355     {
1356         i_capabilities |= CPU_CAPABILITY_MMXEXT;
1357     }
1358
1359 #   if defined( CAN_COMPILE_SSE ) || defined ( CAN_COMPILE_3DNOW )
1360     signal( SIGILL, NULL );
1361 #   endif
1362     return( i_capabilities );
1363
1364 #elif defined( __powerpc__ )
1365
1366     i_capabilities |= CPU_CAPABILITY_FPU;
1367
1368 #   ifdef CAN_COMPILE_ALTIVEC
1369     signal( SIGILL, IllegalSignalHandler );
1370
1371     psz_capability = "AltiVec";
1372     i_illegal = 0;
1373     if( setjmp( env ) == 0 )
1374     {
1375         asm volatile ("mtspr 256, %0\n\t"
1376                       "vand %%v0, %%v0, %%v0"
1377                       :
1378                       : "r" (-1));
1379     }
1380
1381     if( i_illegal == 0 )
1382     {
1383         i_capabilities |= CPU_CAPABILITY_ALTIVEC;
1384     }
1385
1386     signal( SIGILL, NULL );
1387 #   endif
1388
1389     return( i_capabilities );
1390
1391 #elif defined( __sparc__ )
1392
1393     i_capabilities |= CPU_CAPABILITY_FPU;
1394     return( i_capabilities );
1395
1396 #else
1397     /* default behaviour */
1398     return( i_capabilities );
1399
1400 #endif
1401 }
1402
1403 /*****************************************************************************
1404  * ShowConsole: On Win32, create an output console for debug messages
1405  *****************************************************************************
1406  * This function is useful only on Win32.
1407  *****************************************************************************/
1408 #ifdef WIN32 /*  */
1409 static void ShowConsole( void )
1410 {
1411     AllocConsole();
1412     freopen( "CONOUT$", "w", stdout );
1413     freopen( "CONOUT$", "w", stderr );
1414     freopen( "CONIN$", "r", stdin );
1415     return;
1416 }
1417 #endif