]> git.sesse.net Git - vlc/blob - src/interface/main.c
* COMPLETE CVS BREAKAGE !! The MAIN branch is going to be a playground
[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.133 2001/12/09 17:01:37 sam Exp $
8  *
9  * Authors: Vincent Seguin <seguin@via.ecp.fr>
10  *          Samuel Hocevar <sam@zoy.org>
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  * 
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
25  *****************************************************************************/
26
27 /*****************************************************************************
28  * Preamble
29  *****************************************************************************/
30 #include "defs.h"
31
32 #include <signal.h>                               /* SIGHUP, SIGINT, SIGKILL */
33 #include <stdio.h>                                              /* sprintf() */
34 #include <setjmp.h>                                       /* longjmp, setjmp */
35
36 #ifdef HAVE_GETOPT_LONG
37 #   ifdef HAVE_GETOPT_H
38 #       include <getopt.h>                                       /* getopt() */
39 #   endif
40 #else
41 #   include "GNUgetopt/getopt.h"
42 #endif
43
44 #ifdef SYS_DARWIN
45 #   include <mach/mach.h>                               /* Altivec detection */
46 #   include <mach/mach_error.h>       /* some day the header files||compiler *
47                                                        will define it for us */
48 #   include <mach/bootstrap.h>
49 #endif
50
51 #ifndef WIN32
52 #   include <netinet/in.h>                            /* BSD: struct in_addr */
53 #endif
54
55 #ifdef HAVE_UNISTD_H
56 #   include <unistd.h>
57 #elif defined( _MSC_VER ) && defined( _WIN32 )
58 #   include <io.h>
59 #endif
60
61 #include <errno.h>                                                 /* ENOMEM */
62 #include <stdlib.h>                                  /* getenv(), strtol(),  */
63 #include <string.h>                                            /* strerror() */
64 #include <fcntl.h>                                       /* open(), O_WRONLY */
65 #include <sys/stat.h>                                             /* S_IREAD */
66
67 #include "common.h"
68 #include "debug.h"
69 #include "intf_msg.h"
70 #include "threads.h"
71 #include "mtime.h"
72 #include "tests.h"                                              /* TestCPU() */
73 #include "modules.h"
74
75 #include "stream_control.h"
76 #include "input_ext-intf.h"
77
78 #include "intf_playlist.h"
79 #include "interface.h"
80
81 #include "audio_output.h"
82
83 #include "video.h"
84 #include "video_output.h"
85
86 #ifdef SYS_BEOS
87 #   include "beos_specific.h"
88 #endif
89
90 #ifdef SYS_DARWIN
91 #   include "darwin_specific.h"
92 #endif
93
94 #ifdef WIN32
95 #   include "win32_specific.h"
96 #endif
97
98 #include "netutils.h"                                 /* network_ChannelJoin */
99
100 /*****************************************************************************
101  * Command line options constants. If something is changed here, be sure that
102  * GetConfiguration and Usage are also changed.
103  *****************************************************************************/
104
105 /* Long options return values - note that values corresponding to short options
106  * chars, and in general any regular char, should be avoided */
107 #define OPT_NOAUDIO             150
108 #define OPT_STEREO              151
109 #define OPT_MONO                152
110 #define OPT_SPDIF               153
111 #define OPT_VOLUME              154
112 #define OPT_DESYNC              155
113
114 #define OPT_NOVIDEO             160
115 #define OPT_DISPLAY             161
116 #define OPT_WIDTH               162
117 #define OPT_HEIGHT              163
118 #define OPT_COLOR               164
119 #define OPT_FULLSCREEN          165
120 #define OPT_OVERLAY             166
121 #define OPT_XVADAPTOR           167
122 #define OPT_SMP                 168
123
124 #define OPT_CHANNELS            170
125 #define OPT_SERVER              171
126 #define OPT_PORT                172
127 #define OPT_BROADCAST           173
128 #define OPT_CHANNELSERVER       174
129
130 #define OPT_INPUT               180
131 #define OPT_MOTION              181
132 #define OPT_IDCT                182
133 #define OPT_YUV                 183
134 #define OPT_DOWNMIX             184
135 #define OPT_IMDCT               185
136 #define OPT_MEMCPY              186
137 #define OPT_DVDCSS_METHOD       187
138 #define OPT_DVDCSS_VERBOSE      188
139
140 #define OPT_SYNCHRO             190
141 #define OPT_WARNING             191
142 #define OPT_VERSION             192
143 #define OPT_STDOUT              193
144 #define OPT_STATS               194
145
146 #define OPT_MPEG_ADEC           200
147
148 /* Usage fashion */
149 #define USAGE                     0
150 #define SHORT_HELP                1
151 #define LONG_HELP                 2
152
153 /* Needed for x86 CPU capabilities detection */
154 #define cpuid( a )                 \
155     asm volatile ( "cpuid"         \
156                  : "=a" ( i_eax ), \
157                    "=b" ( i_ebx ), \
158                    "=c" ( i_ecx ), \
159                    "=d" ( i_edx )  \
160                  : "a"  ( a )      \
161                  : "cc" );
162
163 /* Long options */
164 static const struct option longopts[] =
165 {
166     /*  name,               has_arg,    flag,   val */
167
168     /* General/common options */
169     {   "help",             0,          0,      'h' },
170     {   "longhelp",         0,          0,      'H' },
171     {   "version",          0,          0,      OPT_VERSION },
172
173     /* Interface options */
174     {   "intf",             1,          0,      'I' },
175     {   "warning",          1,          0,      OPT_WARNING },
176     {   "stdout",           1,          0,      OPT_STDOUT },
177     {   "stats",            0,          0,      OPT_STATS },
178
179     /* Audio options */
180     {   "noaudio",          0,          0,      OPT_NOAUDIO },
181     {   "aout",             1,          0,      'A' },
182     {   "stereo",           0,          0,      OPT_STEREO },
183     {   "mono",             0,          0,      OPT_MONO },
184     {   "spdif",            0,          0,      OPT_SPDIF },
185     {   "downmix",          1,          0,      OPT_DOWNMIX },
186     {   "imdct",            1,          0,      OPT_IMDCT },
187     {   "volume",           1,          0,      OPT_VOLUME },
188     {   "desync",           1,          0,      OPT_DESYNC },
189
190     /* Video options */
191     {   "novideo",          0,          0,      OPT_NOVIDEO },
192     {   "vout",             1,          0,      'V' },
193     {   "display",          1,          0,      OPT_DISPLAY },
194     {   "width",            1,          0,      OPT_WIDTH },
195     {   "height",           1,          0,      OPT_HEIGHT },
196     {   "grayscale",        0,          0,      'g' },
197     {   "color",            0,          0,      OPT_COLOR },
198     {   "motion",           1,          0,      OPT_MOTION },
199     {   "idct",             1,          0,      OPT_IDCT },
200     {   "yuv",              1,          0,      OPT_YUV },
201     {   "fullscreen",       0,          0,      OPT_FULLSCREEN },
202     {   "overlay",          0,          0,      OPT_OVERLAY },
203     {   "xvadaptor",        1,          0,      OPT_XVADAPTOR },
204     {   "smp",              1,          0,      OPT_SMP },
205
206     /* DVD options */
207     {   "dvdtitle",         1,          0,      't' },
208     {   "dvdchapter",       1,          0,      'T' },
209     {   "dvdangle",         1,          0,      'u' },
210     {   "dvdaudio",         1,          0,      'a' },
211     {   "dvdchannel",       1,          0,      'c' },
212     {   "dvdsubtitle",      1,          0,      's' },
213     {   "dvdcss-method",    1,          0,      OPT_DVDCSS_METHOD },
214     {   "dvdcss-verbose",   1,          0,      OPT_DVDCSS_VERBOSE },
215     
216     /* Input options */
217     {   "input",            1,          0,      OPT_INPUT },
218     {   "channels",         0,          0,      OPT_CHANNELS },
219     {   "channelserver",    1,          0,      OPT_CHANNELSERVER },
220
221     /* Misc options */
222     {   "synchro",          1,          0,      OPT_SYNCHRO },
223     {   "memcpy",           1,          0,      OPT_MEMCPY },
224
225     /* Decoder options */
226     {   "mpeg_adec",        1,          0,      OPT_MPEG_ADEC },
227
228     {   0,                  0,          0,      0 }
229 };
230
231 /* Short options */
232 static const char *psz_shortopts = "hHvgt:T:u:a:s:c:I:A:V:";
233
234 /*****************************************************************************
235  * Global variables - these are the only ones, see main.h and modules.h
236  *****************************************************************************/
237 main_t        *p_main;
238 module_bank_t *p_module_bank;
239 aout_bank_t   *p_aout_bank;
240 vout_bank_t   *p_vout_bank;
241
242 /*****************************************************************************
243  * Local prototypes
244  *****************************************************************************/
245 static int  GetConfiguration        ( int *pi_argc, char *ppsz_argv[],
246                                       char *ppsz_env[] );
247 static int  GetFilenames            ( int i_argc, char *ppsz_argv[] );
248 static void Usage                   ( int i_fashion );
249 static void Version                 ( void );
250
251 static void InitSignalHandler       ( void );
252 static void SimpleSignalHandler     ( int i_signal );
253 static void FatalSignalHandler      ( int i_signal );
254 static void InstructionSignalHandler( int i_signal );
255 static int  CPUCapabilities         ( void );
256
257 static int  RedirectSTDOUT          ( void );
258 static void ShowConsole             ( void );
259
260 static jmp_buf env;
261 static int  i_illegal;
262
263 /*****************************************************************************
264  * main: parse command line, start interface and spawn threads
265  *****************************************************************************
266  * Steps during program execution are:
267  *      -configuration parsing and messages interface initialization
268  *      -opening of audio output device and some global modules
269  *      -execution of interface, which exit on error or on user request
270  *      -closing of audio output device and some global modules
271  * On error, the spawned threads are canceled, and the open devices closed.
272  *****************************************************************************/
273 int main( int i_argc, char *ppsz_argv[], char *ppsz_env[] )
274 {
275     main_t        main_data;                /* root of all data - see main.h */
276     module_bank_t module_bank;
277     aout_bank_t   aout_bank;
278     vout_bank_t   vout_bank;
279
280     p_main        = &main_data;               /* set up the global variables */
281     p_module_bank = &module_bank;
282     p_aout_bank   = &aout_bank;
283     p_vout_bank   = &vout_bank;
284
285     /*
286      * Initialize threads system
287      */
288     vlc_threads_init( );
289
290     /*
291      * Test if our code is likely to run on this CPU 
292      */
293     p_main->i_cpu_capabilities = CPUCapabilities();
294     
295     /*
296      * System specific initialization code
297      */
298 #if defined( SYS_BEOS ) || defined( SYS_DARWIN ) || defined( WIN32 )
299     system_Init( &i_argc, ppsz_argv, ppsz_env );
300
301 #elif defined( SYS_LINUX )
302 #   ifdef DEBUG
303     /* Activate malloc checking routines to detect heap corruptions. */
304     main_PutIntVariable( "MALLOC_CHECK_", 2 );
305 #   endif
306 #endif
307
308     /*
309      * Initialize messages interface
310      */
311     p_main->p_msg = intf_MsgCreate();
312     if( !p_main->p_msg )                         /* start messages interface */
313     {
314         fprintf( stderr, "error: can't initialize messages interface (%s)\n",
315                  strerror(errno) );
316         return( errno );
317     }
318
319     intf_MsgImm( COPYRIGHT_MESSAGE "\n" );
320
321     /*
322      * Read configuration
323      */
324     if( GetConfiguration( &i_argc, ppsz_argv, ppsz_env ) ) /* parse cmd line */
325     {
326         intf_MsgDestroy();
327         return( errno );
328     }
329
330     /*
331      * Redirect the standard output if required by the user, and on Win32 we
332      * also open a console to display the debug messages.
333      */
334     RedirectSTDOUT();
335
336     if( p_main->b_stats )
337     {
338         char          p_capabilities[200];
339         p_capabilities[0] = '\0';
340
341 #define PRINT_CAPABILITY( capability, string )                              \
342         if( p_main->i_cpu_capabilities & capability )                       \
343         {                                                                   \
344             strncat( p_capabilities, string " ",                            \
345                      sizeof(p_capabilities) - strlen(p_capabilities) );     \
346             p_capabilities[sizeof(p_capabilities) - 1] = '\0';              \
347         }
348
349         PRINT_CAPABILITY( CPU_CAPABILITY_486, "486" );
350         PRINT_CAPABILITY( CPU_CAPABILITY_586, "586" );
351         PRINT_CAPABILITY( CPU_CAPABILITY_PPRO, "Pentium Pro" );
352         PRINT_CAPABILITY( CPU_CAPABILITY_MMX, "MMX" );
353         PRINT_CAPABILITY( CPU_CAPABILITY_3DNOW, "3DNow!" );
354         PRINT_CAPABILITY( CPU_CAPABILITY_MMXEXT, "MMXEXT" );
355         PRINT_CAPABILITY( CPU_CAPABILITY_SSE, "SSE" );
356         PRINT_CAPABILITY( CPU_CAPABILITY_ALTIVEC, "Altivec" );
357         intf_StatMsg("info: CPU has capabilities %s", p_capabilities );
358     }
359
360     /*
361      * Initialize playlist and get commandline files
362      */
363     p_main->p_playlist = intf_PlaylistCreate();
364     if( !p_main->p_playlist )
365     {
366         intf_ErrMsg( "playlist error: playlist initialization failed" );
367         intf_MsgDestroy();
368         return( errno );
369     }
370     intf_PlaylistInit( p_main->p_playlist );
371
372     /*
373      * Get input filenames given as commandline arguments
374      */
375     GetFilenames( i_argc, ppsz_argv );
376
377     /*
378      * Initialize module, aout and vout banks
379      */
380     module_InitBank();
381     aout_InitBank();
382     vout_InitBank();
383
384     /*
385      * Choose the best memcpy module
386      */
387     p_main->p_memcpy_module = module_Need( MODULE_CAPABILITY_MEMCPY, NULL );
388
389     if( p_main->p_memcpy_module == NULL )
390     {
391         intf_ErrMsg( "intf error: no suitable memcpy module, "
392                      "using libc default" );
393         p_main->fast_memcpy = memcpy;
394     }
395     else
396     {
397 #define f p_main->p_memcpy_module->p_functions->memcpy.functions.memcpy
398         p_main->fast_memcpy = f.fast_memcpy;
399 #undef f
400     }
401
402     /*
403      * Initialize shared resources and libraries
404      */
405     if( main_GetIntVariable( INPUT_NETWORK_CHANNEL_VAR,
406                              INPUT_NETWORK_CHANNEL_DEFAULT ) &&
407         network_ChannelCreate() )
408     {
409         /* On error during Channels initialization, switch off channels */
410         intf_Msg( "Channels initialization failed : "
411                   "Channel management is deactivated" );
412         main_PutIntVariable( INPUT_NETWORK_CHANNEL_VAR, 0 );
413     }
414
415     /*
416      * Try to run the interface
417      */
418     p_main->p_intf = intf_Create();
419     if( p_main->p_intf == NULL )
420     {
421         intf_ErrMsg( "intf error: interface initialization failed" );
422     }
423     else
424     {
425         /*
426          * Set signal handling policy for all threads
427          */
428         InitSignalHandler();
429
430         /*
431          * This is the main loop
432          */
433         p_main->p_intf->pf_run( p_main->p_intf );
434
435         /*
436          * Finished, destroy the interface
437          */
438         intf_Destroy( p_main->p_intf );
439
440         /*
441          * Go back into channel 0 which is the network
442          */
443         if( main_GetIntVariable( INPUT_NETWORK_CHANNEL_VAR,
444                                  INPUT_NETWORK_CHANNEL_DEFAULT ) )
445         {
446             network_ChannelJoin( COMMON_CHANNEL );
447         }
448     }
449
450     /*
451      * Free memcpy module
452      */
453     module_Unneed( p_main->p_memcpy_module );
454
455     /*
456      * Free module, aout and vout banks
457      */
458     vout_EndBank();
459     aout_EndBank();
460     module_EndBank();
461
462     /*
463      * Free playlist
464      */
465     intf_PlaylistDestroy( p_main->p_playlist );
466
467     /*
468      * System specific cleaning code
469      */
470 #if defined( SYS_BEOS ) || defined( SYS_DARWIN ) || defined( WIN32 )
471     system_End();
472 #endif
473
474
475     /*
476      * Terminate messages interface and program
477      */
478     intf_Msg( "intf: program terminated" );
479     intf_MsgDestroy();
480
481     /*
482      * Stop threads system
483      */
484     vlc_threads_end( );
485
486     return 0;
487 }
488
489 /*****************************************************************************
490  * main_GetIntVariable: get the int value of an environment variable
491  *****************************************************************************
492  * This function is used to read some default parameters in modules.
493  *****************************************************************************/
494 int main_GetIntVariable( char *psz_name, int i_default )
495 {
496     char *      psz_env;                                /* environment value */
497     char *      psz_end;                             /* end of parsing index */
498     long int    i_value;                                            /* value */
499
500     psz_env = getenv( psz_name );
501     if( psz_env )
502     {
503         i_value = strtol( psz_env, &psz_end, 0 );
504         if( (*psz_env != '\0') && (*psz_end == '\0') )
505         {
506             return( i_value );
507         }
508     }
509     return( i_default );
510 }
511
512 /*****************************************************************************
513  * main_GetPszVariable: get the string value of an environment variable
514  *****************************************************************************
515  * This function is used to read some default parameters in modules.
516  *****************************************************************************/
517 char * main_GetPszVariable( char *psz_name, char *psz_default )
518 {
519     char *psz_env;
520
521     psz_env = getenv( psz_name );
522     if( psz_env )
523     {
524         return( psz_env );
525     }
526     return( psz_default );
527 }
528
529 /*****************************************************************************
530  * main_PutPszVariable: set the string value of an environment variable
531  *****************************************************************************
532  * This function is used to set some default parameters in modules. The use of
533  * this function will cause some memory leak: since some systems use the pointer
534  * passed to putenv to store the environment string, it can't be freed.
535  *****************************************************************************/
536 void main_PutPszVariable( char *psz_name, char *psz_value )
537 {
538     char *psz_env;
539
540     psz_env = malloc( strlen(psz_name) + strlen(psz_value) + 2 );
541     if( psz_env == NULL )
542     {
543         intf_ErrMsg( "intf error: cannot create psz_env (%s)",
544                      strerror(ENOMEM) );
545     }
546     else
547     {
548         sprintf( psz_env, "%s=%s", psz_name, psz_value );
549         if( putenv( psz_env ) )
550         {
551             intf_ErrMsg( "intf error: cannot putenv (%s)", strerror(errno) );
552         }
553     }
554 }
555
556 /*****************************************************************************
557  * main_PutIntVariable: set the integer value of an environment variable
558  *****************************************************************************
559  * This function is used to set some default parameters in modules. The use of
560  * this function will cause some memory leak: since some systems use the pointer
561  * passed to putenv to store the environment string, it can't be freed.
562  *****************************************************************************/
563 void main_PutIntVariable( char *psz_name, int i_value )
564 {
565     char psz_value[ 256 ];                               /* buffer for value */
566
567     sprintf( psz_value, "%d", i_value );
568     main_PutPszVariable( psz_name, psz_value );
569 }
570
571 /* following functions are local */
572
573 /*****************************************************************************
574  * GetConfiguration: parse command line
575  *****************************************************************************
576  * Parse command line and configuration file for configuration. If the inline
577  * help is requested, the function Usage() is called and the function returns
578  * -1 (causing main() to exit). The messages interface is initialized at this
579  * stage, but most structures are not allocated, so only environment should
580  * be used.
581  *****************************************************************************/
582 static int GetConfiguration( int *pi_argc, char *ppsz_argv[], char *ppsz_env[] )
583 {
584     int   i_cmd;
585     char *p_tmp;
586
587     /* Set default configuration and copy arguments */
588     p_main->i_argc    = *pi_argc;
589     p_main->ppsz_argv = ppsz_argv;
590     p_main->ppsz_env  = ppsz_env;
591
592     p_main->b_audio     = 1;
593     p_main->b_video     = 1;
594
595     p_main->i_warning_level = 0;
596     p_main->b_stats = 0;
597     p_main->i_desync = 0; /* No desynchronization by default */
598
599     p_main->p_channel = NULL;
600
601     /* Get the executable name (similar to the basename command) */
602     p_main->psz_arg0 = p_tmp = ppsz_argv[ 0 ];
603     while( *p_tmp )
604     {
605         if( *p_tmp == '/' )
606         {
607             p_main->psz_arg0 = ++p_tmp;
608         }
609         else
610         {
611             ++p_tmp;
612         }
613     }
614
615 #ifdef SYS_DARWIN
616     /* When vlc.app is run by double clicking in Mac OS X, the 2nd arg
617      * is the PSN - process serial number (a unique PID-ish thingie)
618      * still ok for real Darwin & when run from command line */
619     if ( (*pi_argc > 1) && (strncmp( ppsz_argv[ 1 ] , "-psn" , 4 ) == 0) )
620                                         /* for example -psn_0_9306113 */
621     {
622         /* GDMF!... I can't do this or else the MacOSX window server will
623          * not pick up the PSN and not register the app and we crash...
624          * hence the following kludge otherwise we'll get confused w/ argv[1]
625          * being an input file name */
626 #if 0
627         ppsz_argv[ 1 ] = NULL;
628 #endif
629         *pi_argc = *pi_argc - 1;
630         pi_argc--;
631         return( 0 );
632     }
633 #endif
634
635     /* Parse command line options */
636     opterr = 0;
637     while( ( i_cmd = getopt_long( *pi_argc, ppsz_argv,
638                                    psz_shortopts, longopts, 0 ) ) != EOF )
639     {
640         switch( i_cmd )
641         {
642         /* General/common options */
643         case 'h':                                              /* -h, --help */
644             ShowConsole();
645             RedirectSTDOUT();
646             Usage( SHORT_HELP );
647 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
648             if( strcmp( "", main_GetPszVariable( INTF_STDOUT_VAR,
649                                                  INTF_STDOUT_DEFAULT ) ) == 0 )
650             {
651                 /* No stdout redirection has been asked for */
652                 intf_MsgImm( "\nPress the RETURN key to continue..." );
653                 getchar();
654             }
655 #endif
656             return( -1 );
657             break;
658         case 'H':                                          /* -H, --longhelp */
659             ShowConsole();
660             RedirectSTDOUT();
661             Usage( LONG_HELP );
662 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
663             if( strcmp( "", main_GetPszVariable( INTF_STDOUT_VAR,
664                                                  INTF_STDOUT_DEFAULT ) ) == 0 )
665             {
666                 /* No stdout redirection has been asked for */
667                 intf_MsgImm( "\nPress the RETURN key to continue..." );
668                 getchar();
669             }
670 #endif
671             return( -1 );
672             break;
673         case OPT_VERSION:                                       /* --version */
674             ShowConsole();
675             RedirectSTDOUT();
676             Version();
677 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
678             if( strcmp( "", main_GetPszVariable( INTF_STDOUT_VAR,
679                                                  INTF_STDOUT_DEFAULT ) ) == 0 )
680             {
681                 /* No stdout redirection has been asked for */
682                 intf_MsgImm( "\nPress the RETURN key to continue..." );
683                 getchar();
684             }
685 #endif
686             return( -1 );
687             break;
688         case 'v':                                           /* -v, --verbose */
689             p_main->i_warning_level++;
690             break;
691
692         /* Interface warning messages level */
693         case 'I':                                              /* -I, --intf */
694             main_PutPszVariable( INTF_METHOD_VAR, optarg );
695             break;
696         case OPT_WARNING:                                       /* --warning */
697             intf_ErrMsg( "intf error: `--warning' is deprecated, use `-v'" );
698             p_main->i_warning_level = atoi(optarg);
699             break;
700
701         case OPT_STDOUT:                                         /* --stdout */
702             main_PutPszVariable( INTF_STDOUT_VAR, optarg );
703             break;
704
705         case OPT_STATS:
706             p_main->b_stats = 1;
707             break;
708
709         /* Audio options */
710         case OPT_NOAUDIO:                                       /* --noaudio */
711             p_main->b_audio = 0;
712             break;
713         case 'A':                                              /* -A, --aout */
714             main_PutPszVariable( AOUT_METHOD_VAR, optarg );
715             break;
716         case OPT_STEREO:                                         /* --stereo */
717             main_PutIntVariable( AOUT_STEREO_VAR, 1 );
718             break;
719         case OPT_MONO:                                             /* --mono */
720             main_PutIntVariable( AOUT_STEREO_VAR, 0 );
721             break;
722         case OPT_SPDIF:                                           /* --spdif */
723             main_PutIntVariable( AOUT_SPDIF_VAR, 1 );
724             break;
725         case OPT_DOWNMIX:                                       /* --downmix */
726             main_PutPszVariable( DOWNMIX_METHOD_VAR, optarg );
727             break;
728         case OPT_IMDCT:                                           /* --imdct */
729             main_PutPszVariable( IMDCT_METHOD_VAR, optarg );
730             break;
731         case OPT_VOLUME:                                         /* --volume */
732             main_PutIntVariable( AOUT_VOLUME_VAR, atoi(optarg) );
733             break;
734         case OPT_DESYNC:                                         /* --desync */
735             p_main->i_desync = atoi(optarg);
736             break;
737
738         /* Video options */
739         case OPT_NOVIDEO:                                       /* --novideo */
740             p_main->b_video = 0;
741             break;
742         case 'V':                                              /* -V, --vout */
743             main_PutPszVariable( VOUT_METHOD_VAR, optarg );
744             break;
745         case OPT_DISPLAY:                                       /* --display */
746             main_PutPszVariable( VOUT_DISPLAY_VAR, optarg );
747             break;
748         case OPT_WIDTH:                                           /* --width */
749             main_PutPszVariable( VOUT_WIDTH_VAR, optarg );
750             break;
751         case OPT_HEIGHT:                                         /* --height */
752             main_PutPszVariable( VOUT_HEIGHT_VAR, optarg );
753             break;
754         case 'g':                                         /* -g, --grayscale */
755             main_PutIntVariable( VOUT_GRAYSCALE_VAR, 1 );
756             break;
757         case OPT_COLOR:                                           /* --color */
758             main_PutIntVariable( VOUT_GRAYSCALE_VAR, 0 );
759             break;
760         case OPT_FULLSCREEN:                                 /* --fullscreen */
761             main_PutIntVariable( VOUT_FULLSCREEN_VAR, 1 );
762             break;
763         case OPT_OVERLAY:                                       /* --overlay */
764             main_PutIntVariable( VOUT_OVERLAY_VAR, 1 );
765             break;
766         case OPT_XVADAPTOR:                                   /* --xvadaptor */
767             main_PutIntVariable( VOUT_XVADAPTOR_VAR, atoi(optarg) );
768             break;
769         case OPT_MOTION:                                         /* --motion */
770             main_PutPszVariable( MOTION_METHOD_VAR, optarg );
771             break;
772         case OPT_IDCT:                                             /* --idct */
773             main_PutPszVariable( IDCT_METHOD_VAR, optarg );
774             break;
775         case OPT_YUV:                                               /* --yuv */
776             main_PutPszVariable( YUV_METHOD_VAR, optarg );
777             break;
778         case OPT_SMP:                                               /* --smp */
779             main_PutIntVariable( VDEC_SMP_VAR, atoi(optarg) );
780             break;
781
782         /* DVD options */
783         case 't':                                              /* --dvdtitle */
784             main_PutIntVariable( INPUT_TITLE_VAR, atoi(optarg) );
785             break;
786         case 'T':                                            /* --dvdchapter */
787             main_PutIntVariable( INPUT_CHAPTER_VAR, atoi(optarg) );
788             break;
789         case 'u':                                              /* --dvdangle */
790             main_PutIntVariable( INPUT_ANGLE_VAR, atoi(optarg) );
791             break;
792         case 'a':                                              /* --dvdaudio */
793             if ( ! strcmp(optarg, "ac3") )
794                 main_PutIntVariable( INPUT_AUDIO_VAR, REQUESTED_AC3 );
795             else if ( ! strcmp(optarg, "lpcm") )
796                 main_PutIntVariable( INPUT_AUDIO_VAR, REQUESTED_LPCM );
797             else if ( ! strcmp(optarg, "mpeg") )
798                 main_PutIntVariable( INPUT_AUDIO_VAR, REQUESTED_MPEG );
799             else
800                 main_PutIntVariable( INPUT_AUDIO_VAR, REQUESTED_NOAUDIO );
801             break;
802         case 'c':                                            /* --dvdchannel */
803             main_PutIntVariable( INPUT_CHANNEL_VAR, atoi(optarg) );
804             break;
805         case 's':                                           /* --dvdsubtitle */
806             main_PutIntVariable( INPUT_SUBTITLE_VAR, atoi(optarg) );
807             break;
808         case OPT_DVDCSS_METHOD:                           /* --dvdcss-method */
809             main_PutPszVariable( "DVDCSS_METHOD", optarg );
810             break;
811         case OPT_DVDCSS_VERBOSE:                         /* --dvdcss-verbose */
812             main_PutPszVariable( "DVDCSS_VERBOSE", optarg );
813             break;
814
815         /* Input options */
816         case OPT_INPUT:                                           /* --input */
817             main_PutPszVariable( INPUT_METHOD_VAR, optarg );
818             break;
819         case OPT_CHANNELS:                                     /* --channels */
820             main_PutIntVariable( INPUT_NETWORK_CHANNEL_VAR, 1 );
821             break;
822         case OPT_CHANNELSERVER:                           /* --channelserver */
823             main_PutPszVariable( INPUT_CHANNEL_SERVER_VAR, optarg );
824             break;
825
826         /* Misc options */
827         case OPT_SYNCHRO:                                      
828             main_PutPszVariable( VPAR_SYNCHRO_VAR, optarg );
829             break;
830         case OPT_MEMCPY:                                      
831             main_PutPszVariable( MEMCPY_METHOD_VAR, optarg );
832             break;
833             
834         /* Decoder options */
835         case OPT_MPEG_ADEC:
836             main_PutPszVariable( ADEC_MPEG_VAR, optarg );
837             break;
838
839         /* Internal error: unknown option */
840         case '?':
841         default:
842             ShowConsole();
843             RedirectSTDOUT();
844             intf_ErrMsg( "intf error: unknown option `%s'",
845                          ppsz_argv[optind] );
846             Usage( USAGE );
847 #ifdef WIN32        /* Pause the console because it's destroyed when we exit */
848             if( strcmp( "", main_GetPszVariable( INTF_STDOUT_VAR,
849                                                  INTF_STDOUT_DEFAULT ) ) == 0 )
850             {
851                 /* No stdout redirection has been asked for */
852                 intf_MsgImm( "\nPress the RETURN key to continue..." );
853                 getchar();
854             }
855 #endif
856             return( EINVAL );
857             break;
858         }
859     }
860
861     if( p_main->i_warning_level < 0 )
862     {
863         p_main->i_warning_level = 0;
864     }
865
866     return( 0 );
867 }
868
869 /*****************************************************************************
870  * GetFilenames: parse command line options which are not flags
871  *****************************************************************************
872  * Parse command line for input files.
873  *****************************************************************************/
874 static int GetFilenames( int i_argc, char *ppsz_argv[] )
875 {
876     int i_opt;
877
878     /* We assume that the remaining parameters are filenames */
879     for( i_opt = optind; i_opt < i_argc; i_opt++ )
880     {
881         intf_PlaylistAdd( p_main->p_playlist, PLAYLIST_END,
882                           ppsz_argv[ i_opt ] );
883     }
884
885     return( 0 );
886 }
887
888 /*****************************************************************************
889  * Usage: print program usage
890  *****************************************************************************
891  * Print a short inline help. Message interface is initialized at this stage.
892  *****************************************************************************/
893 static void Usage( int i_fashion )
894 {
895     /* Usage */
896     intf_MsgImm( "Usage: %s [options] [parameters] [file]...",
897                  p_main->psz_arg0 );
898
899     if( i_fashion == USAGE )
900     {
901         intf_MsgImm( "Try `%s --help' for more information.",
902                      p_main->psz_arg0 );
903         return;
904     }
905
906     /* Options */
907     intf_MsgImm( "\nOptions:"
908           "\n  -I, --intf <module>            \tinterface method"
909           "\n  -v, --verbose                  \tverbose mode (cumulative)"
910           "\n      --stdout <filename>        \tredirect console stdout"
911           "\n      --memcpy <module>          \tmemcpy method"
912           "\n"
913           "\n      --noaudio                  \tdisable audio"
914           "\n  -A, --aout <module>            \taudio output method"
915           "\n      --stereo, --mono           \tstereo/mono audio"
916           "\n      --spdif                    \tAC3 pass-through mode"
917           "\n      --downmix <module>         \tAC3 downmix method"
918           "\n      --imdct <module>           \tAC3 IMDCT method"
919           "\n      --volume [0..1024]         \tVLC output volume"
920           "\n      --desync <time in ms>      \tCompensate desynchronization of the audio"
921           "\n"
922           "\n      --novideo                  \tdisable video"
923           "\n  -V, --vout <module>            \tvideo output method"
924           "\n      --display <display>        \tdisplay string"
925           "\n      --width <w>, --height <h>  \tdisplay dimensions"
926           "\n  -g, --grayscale                \tgrayscale output"
927           "\n      --fullscreen               \tfullscreen output"
928           "\n      --overlay                  \taccelerated display"
929           "\n      --xvadaptor <adaptor>      \tXVideo adaptor"
930           "\n      --color                    \tcolor output"
931           "\n      --motion <module>          \tmotion compensation method"
932           "\n      --idct <module>            \tIDCT method"
933           "\n      --yuv <module>             \tYUV method"
934           "\n      --synchro <type>           \tforce synchro algorithm"
935           "\n      --smp <number of threads>  \tuse several processors"
936           "\n"
937           "\n  -t, --dvdtitle <num>           \tchoose DVD title"
938           "\n  -T, --dvdchapter <num>         \tchoose DVD chapter"
939           "\n  -u, --dvdangle <num>           \tchoose DVD angle"
940           "\n  -a, --dvdaudio <type>          \tchoose DVD audio type"
941           "\n  -c, --dvdchannel <channel>     \tchoose DVD audio channel"
942           "\n  -s, --dvdsubtitle <channel>    \tchoose DVD subtitle channel"
943           "\n      --dvdcss-method <method>   \tselect dvdcss decryption method"
944           "\n      --dvdcss-verbose <level>   \tselect dvdcss verbose level"
945           "\n"
946           "\n      --input                    \tinput method"
947           "\n      --channels                 \tenable channels"
948           "\n      --channelserver <host>     \tchannel server address"
949           "\n"
950           "\n      --mpeg_adec <builtin|mad>  \tchoose audio decoder"
951           "\n"
952           "\n  -h, --help                     \tprint help and exit"
953           "\n  -H, --longhelp                 \tprint long help and exit"
954           "\n      --version                  \toutput version information and exit"
955           "\n\nPlaylist items :"
956           "\n  *.mpg, *.vob                   \tPlain MPEG-1/2 files"
957           "\n  dvd:<device>[@<raw device>]    \tDVD device"
958           "\n  vcd:<device>                   \tVCD device"
959           "\n  udpstream:[<server>[:<server port>]][@[<bind address>][:<bind port>]]"
960           "\n                                 \tUDP stream sent by VLS"
961           "\n  vlc:loop                       \tLoop execution of the playlist"
962           "\n  vlc:pause                      \tPause execution of playlist items"
963           "\n  vlc:quit                       \tQuit VLC");
964
965     if( i_fashion == SHORT_HELP )
966         return;
967
968     /* Interface parameters */
969     intf_MsgImm( "\nInterface parameters:"
970         "\n  " INTF_METHOD_VAR "=<method name>        \tinterface method"
971         "\n  " INTF_INIT_SCRIPT_VAR "=<filename>              \tinitialization script"
972         "\n  " INTF_CHANNELS_VAR "=<filename>         \tchannels list"
973         "\n  " INTF_STDOUT_VAR "=<filename>           \tredirect console stdout"
974         "\n  " MEMCPY_METHOD_VAR "=<method name>      \tmemcpy method" );
975
976     /* Audio parameters */
977     intf_MsgImm( "\nAudio parameters:"
978         "\n  " AOUT_METHOD_VAR "=<method name>        \taudio method"
979         "\n  " AOUT_DSP_VAR "=<filename>              \tdsp device path"
980         "\n  " AOUT_STEREO_VAR "={1|0}                \tstereo or mono output"
981         "\n  " AOUT_SPDIF_VAR "={1|0}                 \tAC3 pass-through mode"
982         "\n  " DOWNMIX_METHOD_VAR "=<method name>     \tAC3 downmix method"
983         "\n  " IMDCT_METHOD_VAR "=<method name>       \tAC3 IMDCT method"
984         "\n  " AOUT_VOLUME_VAR "=[0..1024]            \tVLC output volume"
985         "\n  " AOUT_RATE_VAR "=<rate>                 \toutput rate" );
986
987     /* Video parameters */
988     intf_MsgImm( "\nVideo parameters:"
989         "\n  " VOUT_METHOD_VAR "=<method name>        \tdisplay method"
990         "\n  " VOUT_DISPLAY_VAR "=<display name>      \tdisplay used"
991         "\n  " VOUT_WIDTH_VAR "=<width>               \tdisplay width"
992         "\n  " VOUT_HEIGHT_VAR "=<height>             \tdislay height"
993         "\n  " VOUT_FB_DEV_VAR "=<filename>           \tframebuffer device path"
994         "\n  " VOUT_GRAYSCALE_VAR "={1|0}             \tgrayscale or color output"
995         "\n  " VOUT_FULLSCREEN_VAR "={1|0}            \tfullscreen"
996         "\n  " VOUT_OVERLAY_VAR "={1|0}               \toverlay"
997         "\n  " VOUT_XVADAPTOR_VAR "=<adaptor>         \tXVideo adaptor"
998         "\n  " MOTION_METHOD_VAR "=<method name>      \tmotion compensation method"
999         "\n  " IDCT_METHOD_VAR "=<method name>        \tIDCT method"
1000         "\n  " YUV_METHOD_VAR "=<method name>         \tYUV method"
1001         "\n  " VPAR_SYNCHRO_VAR "={I|I+|IP|IP+|IPB}   \tsynchro algorithm"
1002         "\n  " VDEC_SMP_VAR "=<number of threads>     \tuse several processors" );
1003
1004     /* DVD parameters */
1005     intf_MsgImm( "\nDVD parameters:"
1006         "\n  " INPUT_DVD_DEVICE_VAR "=<device>        \tDVD device"
1007         "\n  " INPUT_TITLE_VAR "=<title>              \ttitle number"
1008         "\n  " INPUT_CHAPTER_VAR "=<chapter>          \tchapter number"
1009         "\n  " INPUT_ANGLE_VAR "=<angle>              \tangle number"
1010         "\n  " INPUT_AUDIO_VAR "={ac3|lpcm|mpeg|off}  \taudio type"
1011         "\n  " INPUT_CHANNEL_VAR "=[0-15]             \taudio channel"
1012         "\n  " INPUT_SUBTITLE_VAR "=[0-31]            \tsubtitle channel" );
1013
1014     /* Input parameters */
1015     intf_MsgImm( "\nInput parameters:"
1016         "\n  " INPUT_IFACE_VAR "=<interface>          \tnetwork interface"
1017         "\n  " INPUT_CHANNEL_SERVER_VAR "=<hostname>  \tchannel server"
1018         "\n  " INPUT_CHANNEL_PORT_VAR "=<port>        \tchannel server port" );
1019
1020     /* Decoder parameters */
1021     intf_MsgImm( "\nDecoder parameters:"
1022         "\n  " ADEC_MPEG_VAR "=<builtin|mad>          \taudio decoder" );
1023 }
1024
1025 /*****************************************************************************
1026  * Version: print complete program version
1027  *****************************************************************************
1028  * Print complete program version and build number.
1029  *****************************************************************************/
1030 static void Version( void )
1031 {
1032     intf_MsgImm( VERSION_MESSAGE
1033         "This program comes with NO WARRANTY, to the extent permitted by law.\n"
1034         "You may redistribute it under the terms of the GNU General Public License;\n"
1035         "see the file named COPYING for details.\n"
1036         "Written by the VideoLAN team at Ecole Centrale, Paris." );
1037 }
1038
1039 /*****************************************************************************
1040  * InitSignalHandler: system signal handler initialization
1041  *****************************************************************************
1042  * Set the signal handlers. SIGTERM is not intercepted, because we need at
1043  * at least a method to kill the program when all other methods failed, and
1044  * when we don't want to use SIGKILL.
1045  *****************************************************************************/
1046 static void InitSignalHandler( void )
1047 {
1048     /* Termination signals */
1049 #ifndef WIN32
1050     signal( SIGINT,  FatalSignalHandler );
1051     signal( SIGHUP,  FatalSignalHandler );
1052     signal( SIGQUIT, FatalSignalHandler );
1053
1054     /* Other signals */
1055     signal( SIGALRM, SimpleSignalHandler );
1056     signal( SIGPIPE, SimpleSignalHandler );
1057 #endif
1058 }
1059
1060
1061 /*****************************************************************************
1062  * SimpleSignalHandler: system signal handler
1063  *****************************************************************************
1064  * This function is called when a non fatal signal is received by the program.
1065  *****************************************************************************/
1066 static void SimpleSignalHandler( int i_signal )
1067 {
1068     /* Acknowledge the signal received */
1069     intf_WarnMsg( 0, "intf: ignoring signal %d", i_signal );
1070 }
1071
1072
1073 /*****************************************************************************
1074  * FatalSignalHandler: system signal handler
1075  *****************************************************************************
1076  * This function is called when a fatal signal is received by the program.
1077  * It tries to end the program in a clean way.
1078  *****************************************************************************/
1079 static void FatalSignalHandler( int i_signal )
1080 {
1081     /* Once a signal has been trapped, the termination sequence will be
1082      * armed and following signals will be ignored to avoid sending messages
1083      * to an interface having been destroyed */
1084 #ifndef WIN32
1085     signal( SIGINT,  SIG_IGN );
1086     signal( SIGHUP,  SIG_IGN );
1087     signal( SIGQUIT, SIG_IGN );
1088 #endif
1089
1090     /* Acknowledge the signal received */
1091     intf_ErrMsgImm( "intf error: signal %d received, exiting", i_signal );
1092
1093     /* Try to terminate everything - this is done by requesting the end of the
1094      * interface thread */
1095     p_main->p_intf->b_die = 1;
1096 }
1097
1098 /*****************************************************************************
1099  * InstructionSignalHandler: system signal handler
1100  *****************************************************************************
1101  * This function is called when a illegal instruction signal is received by
1102  * the program.
1103  * We use this function to test OS and CPU_Capabilities
1104  *****************************************************************************/
1105 static void InstructionSignalHandler( int i_signal )
1106 {
1107     /* Once a signal has been trapped, the termination sequence will be
1108      * armed and following signals will be ignored to avoid sending messages
1109      * to an interface having been destroyed */
1110
1111     /* Acknowledge the signal received */
1112     i_illegal = 1;
1113     
1114 #ifdef HAVE_SIGRELSE
1115     sigrelse( i_signal );
1116 #endif
1117     longjmp( env, 1 );
1118 }
1119
1120 /*****************************************************************************
1121  * CPUCapabilities: list the processors MMX support and other capabilities
1122  *****************************************************************************
1123  * This function is called to list extensions the CPU may have.
1124  *****************************************************************************/
1125 static int CPUCapabilities( void )
1126 {
1127     volatile int i_capabilities = CPU_CAPABILITY_NONE;
1128
1129 #if defined( SYS_BEOS )
1130     i_capabilities |= CPU_CAPABILITY_FPU
1131                       | CPU_CAPABILITY_486
1132                       | CPU_CAPABILITY_586
1133                       | CPU_CAPABILITY_MMX;
1134
1135     return( i_capabilities );
1136
1137 #elif defined( SYS_DARWIN )
1138     struct host_basic_info hi;
1139     kern_return_t          ret;
1140     host_name_port_t       host;
1141
1142     int i_size;
1143     char *psz_name, *psz_subname;
1144
1145     i_capabilities |= CPU_CAPABILITY_FPU;
1146
1147     /* Should 'never' fail? */
1148     host = mach_host_self();
1149
1150     i_size = sizeof( hi ) / sizeof( int );
1151     ret = host_info( host, HOST_BASIC_INFO, ( host_info_t )&hi, &i_size );
1152
1153     if( ret != KERN_SUCCESS )
1154     {
1155         fprintf( stderr, "error: couldn't get CPU information\n" );
1156         return( i_capabilities );
1157     }
1158
1159     slot_name( hi.cpu_type, hi.cpu_subtype, &psz_name, &psz_subname );
1160     /* FIXME: need better way to detect newer proccessors.
1161      * could do strncmp(a,b,5), but that's real ugly */
1162     if( !strcmp(psz_name, "ppc7400") || !strcmp(psz_name, "ppc7450") )
1163     {
1164         i_capabilities |= CPU_CAPABILITY_ALTIVEC;
1165     }
1166
1167     return( i_capabilities );
1168
1169 #elif defined( __i386__ )
1170     volatile unsigned int  i_eax, i_ebx, i_ecx, i_edx;
1171     volatile boolean_t     b_amd;
1172
1173     i_capabilities |= CPU_CAPABILITY_FPU;
1174
1175     signal( SIGILL, InstructionSignalHandler );
1176     
1177     /* test for a 486 CPU */
1178     asm volatile ( "pushfl\n\t"
1179                    "popl %%eax\n\t"
1180                    "movl %%eax, %%ebx\n\t"
1181                    "xorl $0x200000, %%eax\n\t"
1182                    "pushl %%eax\n\t"
1183                    "popfl\n\t"
1184                    "pushfl\n\t"
1185                    "popl %%eax"
1186                  : "=a" ( i_eax ),
1187                    "=b" ( i_ebx )
1188                  :
1189                  : "cc" );
1190
1191     if( i_eax == i_ebx )
1192     {
1193         signal( SIGILL, NULL );     
1194         return( i_capabilities );
1195     }
1196
1197     i_capabilities |= CPU_CAPABILITY_486;
1198
1199     /* the CPU supports the CPUID instruction - get its level */
1200     cpuid( 0x00000000 );
1201
1202     if( !i_eax )
1203     {
1204         signal( SIGILL, NULL );     
1205         return( i_capabilities );
1206     }
1207
1208     /* FIXME: this isn't correct, since some 486s have cpuid */
1209     i_capabilities |= CPU_CAPABILITY_586;
1210
1211     /* borrowed from mpeg2dec */
1212     b_amd = ( i_ebx == 0x68747541 ) && ( i_ecx == 0x444d4163 )
1213                     && ( i_edx == 0x69746e65 );
1214
1215     /* test for the MMX flag */
1216     cpuid( 0x00000001 );
1217
1218     if( ! (i_edx & 0x00800000) )
1219     {
1220         signal( SIGILL, NULL );     
1221         return( i_capabilities );
1222     }
1223
1224     i_capabilities |= CPU_CAPABILITY_MMX;
1225
1226     if( i_edx & 0x02000000 )
1227     {
1228         i_capabilities |= CPU_CAPABILITY_MMXEXT;
1229
1230 #ifdef CAN_COMPILE_SSE
1231         /* We test if OS support the SSE instructions */
1232         i_illegal = 0;
1233         if( setjmp( env ) == 0 )
1234         {
1235             /* Test a SSE instruction */
1236             __asm__ __volatile__ ( "xorps %%xmm0,%%xmm0\n" : : );
1237         }
1238
1239         if( i_illegal == 0 )
1240         {
1241             i_capabilities |= CPU_CAPABILITY_SSE;
1242         }
1243         else
1244         {
1245             fprintf( stderr, "warning: your OS doesn't have support for "
1246                              "SSE instructions, "
1247                              "some optimizations\nwill be disabled\n" );
1248 #ifdef SYS_LINUX
1249             fprintf( stderr, "(you will need Linux kernel 2.4.x or later)\n" );
1250 #endif
1251         }
1252 #endif
1253     }
1254     
1255     /* test for additional capabilities */
1256     cpuid( 0x80000000 );
1257
1258     if( i_eax < 0x80000001 )
1259     {
1260         signal( SIGILL, NULL );     
1261         return( i_capabilities );
1262     }
1263
1264     /* list these additional capabilities */
1265     cpuid( 0x80000001 );
1266
1267 #ifdef CAN_COMPILE_3DNOW
1268     if( i_edx & 0x80000000 )
1269     {
1270         i_illegal = 0;
1271         if( setjmp( env ) == 0 )
1272         {
1273             /* Test a 3D Now! instruction */
1274             __asm__ __volatile__ ( "pfadd %%mm0,%%mm0\n" "femms\n" : : );
1275         }
1276
1277         if( i_illegal == 0 ) 
1278         {
1279             i_capabilities |= CPU_CAPABILITY_3DNOW;
1280         }
1281     }
1282 #endif
1283
1284     if( b_amd && ( i_edx & 0x00400000 ) )
1285     {
1286         i_capabilities |= CPU_CAPABILITY_MMXEXT;
1287     }
1288
1289     signal( SIGILL, NULL );     
1290     return( i_capabilities );
1291
1292 #elif defined( __powerpc__ )
1293
1294     i_capabilities |= CPU_CAPABILITY_FPU;
1295
1296     /* Test for Altivec */
1297     signal( SIGILL, InstructionSignalHandler );
1298
1299 #ifdef CAN_COMPILE_ALTIVEC
1300     i_illegal = 0;
1301     if( setjmp( env ) == 0 )
1302     {
1303         asm volatile ("mtspr 256, %0\n\t"
1304                       "vand %%v0, %%v0, %%v0"
1305                       :
1306                       : "r" (-1));
1307     }
1308
1309     if( i_illegal == 0 )
1310     {
1311         i_capabilities |= CPU_CAPABILITY_ALTIVEC;
1312     }
1313 #endif
1314
1315     signal( SIGILL, NULL );     
1316     return( i_capabilities );
1317
1318 #else
1319     /* default behaviour */
1320     return( i_capabilities );
1321
1322 #endif
1323 }
1324
1325 /*****************************************************************************
1326  * RedirectSTDOUT: redirect stdout and stderr to a file
1327  *****************************************************************************
1328  * This function will redirect stdout and stderr to a file if the user has
1329  * specified so.
1330  *****************************************************************************/
1331 static int RedirectSTDOUT( void )
1332 {
1333     int  i_fd;
1334     char *psz_filename;
1335
1336     psz_filename = main_GetPszVariable( INTF_STDOUT_VAR, INTF_STDOUT_DEFAULT );
1337
1338     if( *psz_filename )
1339     {
1340         ShowConsole();
1341         i_fd = open( psz_filename, O_CREAT | O_TRUNC | O_RDWR,
1342                                    S_IREAD | S_IWRITE );
1343         if( dup2( i_fd, fileno(stdout) ) == -1 )
1344         {
1345             intf_ErrMsg( "warning: unable to redirect stdout" );
1346         }
1347
1348         if( dup2( i_fd, fileno(stderr) ) == -1 )
1349         {
1350             intf_ErrMsg( "warning: unable to redirect stderr" );
1351         }
1352
1353         close( i_fd );
1354     }
1355     else
1356     {
1357         /* No stdout redirection has been asked so open a console */
1358         if( p_main->i_warning_level )
1359         {
1360             ShowConsole();
1361         }
1362
1363     }
1364
1365     return 0;
1366 }
1367
1368 /*****************************************************************************
1369  * ShowConsole: On Win32, create an output console for debug messages
1370  *****************************************************************************
1371  * This function is usefull only on Win32.
1372  *****************************************************************************/
1373 static void ShowConsole( void )
1374 {
1375 #ifdef WIN32 /*  */
1376     AllocConsole();
1377     freopen( "CONOUT$", "w", stdout );
1378     freopen( "CONOUT$", "w", stderr );
1379     freopen( "CONIN$", "r", stdin );
1380 #endif
1381     return;
1382 }
1383