Ticket #857: config.h

File config.h, 44.3 KB (added by ossi@…, 19 years ago)

config.h

Line 
1/* -------- This file has been automatically generated by configure ---------
2 Note: Any changes in it will be lost when you run configure again. */
3
4/* Protect against multiple inclusion */
5#ifndef MPLAYER_CONFIG_H
6#define MPLAYER_CONFIG_H 1
7
8#define CONFIGURATION "--with-install=fakeinstall --prefix=/usr/local/stow/mplayer --enable-gui --disable-3dnow --disable-3dnowext --realcodecsdir=/opt/RealPlayer8/Codecs --win32codecsdir=/usr/lib/win32 --enable-gl --disable-vesa --disable-svga --disable-sdl --disable-aa --disable-ggi --disable-xinerama --disable-fbdev --disable-directfb --disable-vidix-internal --disable-vidix-external --enable-largefiles"
9
10/* make sure we never get lavformat's poll() emulation, the results are
11 horrible if the X libs try to actually use it, see MPlayer-users
12 Message-ID: <45D49541.8060101@infernix.net>
13 Date: Thu, 15 Feb 2007 18:15:45 +0100
14 Subject: [MPlayer-users] Crash with backtrace when playing back demuxed...
15*/
16#define HAVE_SYS_POLL_H 1
17
18/* use GNU internationalization */
19
20
21/* name of messages charset */
22#define MSG_CHARSET "UTF-8"
23
24/* Runtime CPU detection */
25#undef RUNTIME_CPUDETECT
26
27/* Dynamic a/v plugins */
28#undef DYNAMIC_PLUGINS
29
30/* "restrict" keyword */
31#define restrict __restrict
32
33/* __builtin_expect branch prediction hint */
34#define HAVE_BUILTIN_EXPECT 1
35#ifdef HAVE_BUILTIN_EXPECT
36#define likely(x) __builtin_expect ((x) != 0, 1)
37#define unlikely(x) __builtin_expect ((x) != 0, 0)
38#else
39#define likely(x) (x)
40#define unlikely(x) (x)
41#endif
42
43/* attribute(used) as needed by some compilers */
44#if (__GNUC__ * 100 + __GNUC_MINOR__ >= 300)
45# define attribute_used __attribute__((used))
46#else
47# define attribute_used
48#endif
49
50/* compiler support for named assembler arguments */
51#define NAMED_ASM_ARGS 1
52
53#define PREFIX "/usr/local/stow/mplayer"
54
55/* enable/disable SIGHANDLER */
56#define ENABLE_SIGHANDLER 1
57
58/* enable/disable automatic gdb attach on crash, requires SIGHANDLER */
59#undef CRASH_DEBUG
60
61/* Toggles debugging informations */
62#undef MP_DEBUG
63
64/* Toggles color console output */
65#undef MSG_USE_COLORS
66
67/* Indicates that libcdio is available for VCD and CD-DA playback */
68#undef HAVE_LIBCDIO
69
70/* Indicates that Ogle's libdvdread is available for DVD playback */
71#define USE_DVDREAD 1
72
73/* Indicates that dvdread is internal */
74#define USE_DVDREAD_INTERNAL 1
75
76/* Additional options for libdvdread/libdvdcss */
77#undef DVD_STRUCT_IN_DVD_H
78#define DVD_STRUCT_IN_LINUX_CDROM_H 1
79#undef DVD_STRUCT_IN_SYS_CDIO_H
80#undef DVD_STRUCT_IN_SYS_DVDIO_H
81
82
83#define HAVE_LINUX_DVD_STRUCT 1
84
85
86
87
88#define HAVE_STDDEF_H 1
89
90/* Common data directory (for fonts, etc) */
91#define MPLAYER_DATADIR "/usr/local/stow/mplayer/share/mplayer"
92#define MPLAYER_CONFDIR "/usr/local/stow/mplayer/etc/mplayer"
93#define MPLAYER_LIBDIR "/usr/local/stow/mplayer/lib"
94
95/* Define this to compile stream-caching support, it can be enabled via
96 -cache <kilobytes> */
97#define USE_STREAM_CACHE 1
98
99/* Define if you are using XviD library */
100#define HAVE_XVID4 1
101
102/* Define if you are using the X.264 library */
103#undef HAVE_X264
104
105/* Define if you are using libnut */
106#undef HAVE_LIBNUT
107
108/* Define to include support for libdv-0.9.5 */
109#define HAVE_LIBDV095 1
110
111/* If build mencoder */
112#define HAVE_MENCODER
113
114/* Indicates if libmp3lame is available
115 Note: for mencoder */
116#define HAVE_MP3LAME
117#define HAVE_MP3LAME_PRESET
118#define HAVE_MP3LAME_PRESET_MEDIUM
119
120/* Define this to enable avg. byte/sec-based AVI sync method by default:
121 (use -bps or -nobps commandline option for run-time method selection)
122 -bps gives better sync for vbr mp3 audio, it is now default */
123#define AVI_SYNC_BPS 1
124
125/* Undefine this if you do not want to select mono audio (left or right)
126 with a stereo MPEG layer 2/3 audio stream. The command line option
127 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
128 right-only), with 0 being the default.
129 */
130#define USE_FAKE_MONO 1
131
132/* Undefine this if your sound card driver has no working select().
133 If you have kernel Oops, player hangups, or just no audio, you should
134 try to recompile MPlayer with this option disabled! */
135#define HAVE_AUDIO_SELECT 1
136
137/* define this to use iconv(3) function to codepage conversions */
138#define USE_ICONV 1
139
140/* define this to use nl_langinfo function */
141#define USE_LANGINFO 1
142
143/* define this to use RTC (/dev/rtc) for video timers */
144#define HAVE_RTC 1
145
146/* set up max. outburst. use 65536 for ALSA 0.5, for others 16384 is enough */
147#define MAX_OUTBURST 65536
148
149/* set up audio OUTBURST. Do not change this! */
150#define OUTBURST 512
151
152/* Define this if your system has the header file for the OSS sound interface */
153#define HAVE_SYS_SOUNDCARD_H 1
154
155/* Define this if your system has the header file for the OSS sound interface
156 * in /usr/include */
157#undef HAVE_SOUNDCARD_H
158
159/* Define this if your system has the sysinfo header */
160#define HAVE_SYS_SYSINFO_H 1
161
162/* Define this if your system has ftello() */
163
164#define HAVE_FTELLO 1
165#ifndef HAVE_FTELLO
166/* Need these for FILE and off_t an config.h is usually before other includes*/
167#include <stdio.h>
168#include <sys/types.h>
169off_t ftello(FILE *);
170#endif
171
172/* Define this if your system has the "malloc.h" header file */
173#define HAVE_MALLOC_H 1
174
175/* memalign is mapped to malloc if unsupported */
176#define HAVE_MEMALIGN 1
177
178
179
180/* assembler handling of .align */
181#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"
182
183/* Define this if your system has the "alloca.h" header file */
184#define HAVE_ALLOCA_H 1
185
186/* Define this if your system has the "sys/mman.h" header file */
187#define HAVE_SYS_MMAN_H 1
188
189
190/* Define this if you have the elf dynamic linker -ldl library */
191#define HAVE_LIBDL 1
192
193/* Define this if you have the kstat kernel statistics library */
194#undef HAVE_LIBKSTAT
195
196/* Define this if you have zlib */
197#define HAVE_ZLIB 1
198#ifdef HAVE_ZLIB
199#define CONFIG_ZLIB 1
200#endif
201
202/* Define this if you have shm support */
203#define HAVE_SHM 1
204
205/* Define this if your system has scandir & alphasort */
206#define HAVE_SCANDIR 1
207
208/* Define this if your system has strsep */
209#define HAVE_STRSEP 1
210
211/* Define this if your system has strlcpy */
212#undef HAVE_STRLCPY
213#ifndef HAVE_STRLCPY
214unsigned int strlcpy (char *dest, const char *src, unsigned int size);
215#endif
216
217/* Define this if your system has strlcat */
218#undef HAVE_STRLCAT
219#ifndef HAVE_STRLCAT
220unsigned int strlcat (char *dest, const char *src, unsigned int size);
221#endif
222
223/* Define this if your system has fseeko */
224#define HAVE_FSEEKO 1
225#ifndef HAVE_FSEEKO
226/* Need these for FILE and off_t an config.h is usually before other includes*/
227#include <stdio.h>
228#include <sys/types.h>
229int fseeko(FILE *, off_t, int);
230#endif
231
232/* Define this if your system has vsscanf */
233#define HAVE_VSSCANF 1
234
235/* Define this if your system has swab */
236#define HAVE_SWAB 1
237
238/* Define this if your system has posix select */
239#define HAVE_POSIX_SELECT 1
240
241/* Define this if your system has gettimeofday */
242#define HAVE_GETTIMEOFDAY 1
243
244/* Define this if your system has glob */
245#define HAVE_GLOB 1
246
247/* Define this if your system has setenv */
248#define HAVE_SETENV 1
249#ifndef HAVE_SETENV
250int setenv(const char *name, const char *val, int overwrite);
251#endif
252
253/* Define this if your system has sysi86 */
254
255
256
257/* Define this if your system has pthreads */
258#define HAVE_PTHREADS 1
259
260/* Define this if you enabled thread support for libavcodec */
261#define HAVE_THREADS 1
262
263/* LIRC (remote control, see www.lirc.org) support: */
264#define HAVE_LIRC 1
265
266/* Support for maemo (http://www.maemo.org) */
267
268
269/*
270 * LIRCCD (LIRC client daemon)
271 * See http://www.dolda2000.cjb.net/~fredrik/lirccd/
272 */
273#undef HAVE_LIRCC
274
275/* DVD navigation support using libdvdnav */
276#undef USE_DVDNAV
277
278
279/* Define this to enable MPEG 1/2 image postprocessing (requires a FAST CPU!) */
280#define MPEG12_POSTPROC 1
281
282/* Define this to enable image postprocessing in libavcodec (requires a FAST CPU!) */
283#define USE_LIBPOSTPROC 1
284#define USE_LIBPOSTPROC_A 1
285#undef USE_LIBPOSTPROC_SO
286
287/* Win32 DLL support */
288#define USE_WIN32DLL 1
289#define WIN32_PATH "/usr/lib/win32"
290
291/* Mac OS X specific features */
292
293
294
295
296
297/* Build our Win32-loader */
298#define WIN32_LOADER 1
299
300/* ffmpeg's libavcodec support (requires libavcodec source) */
301#define USE_LIBAVCODEC 1
302#define USE_LIBAVCODEC_A 1
303#undef USE_LIBAVCODEC_SO
304#define CONFIG_MPEGAUDIO_HP 1
305
306/* ffmpeg's libavformat support (requires libavformat source) */
307#define USE_LIBAVFORMAT 1
308#define USE_LIBAVFORMAT_A 1
309#undef USE_LIBAVFORMAT_SO
310
311#define USE_LIBAVUTIL 1
312#define USE_LIBAVUTIL_A 1
313#undef USE_LIBAVUTIL_SO
314
315/* Use libavcodec's decoders */
316#define CONFIG_DECODERS 1
317/* Use libavcodec's encoders */
318#define CONFIG_ENCODERS 1
319
320/* Use libavformat's demuxers */
321#define CONFIG_DEMUXERS 1
322/* Use libavformat's muxers */
323#define CONFIG_MUXERS 1
324
325/* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
326#define HAVE_EBX_AVAILABLE 1
327#define HAVE_EBP_AVAILABLE 1
328
329#define CONFIG_GPL 1
330
331/* Use AMR codecs from libavcodec. */
332
333#undef CONFIG_LIBAMR_NB
334#undef CONFIG_LIBAMR_WB
335
336/* Use specific parts from FFmpeg. */
337#define CONFIG_AASC_DECODER 1
338#define ENABLE_AASC_DECODER 1
339#define CONFIG_ASV1_DECODER 1
340#define ENABLE_ASV1_DECODER 1
341#define CONFIG_ASV2_DECODER 1
342#define ENABLE_ASV2_DECODER 1
343#define CONFIG_AVS_DECODER 1
344#define ENABLE_AVS_DECODER 1
345#define CONFIG_BETHSOFTVID_DECODER 1
346#define ENABLE_BETHSOFTVID_DECODER 1
347#define CONFIG_BMP_DECODER 1
348#define ENABLE_BMP_DECODER 1
349#define CONFIG_C93_DECODER 1
350#define ENABLE_C93_DECODER 1
351#define CONFIG_CAVS_DECODER 1
352#define ENABLE_CAVS_DECODER 1
353#define CONFIG_CINEPAK_DECODER 1
354#define ENABLE_CINEPAK_DECODER 1
355#define CONFIG_CLJR_DECODER 1
356#define ENABLE_CLJR_DECODER 1
357#define CONFIG_CSCD_DECODER 1
358#define ENABLE_CSCD_DECODER 1
359#define CONFIG_CYUV_DECODER 1
360#define ENABLE_CYUV_DECODER 1
361#define CONFIG_DNXHD_DECODER 1
362#define ENABLE_DNXHD_DECODER 1
363#define CONFIG_DSICINVIDEO_DECODER 1
364#define ENABLE_DSICINVIDEO_DECODER 1
365#define CONFIG_DVVIDEO_DECODER 1
366#define ENABLE_DVVIDEO_DECODER 1
367#define CONFIG_DXA_DECODER 1
368#define ENABLE_DXA_DECODER 1
369#define CONFIG_EIGHTBPS_DECODER 1
370#define ENABLE_EIGHTBPS_DECODER 1
371#define CONFIG_FFV1_DECODER 1
372#define ENABLE_FFV1_DECODER 1
373#define CONFIG_FFVHUFF_DECODER 1
374#define ENABLE_FFVHUFF_DECODER 1
375#define CONFIG_FLASHSV_DECODER 1
376#define ENABLE_FLASHSV_DECODER 1
377#define CONFIG_FLIC_DECODER 1
378#define ENABLE_FLIC_DECODER 1
379#define CONFIG_FLV_DECODER 1
380#define ENABLE_FLV_DECODER 1
381#define CONFIG_FOURXM_DECODER 1
382#define ENABLE_FOURXM_DECODER 1
383#define CONFIG_FRAPS_DECODER 1
384#define ENABLE_FRAPS_DECODER 1
385#define CONFIG_GIF_DECODER 1
386#define ENABLE_GIF_DECODER 1
387#define CONFIG_H261_DECODER 1
388#define ENABLE_H261_DECODER 1
389#define CONFIG_H263_DECODER 1
390#define ENABLE_H263_DECODER 1
391#define CONFIG_H263I_DECODER 1
392#define ENABLE_H263I_DECODER 1
393#define CONFIG_H264_DECODER 1
394#define ENABLE_H264_DECODER 1
395#define CONFIG_HUFFYUV_DECODER 1
396#define ENABLE_HUFFYUV_DECODER 1
397#define CONFIG_IDCIN_DECODER 1
398#define ENABLE_IDCIN_DECODER 1
399#define CONFIG_INDEO2_DECODER 1
400#define ENABLE_INDEO2_DECODER 1
401#define CONFIG_INDEO3_DECODER 1
402#define ENABLE_INDEO3_DECODER 1
403#define CONFIG_INTERPLAY_VIDEO_DECODER 1
404#define ENABLE_INTERPLAY_VIDEO_DECODER 1
405#define CONFIG_JPEGLS_DECODER 1
406#define ENABLE_JPEGLS_DECODER 1
407#define CONFIG_KMVC_DECODER 1
408#define ENABLE_KMVC_DECODER 1
409#define CONFIG_LOCO_DECODER 1
410#define ENABLE_LOCO_DECODER 1
411#define CONFIG_MDEC_DECODER 1
412#define ENABLE_MDEC_DECODER 1
413#define CONFIG_MJPEG_DECODER 1
414#define ENABLE_MJPEG_DECODER 1
415#define CONFIG_MJPEGB_DECODER 1
416#define ENABLE_MJPEGB_DECODER 1
417#define CONFIG_MMVIDEO_DECODER 1
418#define ENABLE_MMVIDEO_DECODER 1
419#define ENABLE_MPEG_XVMC_DECODER 0
420#define CONFIG_MPEG1VIDEO_DECODER 1
421#define ENABLE_MPEG1VIDEO_DECODER 1
422#define CONFIG_MPEG2VIDEO_DECODER 1
423#define ENABLE_MPEG2VIDEO_DECODER 1
424#define CONFIG_MPEG4_DECODER 1
425#define ENABLE_MPEG4_DECODER 1
426#define CONFIG_MPEGVIDEO_DECODER 1
427#define ENABLE_MPEGVIDEO_DECODER 1
428#define CONFIG_MSMPEG4V1_DECODER 1
429#define ENABLE_MSMPEG4V1_DECODER 1
430#define CONFIG_MSMPEG4V2_DECODER 1
431#define ENABLE_MSMPEG4V2_DECODER 1
432#define CONFIG_MSMPEG4V3_DECODER 1
433#define ENABLE_MSMPEG4V3_DECODER 1
434#define CONFIG_MSRLE_DECODER 1
435#define ENABLE_MSRLE_DECODER 1
436#define CONFIG_MSVIDEO1_DECODER 1
437#define ENABLE_MSVIDEO1_DECODER 1
438#define CONFIG_MSZH_DECODER 1
439#define ENABLE_MSZH_DECODER 1
440#define CONFIG_NUV_DECODER 1
441#define ENABLE_NUV_DECODER 1
442#define CONFIG_PNG_DECODER 1
443#define ENABLE_PNG_DECODER 1
444#define CONFIG_PTX_DECODER 1
445#define ENABLE_PTX_DECODER 1
446#define CONFIG_QDRAW_DECODER 1
447#define ENABLE_QDRAW_DECODER 1
448#define CONFIG_QPEG_DECODER 1
449#define ENABLE_QPEG_DECODER 1
450#define CONFIG_QTRLE_DECODER 1
451#define ENABLE_QTRLE_DECODER 1
452#define CONFIG_RAWVIDEO_DECODER 1
453#define ENABLE_RAWVIDEO_DECODER 1
454#define CONFIG_ROQ_DECODER 1
455#define ENABLE_ROQ_DECODER 1
456#define CONFIG_RPZA_DECODER 1
457#define ENABLE_RPZA_DECODER 1
458#define CONFIG_RV10_DECODER 1
459#define ENABLE_RV10_DECODER 1
460#define CONFIG_RV20_DECODER 1
461#define ENABLE_RV20_DECODER 1
462#define CONFIG_SGI_DECODER 1
463#define ENABLE_SGI_DECODER 1
464#define CONFIG_SMACKER_DECODER 1
465#define ENABLE_SMACKER_DECODER 1
466#define CONFIG_SMC_DECODER 1
467#define ENABLE_SMC_DECODER 1
468#define CONFIG_SNOW_DECODER 1
469#define ENABLE_SNOW_DECODER 1
470#define CONFIG_SP5X_DECODER 1
471#define ENABLE_SP5X_DECODER 1
472#define CONFIG_SVQ1_DECODER 1
473#define ENABLE_SVQ1_DECODER 1
474#define CONFIG_SVQ3_DECODER 1
475#define ENABLE_SVQ3_DECODER 1
476#define CONFIG_TARGA_DECODER 1
477#define ENABLE_TARGA_DECODER 1
478#define CONFIG_THEORA_DECODER 1
479#define ENABLE_THEORA_DECODER 1
480#define CONFIG_THP_DECODER 1
481#define ENABLE_THP_DECODER 1
482#define CONFIG_TIERTEXSEQVIDEO_DECODER 1
483#define ENABLE_TIERTEXSEQVIDEO_DECODER 1
484#define CONFIG_TIFF_DECODER 1
485#define ENABLE_TIFF_DECODER 1
486#define CONFIG_TRUEMOTION1_DECODER 1
487#define ENABLE_TRUEMOTION1_DECODER 1
488#define CONFIG_TRUEMOTION2_DECODER 1
489#define ENABLE_TRUEMOTION2_DECODER 1
490#define CONFIG_TSCC_DECODER 1
491#define ENABLE_TSCC_DECODER 1
492#define CONFIG_TXD_DECODER 1
493#define ENABLE_TXD_DECODER 1
494#define CONFIG_ULTI_DECODER 1
495#define ENABLE_ULTI_DECODER 1
496#define CONFIG_VC1_DECODER 1
497#define ENABLE_VC1_DECODER 1
498#define CONFIG_VCR1_DECODER 1
499#define ENABLE_VCR1_DECODER 1
500#define CONFIG_VMDVIDEO_DECODER 1
501#define ENABLE_VMDVIDEO_DECODER 1
502#define CONFIG_VMNC_DECODER 1
503#define ENABLE_VMNC_DECODER 1
504#define CONFIG_VP3_DECODER 1
505#define ENABLE_VP3_DECODER 1
506#define CONFIG_VP5_DECODER 1
507#define ENABLE_VP5_DECODER 1
508#define CONFIG_VP6_DECODER 1
509#define ENABLE_VP6_DECODER 1
510#define CONFIG_VP6F_DECODER 1
511#define ENABLE_VP6F_DECODER 1
512#define CONFIG_VQA_DECODER 1
513#define ENABLE_VQA_DECODER 1
514#define CONFIG_WMV1_DECODER 1
515#define ENABLE_WMV1_DECODER 1
516#define CONFIG_WMV2_DECODER 1
517#define ENABLE_WMV2_DECODER 1
518#define CONFIG_WMV3_DECODER 1
519#define ENABLE_WMV3_DECODER 1
520#define CONFIG_WNV1_DECODER 1
521#define ENABLE_WNV1_DECODER 1
522#define CONFIG_XAN_WC3_DECODER 1
523#define ENABLE_XAN_WC3_DECODER 1
524#define CONFIG_XL_DECODER 1
525#define ENABLE_XL_DECODER 1
526#define CONFIG_ZLIB_DECODER 1
527#define ENABLE_ZLIB_DECODER 1
528#define CONFIG_ZMBV_DECODER 1
529#define ENABLE_ZMBV_DECODER 1
530#define ENABLE_MPEG4AAC_DECODER 0
531#define CONFIG_ALAC_DECODER 1
532#define ENABLE_ALAC_DECODER 1
533#define CONFIG_ATRAC3_DECODER 1
534#define ENABLE_ATRAC3_DECODER 1
535#define CONFIG_COOK_DECODER 1
536#define ENABLE_COOK_DECODER 1
537#define CONFIG_DCA_DECODER 1
538#define ENABLE_DCA_DECODER 1
539#define CONFIG_DSICINAUDIO_DECODER 1
540#define ENABLE_DSICINAUDIO_DECODER 1
541#define CONFIG_FLAC_DECODER 1
542#define ENABLE_FLAC_DECODER 1
543#define CONFIG_IMC_DECODER 1
544#define ENABLE_IMC_DECODER 1
545#define ENABLE_LIBAMR_NB_DECODER 0
546#define ENABLE_LIBAMR_WB_DECODER 0
547#define ENABLE_LIBA52_DECODER 0
548#define ENABLE_LIBFAAD_DECODER 0
549#define ENABLE_LIBGSM_DECODER 0
550#define ENABLE_LIBGSM_MS_DECODER 0
551#define ENABLE_LIBVORBIS_DECODER 0
552#define CONFIG_MACE3_DECODER 1
553#define ENABLE_MACE3_DECODER 1
554#define CONFIG_MACE6_DECODER 1
555#define ENABLE_MACE6_DECODER 1
556#define CONFIG_MP2_DECODER 1
557#define ENABLE_MP2_DECODER 1
558#define CONFIG_MP3_DECODER 1
559#define ENABLE_MP3_DECODER 1
560#define CONFIG_MP3ADU_DECODER 1
561#define ENABLE_MP3ADU_DECODER 1
562#define CONFIG_MP3ON4_DECODER 1
563#define ENABLE_MP3ON4_DECODER 1
564#define CONFIG_MPC7_DECODER 1
565#define ENABLE_MPC7_DECODER 1
566#define CONFIG_QDM2_DECODER 1
567#define ENABLE_QDM2_DECODER 1
568#define CONFIG_RA_144_DECODER 1
569#define ENABLE_RA_144_DECODER 1
570#define CONFIG_RA_288_DECODER 1
571#define ENABLE_RA_288_DECODER 1
572#define CONFIG_SHORTEN_DECODER 1
573#define ENABLE_SHORTEN_DECODER 1
574#define CONFIG_SMACKAUD_DECODER 1
575#define ENABLE_SMACKAUD_DECODER 1
576#define CONFIG_SONIC_DECODER 1
577#define ENABLE_SONIC_DECODER 1
578#define CONFIG_TRUESPEECH_DECODER 1
579#define ENABLE_TRUESPEECH_DECODER 1
580#define CONFIG_TTA_DECODER 1
581#define ENABLE_TTA_DECODER 1
582#define CONFIG_VMDAUDIO_DECODER 1
583#define ENABLE_VMDAUDIO_DECODER 1
584#define CONFIG_VORBIS_DECODER 1
585#define ENABLE_VORBIS_DECODER 1
586#define CONFIG_WAVPACK_DECODER 1
587#define ENABLE_WAVPACK_DECODER 1
588#define CONFIG_WMAV1_DECODER 1
589#define ENABLE_WMAV1_DECODER 1
590#define CONFIG_WMAV2_DECODER 1
591#define ENABLE_WMAV2_DECODER 1
592#define CONFIG_WS_SND1_DECODER 1
593#define ENABLE_WS_SND1_DECODER 1
594#define CONFIG_PCM_ALAW_DECODER 1
595#define ENABLE_PCM_ALAW_DECODER 1
596#define CONFIG_PCM_MULAW_DECODER 1
597#define ENABLE_PCM_MULAW_DECODER 1
598#define CONFIG_PCM_S8_DECODER 1
599#define ENABLE_PCM_S8_DECODER 1
600#define CONFIG_PCM_S16BE_DECODER 1
601#define ENABLE_PCM_S16BE_DECODER 1
602#define CONFIG_PCM_S16LE_DECODER 1
603#define ENABLE_PCM_S16LE_DECODER 1
604#define CONFIG_PCM_S24BE_DECODER 1
605#define ENABLE_PCM_S24BE_DECODER 1
606#define CONFIG_PCM_S24DAUD_DECODER 1
607#define ENABLE_PCM_S24DAUD_DECODER 1
608#define CONFIG_PCM_S24LE_DECODER 1
609#define ENABLE_PCM_S24LE_DECODER 1
610#define CONFIG_PCM_S32BE_DECODER 1
611#define ENABLE_PCM_S32BE_DECODER 1
612#define CONFIG_PCM_S32LE_DECODER 1
613#define ENABLE_PCM_S32LE_DECODER 1
614#define CONFIG_PCM_U8_DECODER 1
615#define ENABLE_PCM_U8_DECODER 1
616#define CONFIG_PCM_U16BE_DECODER 1
617#define ENABLE_PCM_U16BE_DECODER 1
618#define CONFIG_PCM_U16LE_DECODER 1
619#define ENABLE_PCM_U16LE_DECODER 1
620#define CONFIG_PCM_U24BE_DECODER 1
621#define ENABLE_PCM_U24BE_DECODER 1
622#define CONFIG_PCM_U24LE_DECODER 1
623#define ENABLE_PCM_U24LE_DECODER 1
624#define CONFIG_PCM_U32BE_DECODER 1
625#define ENABLE_PCM_U32BE_DECODER 1
626#define CONFIG_PCM_U32LE_DECODER 1
627#define ENABLE_PCM_U32LE_DECODER 1
628#define CONFIG_INTERPLAY_DPCM_DECODER 1
629#define ENABLE_INTERPLAY_DPCM_DECODER 1
630#define CONFIG_ROQ_DPCM_DECODER 1
631#define ENABLE_ROQ_DPCM_DECODER 1
632#define CONFIG_SOL_DPCM_DECODER 1
633#define ENABLE_SOL_DPCM_DECODER 1
634#define CONFIG_XAN_DPCM_DECODER 1
635#define ENABLE_XAN_DPCM_DECODER 1
636#define CONFIG_ADPCM_4XM_DECODER 1
637#define ENABLE_ADPCM_4XM_DECODER 1
638#define CONFIG_ADPCM_ADX_DECODER 1
639#define ENABLE_ADPCM_ADX_DECODER 1
640#define CONFIG_ADPCM_CT_DECODER 1
641#define ENABLE_ADPCM_CT_DECODER 1
642#define CONFIG_ADPCM_EA_DECODER 1
643#define ENABLE_ADPCM_EA_DECODER 1
644#define CONFIG_ADPCM_G726_DECODER 1
645#define ENABLE_ADPCM_G726_DECODER 1
646#define CONFIG_ADPCM_IMA_DK3_DECODER 1
647#define ENABLE_ADPCM_IMA_DK3_DECODER 1
648#define CONFIG_ADPCM_IMA_DK4_DECODER 1
649#define ENABLE_ADPCM_IMA_DK4_DECODER 1
650#define CONFIG_ADPCM_IMA_QT_DECODER 1
651#define ENABLE_ADPCM_IMA_QT_DECODER 1
652#define CONFIG_ADPCM_IMA_SMJPEG_DECODER 1
653#define ENABLE_ADPCM_IMA_SMJPEG_DECODER 1
654#define CONFIG_ADPCM_IMA_WAV_DECODER 1
655#define ENABLE_ADPCM_IMA_WAV_DECODER 1
656#define CONFIG_ADPCM_IMA_WS_DECODER 1
657#define ENABLE_ADPCM_IMA_WS_DECODER 1
658#define CONFIG_ADPCM_MS_DECODER 1
659#define ENABLE_ADPCM_MS_DECODER 1
660#define CONFIG_ADPCM_SBPRO_2_DECODER 1
661#define ENABLE_ADPCM_SBPRO_2_DECODER 1
662#define CONFIG_ADPCM_SBPRO_3_DECODER 1
663#define ENABLE_ADPCM_SBPRO_3_DECODER 1
664#define CONFIG_ADPCM_SBPRO_4_DECODER 1
665#define ENABLE_ADPCM_SBPRO_4_DECODER 1
666#define CONFIG_ADPCM_SWF_DECODER 1
667#define ENABLE_ADPCM_SWF_DECODER 1
668#define CONFIG_ADPCM_THP_DECODER 1
669#define ENABLE_ADPCM_THP_DECODER 1
670#define CONFIG_ADPCM_XA_DECODER 1
671#define ENABLE_ADPCM_XA_DECODER 1
672#define CONFIG_ADPCM_YAMAHA_DECODER 1
673#define ENABLE_ADPCM_YAMAHA_DECODER 1
674#define CONFIG_DVBSUB_DECODER 1
675#define ENABLE_DVBSUB_DECODER 1
676#define CONFIG_DVDSUB_DECODER 1
677#define ENABLE_DVDSUB_DECODER 1
678#define CONFIG_ASV1_ENCODER 1
679#define ENABLE_ASV1_ENCODER 1
680#define CONFIG_ASV2_ENCODER 1
681#define ENABLE_ASV2_ENCODER 1
682#define CONFIG_BMP_ENCODER 1
683#define ENABLE_BMP_ENCODER 1
684#define CONFIG_DVVIDEO_ENCODER 1
685#define ENABLE_DVVIDEO_ENCODER 1
686#define CONFIG_FFV1_ENCODER 1
687#define ENABLE_FFV1_ENCODER 1
688#define CONFIG_FFVHUFF_ENCODER 1
689#define ENABLE_FFVHUFF_ENCODER 1
690#define CONFIG_FLASHSV_ENCODER 1
691#define ENABLE_FLASHSV_ENCODER 1
692#define CONFIG_FLV_ENCODER 1
693#define ENABLE_FLV_ENCODER 1
694#define CONFIG_GIF_ENCODER 1
695#define ENABLE_GIF_ENCODER 1
696#define CONFIG_H261_ENCODER 1
697#define ENABLE_H261_ENCODER 1
698#define CONFIG_H263_ENCODER 1
699#define ENABLE_H263_ENCODER 1
700#define CONFIG_H263P_ENCODER 1
701#define ENABLE_H263P_ENCODER 1
702#define CONFIG_HUFFYUV_ENCODER 1
703#define ENABLE_HUFFYUV_ENCODER 1
704#define CONFIG_JPEGLS_ENCODER 1
705#define ENABLE_JPEGLS_ENCODER 1
706#define ENABLE_LIBX264_ENCODER 0
707#define CONFIG_LIBXVID_ENCODER 1
708#define ENABLE_LIBXVID_ENCODER 1
709#define CONFIG_LJPEG_ENCODER 1
710#define ENABLE_LJPEG_ENCODER 1
711#define CONFIG_MJPEG_ENCODER 1
712#define ENABLE_MJPEG_ENCODER 1
713#define CONFIG_MPEG1VIDEO_ENCODER 1
714#define ENABLE_MPEG1VIDEO_ENCODER 1
715#define CONFIG_MPEG2VIDEO_ENCODER 1
716#define ENABLE_MPEG2VIDEO_ENCODER 1
717#define CONFIG_MPEG4_ENCODER 1
718#define ENABLE_MPEG4_ENCODER 1
719#define CONFIG_MSMPEG4V1_ENCODER 1
720#define ENABLE_MSMPEG4V1_ENCODER 1
721#define CONFIG_MSMPEG4V2_ENCODER 1
722#define ENABLE_MSMPEG4V2_ENCODER 1
723#define CONFIG_MSMPEG4V3_ENCODER 1
724#define ENABLE_MSMPEG4V3_ENCODER 1
725#define CONFIG_PAM_ENCODER 1
726#define ENABLE_PAM_ENCODER 1
727#define CONFIG_PBM_ENCODER 1
728#define ENABLE_PBM_ENCODER 1
729#define CONFIG_PGM_ENCODER 1
730#define ENABLE_PGM_ENCODER 1
731#define CONFIG_PGMYUV_ENCODER 1
732#define ENABLE_PGMYUV_ENCODER 1
733#define CONFIG_PNG_ENCODER 1
734#define ENABLE_PNG_ENCODER 1
735#define CONFIG_PPM_ENCODER 1
736#define ENABLE_PPM_ENCODER 1
737#define CONFIG_QTRLE_ENCODER 1
738#define ENABLE_QTRLE_ENCODER 1
739#define CONFIG_RAWVIDEO_ENCODER 1
740#define ENABLE_RAWVIDEO_ENCODER 1
741#define CONFIG_ROQ_ENCODER 1
742#define ENABLE_ROQ_ENCODER 1
743#define CONFIG_RV10_ENCODER 1
744#define ENABLE_RV10_ENCODER 1
745#define CONFIG_RV20_ENCODER 1
746#define ENABLE_RV20_ENCODER 1
747#define CONFIG_SGI_ENCODER 1
748#define ENABLE_SGI_ENCODER 1
749#define CONFIG_SNOW_ENCODER 1
750#define ENABLE_SNOW_ENCODER 1
751#define CONFIG_SVQ1_ENCODER 1
752#define ENABLE_SVQ1_ENCODER 1
753#define CONFIG_TARGA_ENCODER 1
754#define ENABLE_TARGA_ENCODER 1
755#define CONFIG_TIFF_ENCODER 1
756#define ENABLE_TIFF_ENCODER 1
757#define CONFIG_WMV1_ENCODER 1
758#define ENABLE_WMV1_ENCODER 1
759#define CONFIG_WMV2_ENCODER 1
760#define ENABLE_WMV2_ENCODER 1
761#define CONFIG_ZLIB_ENCODER 1
762#define ENABLE_ZLIB_ENCODER 1
763#define CONFIG_ZMBV_ENCODER 1
764#define ENABLE_ZMBV_ENCODER 1
765#define CONFIG_AC3_ENCODER 1
766#define ENABLE_AC3_ENCODER 1
767#define CONFIG_FLAC_ENCODER 1
768#define ENABLE_FLAC_ENCODER 1
769#define ENABLE_LIBAMR_NB_ENCODER 0
770#define ENABLE_LIBAMR_WB_ENCODER 0
771#define ENABLE_LIBFAAC_ENCODER 0
772#define ENABLE_LIBGSM_ENCODER 0
773#define ENABLE_LIBGSM_MS_ENCODER 0
774#define CONFIG_LIBMP3LAME_ENCODER 1
775#define ENABLE_LIBMP3LAME_ENCODER 1
776#define ENABLE_LIBTHEORA_ENCODER 0
777#define ENABLE_LIBVORBIS_ENCODER 0
778#define CONFIG_MP2_ENCODER 1
779#define ENABLE_MP2_ENCODER 1
780#define CONFIG_SONIC_ENCODER 1
781#define ENABLE_SONIC_ENCODER 1
782#define CONFIG_SONIC_LS_ENCODER 1
783#define ENABLE_SONIC_LS_ENCODER 1
784#define CONFIG_VORBIS_ENCODER 1
785#define ENABLE_VORBIS_ENCODER 1
786#define CONFIG_WMAV1_ENCODER 1
787#define ENABLE_WMAV1_ENCODER 1
788#define CONFIG_WMAV2_ENCODER 1
789#define ENABLE_WMAV2_ENCODER 1
790#define CONFIG_PCM_ALAW_ENCODER 1
791#define ENABLE_PCM_ALAW_ENCODER 1
792#define CONFIG_PCM_MULAW_ENCODER 1
793#define ENABLE_PCM_MULAW_ENCODER 1
794#define CONFIG_PCM_S8_ENCODER 1
795#define ENABLE_PCM_S8_ENCODER 1
796#define CONFIG_PCM_S16BE_ENCODER 1
797#define ENABLE_PCM_S16BE_ENCODER 1
798#define CONFIG_PCM_S16LE_ENCODER 1
799#define ENABLE_PCM_S16LE_ENCODER 1
800#define CONFIG_PCM_S24BE_ENCODER 1
801#define ENABLE_PCM_S24BE_ENCODER 1
802#define CONFIG_PCM_S24DAUD_ENCODER 1
803#define ENABLE_PCM_S24DAUD_ENCODER 1
804#define CONFIG_PCM_S24LE_ENCODER 1
805#define ENABLE_PCM_S24LE_ENCODER 1
806#define CONFIG_PCM_S32BE_ENCODER 1
807#define ENABLE_PCM_S32BE_ENCODER 1
808#define CONFIG_PCM_S32LE_ENCODER 1
809#define ENABLE_PCM_S32LE_ENCODER 1
810#define CONFIG_PCM_U8_ENCODER 1
811#define ENABLE_PCM_U8_ENCODER 1
812#define CONFIG_PCM_U16BE_ENCODER 1
813#define ENABLE_PCM_U16BE_ENCODER 1
814#define CONFIG_PCM_U16LE_ENCODER 1
815#define ENABLE_PCM_U16LE_ENCODER 1
816#define CONFIG_PCM_U24BE_ENCODER 1
817#define ENABLE_PCM_U24BE_ENCODER 1
818#define CONFIG_PCM_U24LE_ENCODER 1
819#define ENABLE_PCM_U24LE_ENCODER 1
820#define CONFIG_PCM_U32BE_ENCODER 1
821#define ENABLE_PCM_U32BE_ENCODER 1
822#define CONFIG_PCM_U32LE_ENCODER 1
823#define ENABLE_PCM_U32LE_ENCODER 1
824#define CONFIG_ROQ_DPCM_ENCODER 1
825#define ENABLE_ROQ_DPCM_ENCODER 1
826#define CONFIG_ADPCM_4XM_ENCODER 1
827#define ENABLE_ADPCM_4XM_ENCODER 1
828#define CONFIG_ADPCM_ADX_ENCODER 1
829#define ENABLE_ADPCM_ADX_ENCODER 1
830#define CONFIG_ADPCM_CT_ENCODER 1
831#define ENABLE_ADPCM_CT_ENCODER 1
832#define CONFIG_ADPCM_EA_ENCODER 1
833#define ENABLE_ADPCM_EA_ENCODER 1
834#define CONFIG_ADPCM_G726_ENCODER 1
835#define ENABLE_ADPCM_G726_ENCODER 1
836#define CONFIG_ADPCM_IMA_DK3_ENCODER 1
837#define ENABLE_ADPCM_IMA_DK3_ENCODER 1
838#define CONFIG_ADPCM_IMA_DK4_ENCODER 1
839#define ENABLE_ADPCM_IMA_DK4_ENCODER 1
840#define CONFIG_ADPCM_IMA_QT_ENCODER 1
841#define ENABLE_ADPCM_IMA_QT_ENCODER 1
842#define CONFIG_ADPCM_IMA_SMJPEG_ENCODER 1
843#define ENABLE_ADPCM_IMA_SMJPEG_ENCODER 1
844#define CONFIG_ADPCM_IMA_WAV_ENCODER 1
845#define ENABLE_ADPCM_IMA_WAV_ENCODER 1
846#define CONFIG_ADPCM_IMA_WS_ENCODER 1
847#define ENABLE_ADPCM_IMA_WS_ENCODER 1
848#define CONFIG_ADPCM_MS_ENCODER 1
849#define ENABLE_ADPCM_MS_ENCODER 1
850#define CONFIG_ADPCM_SBPRO_2_ENCODER 1
851#define ENABLE_ADPCM_SBPRO_2_ENCODER 1
852#define CONFIG_ADPCM_SBPRO_3_ENCODER 1
853#define ENABLE_ADPCM_SBPRO_3_ENCODER 1
854#define CONFIG_ADPCM_SBPRO_4_ENCODER 1
855#define ENABLE_ADPCM_SBPRO_4_ENCODER 1
856#define CONFIG_ADPCM_SWF_ENCODER 1
857#define ENABLE_ADPCM_SWF_ENCODER 1
858#define CONFIG_ADPCM_XA_ENCODER 1
859#define ENABLE_ADPCM_XA_ENCODER 1
860#define CONFIG_ADPCM_YAMAHA_ENCODER 1
861#define ENABLE_ADPCM_YAMAHA_ENCODER 1
862#define CONFIG_DVBSUB_ENCODER 1
863#define ENABLE_DVBSUB_ENCODER 1
864#define CONFIG_DVDSUB_ENCODER 1
865#define ENABLE_DVDSUB_ENCODER 1
866#define CONFIG_AAC_PARSER 1
867#define ENABLE_AAC_PARSER 1
868#define CONFIG_AC3_PARSER 1
869#define ENABLE_AC3_PARSER 1
870#define CONFIG_CAVSVIDEO_PARSER 1
871#define ENABLE_CAVSVIDEO_PARSER 1
872#define CONFIG_DCA_PARSER 1
873#define ENABLE_DCA_PARSER 1
874#define CONFIG_DVBSUB_PARSER 1
875#define ENABLE_DVBSUB_PARSER 1
876#define CONFIG_DVDSUB_PARSER 1
877#define ENABLE_DVDSUB_PARSER 1
878#define CONFIG_H261_PARSER 1
879#define ENABLE_H261_PARSER 1
880#define CONFIG_H263_PARSER 1
881#define ENABLE_H263_PARSER 1
882#define CONFIG_H264_PARSER 1
883#define ENABLE_H264_PARSER 1
884#define CONFIG_MJPEG_PARSER 1
885#define ENABLE_MJPEG_PARSER 1
886#define CONFIG_MPEG4VIDEO_PARSER 1
887#define ENABLE_MPEG4VIDEO_PARSER 1
888#define CONFIG_MPEGAUDIO_PARSER 1
889#define ENABLE_MPEGAUDIO_PARSER 1
890#define CONFIG_MPEGVIDEO_PARSER 1
891#define ENABLE_MPEGVIDEO_PARSER 1
892#define CONFIG_PNM_PARSER 1
893#define ENABLE_PNM_PARSER 1
894#define CONFIG_VC1_PARSER 1
895#define ENABLE_VC1_PARSER 1
896#define CONFIG_AAC_DEMUXER 1
897#define ENABLE_AAC_DEMUXER 1
898#define CONFIG_AC3_DEMUXER 1
899#define ENABLE_AC3_DEMUXER 1
900#define CONFIG_AIFF_DEMUXER 1
901#define ENABLE_AIFF_DEMUXER 1
902#define CONFIG_AMR_DEMUXER 1
903#define ENABLE_AMR_DEMUXER 1
904#define CONFIG_APC_DEMUXER 1
905#define ENABLE_APC_DEMUXER 1
906#define CONFIG_ASF_DEMUXER 1
907#define ENABLE_ASF_DEMUXER 1
908#define CONFIG_AU_DEMUXER 1
909#define ENABLE_AU_DEMUXER 1
910#define ENABLE_AUDIO_DEMUXER 0
911#define CONFIG_AVI_DEMUXER 1
912#define ENABLE_AVI_DEMUXER 1
913#define CONFIG_AVS_DEMUXER 1
914#define ENABLE_AVS_DEMUXER 1
915#define CONFIG_BETHSOFTVID_DEMUXER 1
916#define ENABLE_BETHSOFTVID_DEMUXER 1
917#define CONFIG_C93_DEMUXER 1
918#define ENABLE_C93_DEMUXER 1
919#define CONFIG_DAUD_DEMUXER 1
920#define ENABLE_DAUD_DEMUXER 1
921#define ENABLE_DC1394_DEMUXER 0
922#define CONFIG_DSICIN_DEMUXER 1
923#define ENABLE_DSICIN_DEMUXER 1
924#define CONFIG_DTS_DEMUXER 1
925#define ENABLE_DTS_DEMUXER 1
926#define CONFIG_DV_DEMUXER 1
927#define ENABLE_DV_DEMUXER 1
928#define ENABLE_DV1394_DEMUXER 0
929#define CONFIG_DXA_DEMUXER 1
930#define ENABLE_DXA_DEMUXER 1
931#define CONFIG_EA_DEMUXER 1
932#define ENABLE_EA_DEMUXER 1
933#define CONFIG_FFM_DEMUXER 1
934#define ENABLE_FFM_DEMUXER 1
935#define CONFIG_FLAC_DEMUXER 1
936#define ENABLE_FLAC_DEMUXER 1
937#define CONFIG_FLIC_DEMUXER 1
938#define ENABLE_FLIC_DEMUXER 1
939#define CONFIG_FLV_DEMUXER 1
940#define ENABLE_FLV_DEMUXER 1
941#define CONFIG_FOURXM_DEMUXER 1
942#define ENABLE_FOURXM_DEMUXER 1
943#define CONFIG_GIF_DEMUXER 1
944#define ENABLE_GIF_DEMUXER 1
945#define CONFIG_GXF_DEMUXER 1
946#define ENABLE_GXF_DEMUXER 1
947#define CONFIG_H261_DEMUXER 1
948#define ENABLE_H261_DEMUXER 1
949#define CONFIG_H263_DEMUXER 1
950#define ENABLE_H263_DEMUXER 1
951#define CONFIG_H264_DEMUXER 1
952#define ENABLE_H264_DEMUXER 1
953#define CONFIG_IDCIN_DEMUXER 1
954#define ENABLE_IDCIN_DEMUXER 1
955#define CONFIG_IMAGE2_DEMUXER 1
956#define ENABLE_IMAGE2_DEMUXER 1
957#define CONFIG_IMAGE2PIPE_DEMUXER 1
958#define ENABLE_IMAGE2PIPE_DEMUXER 1
959#define CONFIG_INGENIENT_DEMUXER 1
960#define ENABLE_INGENIENT_DEMUXER 1
961#define CONFIG_IPMOVIE_DEMUXER 1
962#define ENABLE_IPMOVIE_DEMUXER 1
963#define ENABLE_LIBNUT_DEMUXER 0
964#define CONFIG_M4V_DEMUXER 1
965#define ENABLE_M4V_DEMUXER 1
966#define CONFIG_MATROSKA_DEMUXER 1
967#define ENABLE_MATROSKA_DEMUXER 1
968#define CONFIG_MJPEG_DEMUXER 1
969#define ENABLE_MJPEG_DEMUXER 1
970#define CONFIG_MM_DEMUXER 1
971#define ENABLE_MM_DEMUXER 1
972#define CONFIG_MMF_DEMUXER 1
973#define ENABLE_MMF_DEMUXER 1
974#define CONFIG_MOV_DEMUXER 1
975#define ENABLE_MOV_DEMUXER 1
976#define CONFIG_MP3_DEMUXER 1
977#define ENABLE_MP3_DEMUXER 1
978#define CONFIG_MPC_DEMUXER 1
979#define ENABLE_MPC_DEMUXER 1
980#define CONFIG_MPEGPS_DEMUXER 1
981#define ENABLE_MPEGPS_DEMUXER 1
982#define CONFIG_MPEGTS_DEMUXER 1
983#define ENABLE_MPEGTS_DEMUXER 1
984#define CONFIG_MPEGTSRAW_DEMUXER 1
985#define ENABLE_MPEGTSRAW_DEMUXER 1
986#define CONFIG_MPEGVIDEO_DEMUXER 1
987#define ENABLE_MPEGVIDEO_DEMUXER 1
988#define CONFIG_MTV_DEMUXER 1
989#define ENABLE_MTV_DEMUXER 1
990#define CONFIG_MXF_DEMUXER 1
991#define ENABLE_MXF_DEMUXER 1
992#define CONFIG_NSV_DEMUXER 1
993#define ENABLE_NSV_DEMUXER 1
994#define CONFIG_NUT_DEMUXER 1
995#define ENABLE_NUT_DEMUXER 1
996#define CONFIG_NUV_DEMUXER 1
997#define ENABLE_NUV_DEMUXER 1
998#define CONFIG_OGG_DEMUXER 1
999#define ENABLE_OGG_DEMUXER 1
1000#define CONFIG_PCM_ALAW_DEMUXER 1
1001#define ENABLE_PCM_ALAW_DEMUXER 1
1002#define CONFIG_PCM_MULAW_DEMUXER 1
1003#define ENABLE_PCM_MULAW_DEMUXER 1
1004#define CONFIG_PCM_S16BE_DEMUXER 1
1005#define ENABLE_PCM_S16BE_DEMUXER 1
1006#define CONFIG_PCM_S16LE_DEMUXER 1
1007#define ENABLE_PCM_S16LE_DEMUXER 1
1008#define CONFIG_PCM_S8_DEMUXER 1
1009#define ENABLE_PCM_S8_DEMUXER 1
1010#define CONFIG_PCM_U16BE_DEMUXER 1
1011#define ENABLE_PCM_U16BE_DEMUXER 1
1012#define CONFIG_PCM_U16LE_DEMUXER 1
1013#define ENABLE_PCM_U16LE_DEMUXER 1
1014#define CONFIG_PCM_U8_DEMUXER 1
1015#define ENABLE_PCM_U8_DEMUXER 1
1016#define CONFIG_RAWVIDEO_DEMUXER 1
1017#define ENABLE_RAWVIDEO_DEMUXER 1
1018#define CONFIG_RM_DEMUXER 1
1019#define ENABLE_RM_DEMUXER 1
1020#define CONFIG_ROQ_DEMUXER 1
1021#define ENABLE_ROQ_DEMUXER 1
1022#define ENABLE_REDIR_DEMUXER 0
1023#define ENABLE_RTSP_DEMUXER 0
1024#define ENABLE_SDP_DEMUXER 0
1025#define CONFIG_SEGAFILM_DEMUXER 1
1026#define ENABLE_SEGAFILM_DEMUXER 1
1027#define CONFIG_SHORTEN_DEMUXER 1
1028#define ENABLE_SHORTEN_DEMUXER 1
1029#define CONFIG_SMACKER_DEMUXER 1
1030#define ENABLE_SMACKER_DEMUXER 1
1031#define CONFIG_SOL_DEMUXER 1
1032#define ENABLE_SOL_DEMUXER 1
1033#define CONFIG_STR_DEMUXER 1
1034#define ENABLE_STR_DEMUXER 1
1035#define CONFIG_SWF_DEMUXER 1
1036#define ENABLE_SWF_DEMUXER 1
1037#define CONFIG_THP_DEMUXER 1
1038#define ENABLE_THP_DEMUXER 1
1039#define CONFIG_TIERTEXSEQ_DEMUXER 1
1040#define ENABLE_TIERTEXSEQ_DEMUXER 1
1041#define CONFIG_TTA_DEMUXER 1
1042#define ENABLE_TTA_DEMUXER 1
1043#define CONFIG_TXD_DEMUXER 1
1044#define ENABLE_TXD_DEMUXER 1
1045#define ENABLE_V4L2_DEMUXER 0
1046#define CONFIG_VC1_DEMUXER 1
1047#define ENABLE_VC1_DEMUXER 1
1048#define ENABLE_VIDEO_GRAB_BKTR_DEMUXER 0
1049#define ENABLE_VIDEO_GRAB_V4L_DEMUXER 0
1050#define CONFIG_VMD_DEMUXER 1
1051#define ENABLE_VMD_DEMUXER 1
1052#define CONFIG_VOC_DEMUXER 1
1053#define ENABLE_VOC_DEMUXER 1
1054#define CONFIG_WAV_DEMUXER 1
1055#define ENABLE_WAV_DEMUXER 1
1056#define CONFIG_WC3_DEMUXER 1
1057#define ENABLE_WC3_DEMUXER 1
1058#define CONFIG_WSAUD_DEMUXER 1
1059#define ENABLE_WSAUD_DEMUXER 1
1060#define CONFIG_WSVQA_DEMUXER 1
1061#define ENABLE_WSVQA_DEMUXER 1
1062#define CONFIG_WV_DEMUXER 1
1063#define ENABLE_WV_DEMUXER 1
1064#define ENABLE_X11_GRAB_DEVICE_DEMUXER 0
1065#define CONFIG_YUV4MPEGPIPE_DEMUXER 1
1066#define ENABLE_YUV4MPEGPIPE_DEMUXER 1
1067#define CONFIG_AC3_MUXER 1
1068#define ENABLE_AC3_MUXER 1
1069#define CONFIG_ADTS_MUXER 1
1070#define ENABLE_ADTS_MUXER 1
1071#define CONFIG_AIFF_MUXER 1
1072#define ENABLE_AIFF_MUXER 1
1073#define CONFIG_AMR_MUXER 1
1074#define ENABLE_AMR_MUXER 1
1075#define CONFIG_ASF_MUXER 1
1076#define ENABLE_ASF_MUXER 1
1077#define CONFIG_ASF_STREAM_MUXER 1
1078#define ENABLE_ASF_STREAM_MUXER 1
1079#define CONFIG_AU_MUXER 1
1080#define ENABLE_AU_MUXER 1
1081#define ENABLE_AUDIO_MUXER 0
1082#define CONFIG_AVI_MUXER 1
1083#define ENABLE_AVI_MUXER 1
1084#define CONFIG_CRC_MUXER 1
1085#define ENABLE_CRC_MUXER 1
1086#define CONFIG_DV_MUXER 1
1087#define ENABLE_DV_MUXER 1
1088#define CONFIG_FFM_MUXER 1
1089#define ENABLE_FFM_MUXER 1
1090#define CONFIG_FLAC_MUXER 1
1091#define ENABLE_FLAC_MUXER 1
1092#define CONFIG_FLV_MUXER 1
1093#define ENABLE_FLV_MUXER 1
1094#define CONFIG_FRAMECRC_MUXER 1
1095#define ENABLE_FRAMECRC_MUXER 1
1096#define CONFIG_GIF_MUXER 1
1097#define ENABLE_GIF_MUXER 1
1098#define CONFIG_GXF_MUXER 1
1099#define ENABLE_GXF_MUXER 1
1100#define CONFIG_H261_MUXER 1
1101#define ENABLE_H261_MUXER 1
1102#define CONFIG_H263_MUXER 1
1103#define ENABLE_H263_MUXER 1
1104#define CONFIG_H264_MUXER 1
1105#define ENABLE_H264_MUXER 1
1106#define CONFIG_IMAGE2_MUXER 1
1107#define ENABLE_IMAGE2_MUXER 1
1108#define CONFIG_IMAGE2PIPE_MUXER 1
1109#define ENABLE_IMAGE2PIPE_MUXER 1
1110#define ENABLE_LIBNUT_MUXER 0
1111#define CONFIG_M4V_MUXER 1
1112#define ENABLE_M4V_MUXER 1
1113#define CONFIG_MJPEG_MUXER 1
1114#define ENABLE_MJPEG_MUXER 1
1115#define CONFIG_MMF_MUXER 1
1116#define ENABLE_MMF_MUXER 1
1117#define CONFIG_MOV_MUXER 1
1118#define ENABLE_MOV_MUXER 1
1119#define CONFIG_MP2_MUXER 1
1120#define ENABLE_MP2_MUXER 1
1121#define CONFIG_MP3_MUXER 1
1122#define ENABLE_MP3_MUXER 1
1123#define CONFIG_MP4_MUXER 1
1124#define ENABLE_MP4_MUXER 1
1125#define CONFIG_MPEG1SYSTEM_MUXER 1
1126#define ENABLE_MPEG1SYSTEM_MUXER 1
1127#define CONFIG_MPEG1VCD_MUXER 1
1128#define ENABLE_MPEG1VCD_MUXER 1
1129#define CONFIG_MPEG1VIDEO_MUXER 1
1130#define ENABLE_MPEG1VIDEO_MUXER 1
1131#define CONFIG_MPEG2DVD_MUXER 1
1132#define ENABLE_MPEG2DVD_MUXER 1
1133#define CONFIG_MPEG2SVCD_MUXER 1
1134#define ENABLE_MPEG2SVCD_MUXER 1
1135#define CONFIG_MPEG2VIDEO_MUXER 1
1136#define ENABLE_MPEG2VIDEO_MUXER 1
1137#define CONFIG_MPEG2VOB_MUXER 1
1138#define ENABLE_MPEG2VOB_MUXER 1
1139#define CONFIG_MPEGTS_MUXER 1
1140#define ENABLE_MPEGTS_MUXER 1
1141#define CONFIG_MPJPEG_MUXER 1
1142#define ENABLE_MPJPEG_MUXER 1
1143#define CONFIG_NULL_MUXER 1
1144#define ENABLE_NULL_MUXER 1
1145#define ENABLE_OGG_MUXER 0
1146#define CONFIG_PCM_ALAW_MUXER 1
1147#define ENABLE_PCM_ALAW_MUXER 1
1148#define CONFIG_PCM_MULAW_MUXER 1
1149#define ENABLE_PCM_MULAW_MUXER 1
1150#define CONFIG_PCM_S16BE_MUXER 1
1151#define ENABLE_PCM_S16BE_MUXER 1
1152#define CONFIG_PCM_S16LE_MUXER 1
1153#define ENABLE_PCM_S16LE_MUXER 1
1154#define CONFIG_PCM_S8_MUXER 1
1155#define ENABLE_PCM_S8_MUXER 1
1156#define CONFIG_PCM_U16BE_MUXER 1
1157#define ENABLE_PCM_U16BE_MUXER 1
1158#define CONFIG_PCM_U16LE_MUXER 1
1159#define ENABLE_PCM_U16LE_MUXER 1
1160#define CONFIG_PCM_U8_MUXER 1
1161#define ENABLE_PCM_U8_MUXER 1
1162#define CONFIG_PSP_MUXER 1
1163#define ENABLE_PSP_MUXER 1
1164#define CONFIG_RAWVIDEO_MUXER 1
1165#define ENABLE_RAWVIDEO_MUXER 1
1166#define CONFIG_RM_MUXER 1
1167#define ENABLE_RM_MUXER 1
1168#define CONFIG_ROQ_MUXER 1
1169#define ENABLE_ROQ_MUXER 1
1170#define ENABLE_RTP_MUXER 0
1171#define CONFIG_SWF_MUXER 1
1172#define ENABLE_SWF_MUXER 1
1173#define CONFIG_TG2_MUXER 1
1174#define ENABLE_TG2_MUXER 1
1175#define CONFIG_TGP_MUXER 1
1176#define ENABLE_TGP_MUXER 1
1177#define CONFIG_VOC_MUXER 1
1178#define ENABLE_VOC_MUXER 1
1179#define CONFIG_WAV_MUXER 1
1180#define ENABLE_WAV_MUXER 1
1181#define CONFIG_YUV4MPEGPIPE_MUXER 1
1182#define ENABLE_YUV4MPEGPIPE_MUXER 1
1183#define ENABLE_FILE_PROTOCOL 0
1184#define ENABLE_HTTP_PROTOCOL 0
1185#define ENABLE_PIPE_PROTOCOL 0
1186#define ENABLE_RTP_PROTOCOL 0
1187#define ENABLE_TCP_PROTOCOL 0
1188#define ENABLE_UDP_PROTOCOL 0
1189#define CONFIG_DUMP_EXTRADATA_BSF 1
1190#define ENABLE_DUMP_EXTRADATA_BSF 1
1191#define CONFIG_REMOVE_EXTRADATA_BSF 1
1192#define ENABLE_REMOVE_EXTRADATA_BSF 1
1193#define CONFIG_NOISE_BSF 1
1194#define ENABLE_NOISE_BSF 1
1195#define CONFIG_MP3_HEADER_COMPRESS_BSF 1
1196#define ENABLE_MP3_HEADER_COMPRESS_BSF 1
1197#define CONFIG_MP3_HEADER_DECOMPRESS_BSF 1
1198#define ENABLE_MP3_HEADER_DECOMPRESS_BSF 1
1199#define CONFIG_MJPEGA_DUMP_HEADER_BSF 1
1200#define ENABLE_MJPEGA_DUMP_HEADER_BSF 1
1201#define CONFIG_IMX_DUMP_HEADER_BSF 1
1202#define ENABLE_IMX_DUMP_HEADER_BSF 1
1203
1204
1205#undef CONFIG_XVID
1206#define CONFIG_LIBMP3LAME 1
1207#undef CONFIG_X264
1208
1209/* Use codec libs included in mplayer CVS / source dist: */
1210#define USE_MP3LIB 1
1211#define USE_LIBA52 1
1212#define USE_LIBMPEG2 1
1213
1214/* XAnim DLL support */
1215#define USE_XANIM 1
1216/* Default search path */
1217#define XACODEC_PATH "/usr/lib/win32"
1218
1219/* RealPlayer DLL support */
1220#define USE_REALCODECS 1
1221/* Default search path */
1222#define REALCODEC_PATH "/opt/RealPlayer8/Codecs"
1223
1224/* LIVE555 Streaming Media library support */
1225#undef STREAMING_LIVE555
1226
1227/* Use 3dnow/mmxext/sse/mmx optimized fast memcpy() [maybe buggy... signal 4]*/
1228#define USE_FASTMEMCPY 1
1229
1230/* Use unrarlib for Vobsubs */
1231#define USE_UNRARLIB 1
1232
1233/* gui support, please do not edit this option */
1234#define HAVE_NEW_GUI 1
1235#define HAVE_GTK2_GUI 1
1236
1237/* Audio output drivers */
1238#define USE_OSS_AUDIO 1
1239#define PATH_DEV_DSP "/dev/dsp"
1240#define PATH_DEV_MIXER "/dev/mixer"
1241#undef HAVE_ALSA5
1242#undef HAVE_ALSA9
1243#define HAVE_ALSA1X 1
1244
1245#undef USE_ESD
1246#undef HAVE_ESD_LATENCY
1247#undef USE_POLYP
1248
1249
1250
1251#undef HAVE_SYS_ASOUNDLIB_H
1252#define HAVE_ALSA_ASOUNDLIB_H 1
1253#undef USE_SUN_AUDIO
1254
1255
1256#define HAVE_NAS 1
1257
1258/* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
1259#undef FAST_OSD
1260#undef FAST_OSD_TABLE
1261
1262/* Enable TV Interface support */
1263#define USE_TV 1
1264
1265/* Enable Video 4 Linux TV interface support */
1266#define HAVE_TV_V4L 1
1267
1268/* Enable Video 4 Linux 1 TV interface support */
1269#define HAVE_TV_V4L1 1
1270
1271/* Enable Video 4 Linux 2 TV interface support */
1272#define HAVE_TV_V4L2 1
1273
1274/* *BSD BrookTree headers */
1275
1276
1277
1278/* Enable *BSD BrookTree TV interface support */
1279
1280
1281/* Enable Radio Interface support */
1282#undef USE_RADIO
1283
1284/* Enable Capture for Radio Interface support */
1285#undef USE_RADIO_CAPTURE
1286
1287/* Enable Video 4 Linux Radio interface support */
1288#undef HAVE_RADIO_V4L
1289
1290/* Enable Video 4 Linux 2 Radio interface support */
1291#undef HAVE_RADIO_V4L2
1292
1293/* Enable *BSD BrookTree Radio interface support */
1294#undef HAVE_RADIO_BSDBT848
1295
1296/* Enable Video 4 Linux 2 MPEG PVR support */
1297#define HAVE_PVR 1
1298
1299/* Define if your processor stores words with the most significant
1300 byte first (like Motorola and SPARC, unlike Intel and VAX). */
1301#undef WORDS_BIGENDIAN
1302
1303/* Define if your processor can access unaligned data in a fast way */
1304#define HAVE_FAST_UNALIGNED 1
1305
1306#define ARCH_X86 1
1307#define ENABLE_X86 1
1308#define ARCH_X86_32 1
1309#define ENABLE_X86_32 1
1310#define ENABLE_X86_64 0
1311#define ENABLE_IA64 0
1312#define ENABLE_SPARC 0
1313#define ENABLE_ARM 0
1314#define ENABLE_ARMV4L 0
1315#define ENABLE_POWERPC 0
1316#define ENABLE_PPC 0
1317#define ENABLE_ALPHA 0
1318#define ENABLE_SGI_MIPS 0
1319#define ENABLE_PA_RISC 0
1320#define ENABLE_S390 0
1321#define ENABLE_S390X 0
1322#define ENABLE_VAX 0
1323#define ENABLE_GENERIC 0
1324
1325/* For the PPC. G5 has the dcbzl when in 64bit mode but G4s and earlier do not
1326 have the instruction. */
1327
1328
1329/* only gcc3 can compile mvi instructions */
1330
1331
1332/* Define this for Cygwin build for win32 */
1333
1334
1335/* Define this to any prefered value from 386 up to infinity with step 100 */
1336#define __CPU__ 686
1337
1338#define MP_WORDSIZE 32
1339
1340#define TARGET_LINUX 1
1341
1342#define HAVE_VCD 1
1343
1344#ifdef sun
1345#define DEFAULT_CDROM_DEVICE "/vol/dev/aliases/cdrom0"
1346#define DEFAULT_DVD_DEVICE DEFAULT_CDROM_DEVICE
1347#elif defined(HPUX)
1348#define DEFAULT_CDROM_DEVICE "/dev/cdrom"
1349#define DEFAULT_DVD_DEVICE "/dev/dvd"
1350#elif defined(WIN32)
1351#define DEFAULT_CDROM_DEVICE "D:"
1352#define DEFAULT_DVD_DEVICE "D:"
1353#elif defined(SYS_DARWIN)
1354#define DEFAULT_CDROM_DEVICE "/dev/disk1"
1355#define DEFAULT_DVD_DEVICE "/dev/rdiskN"
1356#elif defined(__OpenBSD__)
1357#define DEFAULT_CDROM_DEVICE "/dev/rcd0a"
1358#define DEFAULT_DVD_DEVICE DEFAULT_CDROM_DEVICE
1359#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
1360#define DEFAULT_CDROM_DEVICE "/dev/acd0"
1361#define DEFAULT_DVD_DEVICE DEFAULT_CDROM_DEVICE
1362#elif defined(SYS_AMIGAOS4)
1363#define DEFAULT_CDROM_DEVICE "a1ide.device:2"
1364#define DEFAULT_DVD_DEVICE DEFAULT_CDROM_DEVICE
1365#else
1366#define DEFAULT_CDROM_DEVICE "/dev/cdrom"
1367#define DEFAULT_DVD_DEVICE "/dev/dvd"
1368#endif
1369
1370
1371/*----------------------------------------------------------------------------
1372**
1373** NOTE: Instead of modifying these definitions here, use the
1374** --enable/--disable options of the ./configure script!
1375** See ./configure --help for details.
1376**
1377*---------------------------------------------------------------------------*/
1378
1379/* C99 lrintf function available */
1380#define HAVE_LRINTF 1
1381
1382/* round function is available */
1383#define HAVE_ROUND 1
1384
1385/* yes, we have inttypes.h */
1386#define HAVE_INTTYPES_H 1
1387
1388/* int_fastXY_t emulation */
1389
1390
1391/* nanosleep support */
1392#define HAVE_NANOSLEEP 1
1393
1394/* SMB support */
1395#define LIBSMBCLIENT
1396
1397/* termcap flag for getch2.c */
1398#define USE_TERMCAP 1
1399
1400/* termios flag for getch2.c */
1401#define HAVE_TERMIOS 1
1402#undef HAVE_TERMIOS_H
1403#define HAVE_SYS_TERMIOS_H 1
1404
1405/* enable PNG support */
1406#define HAVE_PNG 1
1407
1408/* enable JPEG support */
1409#define HAVE_JPEG 1
1410
1411/* enable PNM support */
1412#define HAVE_PNM
1413
1414/* enable md5sum support */
1415#define HAVE_MD5SUM
1416
1417/* enable GIF support */
1418#define HAVE_GIF 1
1419#define HAVE_GIF_4 1
1420#undef HAVE_GIF_TVT_HACK
1421
1422/* enable bitmap font support */
1423#define HAVE_BITMAP_FONT 1
1424
1425/* enable FreeType support */
1426#define HAVE_FREETYPE
1427
1428/* enable Fontconfig support */
1429#define HAVE_FONTCONFIG
1430
1431/* enable SSA/ASS support */
1432#define USE_ASS
1433
1434/* enable FriBiDi usage */
1435#define USE_FRIBIDI
1436
1437/* enable ENCA usage */
1438#undef HAVE_ENCA
1439
1440/* liblzo support */
1441#define USE_LIBLZO 1
1442#ifdef USE_LIBLZO
1443#define CONFIG_LZO 1
1444#endif
1445
1446/* libmad support */
1447#define USE_LIBMAD 1
1448
1449/* enable OggVorbis support */
1450#define HAVE_OGGVORBIS 1
1451#define TREMOR 1
1452
1453/* enable Speex support */
1454#undef HAVE_SPEEX
1455
1456/* enable musepack support */
1457#undef HAVE_MUSEPACK
1458
1459/* enable OggTheora support */
1460#define HAVE_OGGTHEORA 1
1461
1462/* enable FAAD (AAC) support */
1463#define HAVE_FAAD 1
1464#define USE_FAAD_INTERNAL 1
1465
1466/* enable FAAC (AAC encoder) support */
1467#undef HAVE_FAAC
1468
1469/* enable LADSPA plugin support */
1470#undef HAVE_LADSPA
1471
1472/* enable network */
1473#define MPLAYER_NETWORK 1
1474
1475/* enable ftp support */
1476#define HAVE_FTP 1
1477
1478/* enable vstream support */
1479#undef HAVE_VSTREAM
1480
1481/* enable winsock2 instead of Unix functions*/
1482#undef HAVE_WINSOCK2
1483
1484/* define this to use inet_aton() instead of inet_pton() */
1485#undef USE_ATON
1486
1487/* enables / disables cdparanoia support */
1488#define HAVE_CDDA
1489#define HAVE_CDDB
1490
1491/* enables / disables VIDIX usage */
1492#undef CONFIG_VIDIX
1493#undef CONFIG_VIDIX_DRV_CYBERBLADE
1494#undef CONFIG_VIDIX_DRV_IVTV
1495#undef CONFIG_VIDIX_DRV_MACH64
1496#undef CONFIG_VIDIX_DRV_MGA
1497#undef CONFIG_VIDIX_DRV_MGA_CRTC2
1498#undef CONFIG_VIDIX_DRV_NVIDIA
1499#undef CONFIG_VIDIX_DRV_PM3
1500#undef CONFIG_VIDIX_DRV_RADEON
1501#undef CONFIG_VIDIX_DRV_RAGE128
1502#undef CONFIG_VIDIX_DRV_SAVAGE
1503#undef CONFIG_VIDIX_DRV_SIS
1504#undef CONFIG_VIDIX_DRV_UNICHROME
1505
1506
1507/* enables / disables new input joystick support */
1508#undef HAVE_JOYSTICK
1509
1510/* enables / disables QTX codecs */
1511#define USE_QTX_CODECS 1
1512
1513/* enables / disables osd menu */
1514#undef HAVE_MENU
1515
1516/* enables / disables subtitles sorting */
1517#define USE_SORTSUB 1
1518
1519/* XMMS input plugin support */
1520#undef HAVE_XMMS
1521#define XMMS_INPUT_PLUGIN_DIR ""
1522
1523/* enables inet6 support */
1524#define HAVE_AF_INET6 1
1525
1526/* do we have gethostbyname2? */
1527#define HAVE_GETHOSTBYNAME2 1
1528
1529/* Extension defines */
1530#define ENABLE_ALTIVEC 0
1531#define HAVE_MMX 1
1532#define ENABLE_MMX 1
1533#define HAVE_MMX2 1
1534#define ENABLE_MMX2 1
1535#define ENABLE_3DNOW 0
1536#define ENABLE_3DNOWEX 0
1537#define HAVE_SSE 1
1538#define ENABLE_SSE 1
1539#define HAVE_SSE2 1
1540#define ENABLE_SSE2 1
1541#define ENABLE_SSSE3 0
1542#define ENABLE_FAST_CMOV 0
1543#define HAVE_CMOV 1
1544#define ENABLE_CMOV 1
1545#define ENABLE_ARMV5TE 0
1546#define ENABLE_ARMV6 0
1547#define ENABLE_IWMMXT 0
1548#define ENABLE_MLIB 0
1549#define ENABLE_MMI 0
1550#define ENABLE_SH4 0
1551#define ENABLE_BFIN 0
1552
1553 // enables usage of altivec.h
1554
1555 // only define if you have VIS ( ultrasparc )
1556
1557/* libmpeg2 uses a different feature test macro for mediaLib */
1558#ifdef HAVE_MLIB
1559#define LIBMPEG2_MLIB 1
1560#endif
1561
1562/* libvo options */
1563#define SCREEN_SIZE_X 1
1564#define SCREEN_SIZE_Y 1
1565#define HAVE_X11 1
1566#define HAVE_XV 1
1567#undef HAVE_XVMC
1568#define HAVE_XF86VM 1
1569#define HAVE_XF86XK 1
1570#undef HAVE_XINERAMA
1571#define HAVE_GL 1
1572
1573#define HAVE_DGA 1
1574#define HAVE_DGA2 1
1575#undef HAVE_SDL
1576/* defined for SDLlib with keyrepeat bugs (before 1.2.1) */
1577
1578
1579#undef HAVE_GGI
1580#undef HAVE_GGIWMH
1581#undef HAVE_3DFX
1582#undef HAVE_S3FB
1583#undef HAVE_TDFXFB
1584#undef HAVE_TDFX_VID
1585#undef HAVE_DIRECTFB
1586
1587
1588#undef HAVE_ZR
1589#undef HAVE_BL
1590#undef HAVE_MGA
1591#undef HAVE_XMGA
1592
1593#undef HAVE_FBDEV
1594#undef HAVE_DXR2
1595#undef HAVE_DXR3
1596#undef HAVE_IVTV
1597#define HAVE_DVB_HEAD 1
1598#define HAS_DVBIN_SUPPORT 1
1599#undef HAVE_SVGALIB
1600#undef HAVE_VESA
1601#define HAVE_XDPMS 1
1602#undef HAVE_AA
1603#undef HAVE_CACA
1604#define HAVE_TGA 1
1605#undef HAVE_TOOLAME
1606#undef HAVE_TWOLAME
1607
1608/* used by GUI: */
1609#define HAVE_XSHAPE 1
1610
1611#if defined(HAVE_GL) || defined(HAVE_X11) || defined(HAVE_XV)
1612#define X11_FULLSCREEN 1
1613#endif
1614
1615#endif /* MPLAYER_CONFIG_H */