Ticket #816: config.h

File config.h, 42.7 KB (added by ib84@…, 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 ""
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"
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#undef DVD_STRUCT_IN_LINUX_CDROM_H
79#undef DVD_STRUCT_IN_SYS_CDIO_H
80#undef DVD_STRUCT_IN_SYS_DVDIO_H
81
82
83
84
85#define DARWIN_DVD_IOCTL
86
87
88#define HAVE_STDDEF_H 1
89
90/* Common data directory (for fonts, etc) */
91#define MPLAYER_DATADIR "/usr/local/share/mplayer"
92#define MPLAYER_CONFDIR "/usr/local/etc/mplayer"
93#define MPLAYER_LIBDIR "/usr/local/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#define HAVE_X264 1
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#undef HAVE_RTC
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#undef HAVE_SYS_SOUNDCARD_H
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#undef HAVE_SYS_SYSINFO_H
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#undef HAVE_MALLOC_H
174
175/* memalign is mapped to malloc if unsupported */
176#undef HAVE_MEMALIGN
177#define memalign(a,b) malloc(b)
178
179
180/* assembler handling of .align */
181#define ASMALIGN(ZEROBITS) ".align " #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#define HAVE_STRLCPY 1
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#define HAVE_STRLCAT 1
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 HAVE_LOCALTIME_R 1
233
234/* Define this if your system has vsscanf */
235#define HAVE_VSSCANF 1
236
237/* Define this if your system has swab */
238#define HAVE_SWAB 1
239
240/* Define this if your system has posix select */
241#define HAVE_POSIX_SELECT 1
242
243/* Define this if your system has gettimeofday */
244#define HAVE_GETTIMEOFDAY 1
245
246/* Define this if your system has glob */
247#define HAVE_GLOB 1
248
249/* Define this if your system has setenv */
250#define HAVE_SETENV 1
251#ifndef HAVE_SETENV
252int setenv(const char *name, const char *val, int overwrite);
253#endif
254
255/* Define this if your system has sysi86 */
256
257
258
259/* Define this if your system has pthreads */
260#define HAVE_PTHREADS 1
261
262/* Define this if you enabled thread support for libavcodec */
263#define HAVE_THREADS 1
264
265/* LIRC (remote control, see www.lirc.org) support: */
266#undef HAVE_LIRC
267
268/* Support for maemo (http://www.maemo.org) */
269
270
271/*
272 * LIRCCD (LIRC client daemon)
273 * See http://www.dolda2000.cjb.net/~fredrik/lirccd/
274 */
275#undef HAVE_LIRCC
276
277/* DVD navigation support using libdvdnav */
278#undef USE_DVDNAV
279
280
281/* Define this to enable MPEG 1/2 image postprocessing (requires a FAST CPU!) */
282#define MPEG12_POSTPROC 1
283
284/* Define this to enable image postprocessing in libavcodec (requires a FAST CPU!) */
285#define USE_LIBPOSTPROC 1
286#define USE_LIBPOSTPROC_A 1
287#undef USE_LIBPOSTPROC_SO
288
289/* Win32 DLL support */
290#undef USE_WIN32DLL
291#define WIN32_PATH ""
292
293/* Mac OS X specific features */
294#define MACOSX 1
295#undef MACOSX_FINDER_SUPPORT
296#undef MACOSX_BUNDLE
297#define MACOSX_COREVIDEO 1
298
299/* Build our Win32-loader */
300#undef WIN32_LOADER
301
302/* ffmpeg's libavcodec support (requires libavcodec source) */
303#define USE_LIBAVCODEC 1
304#define USE_LIBAVCODEC_A 1
305#undef USE_LIBAVCODEC_SO
306#define CONFIG_MPEGAUDIO_HP 1
307
308/* ffmpeg's libavformat support (requires libavformat source) */
309#define USE_LIBAVFORMAT 1
310#define USE_LIBAVFORMAT_A 1
311#undef USE_LIBAVFORMAT_SO
312
313#define USE_LIBAVUTIL 1
314#define USE_LIBAVUTIL_A 1
315#undef USE_LIBAVUTIL_SO
316
317/* Use libavcodec's decoders */
318#define CONFIG_DECODERS 1
319/* Use libavcodec's encoders */
320#define CONFIG_ENCODERS 1
321
322/* Use libavformat's demuxers */
323#define CONFIG_DEMUXERS 1
324/* Use libavformat's muxers */
325#define CONFIG_MUXERS 1
326
327/* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
328#define HAVE_EBX_AVAILABLE 1
329#define HAVE_EBP_AVAILABLE 1
330
331#define CONFIG_GPL 1
332
333/* Use AMR codecs from libavcodec. */
334
335#undef CONFIG_AMR_NB
336#undef CONFIG_AMR_WB
337
338/* Use specific parts from FFmpeg. */
339#define CONFIG_AASC_DECODER 1
340#define ENABLE_AASC_DECODER 1
341#define CONFIG_ASV1_DECODER 1
342#define ENABLE_ASV1_DECODER 1
343#define CONFIG_ASV2_DECODER 1
344#define ENABLE_ASV2_DECODER 1
345#define CONFIG_AVS_DECODER 1
346#define ENABLE_AVS_DECODER 1
347#define CONFIG_BETHSOFTVID_DECODER 1
348#define ENABLE_BETHSOFTVID_DECODER 1
349#define CONFIG_BMP_DECODER 1
350#define ENABLE_BMP_DECODER 1
351#define CONFIG_C93_DECODER 1
352#define ENABLE_C93_DECODER 1
353#define CONFIG_CAVS_DECODER 1
354#define ENABLE_CAVS_DECODER 1
355#define CONFIG_CINEPAK_DECODER 1
356#define ENABLE_CINEPAK_DECODER 1
357#define CONFIG_CLJR_DECODER 1
358#define ENABLE_CLJR_DECODER 1
359#define CONFIG_CSCD_DECODER 1
360#define ENABLE_CSCD_DECODER 1
361#define CONFIG_CYUV_DECODER 1
362#define ENABLE_CYUV_DECODER 1
363#define CONFIG_DCA_DECODER 1
364#define ENABLE_DCA_DECODER 1
365#define CONFIG_DNXHD_DECODER 1
366#define ENABLE_DNXHD_DECODER 1
367#define CONFIG_DSICINVIDEO_DECODER 1
368#define ENABLE_DSICINVIDEO_DECODER 1
369#define CONFIG_DVVIDEO_DECODER 1
370#define ENABLE_DVVIDEO_DECODER 1
371#define CONFIG_DXA_DECODER 1
372#define ENABLE_DXA_DECODER 1
373#define CONFIG_EIGHTBPS_DECODER 1
374#define ENABLE_EIGHTBPS_DECODER 1
375#define CONFIG_FFV1_DECODER 1
376#define ENABLE_FFV1_DECODER 1
377#define CONFIG_FFVHUFF_DECODER 1
378#define ENABLE_FFVHUFF_DECODER 1
379#define CONFIG_FLASHSV_DECODER 1
380#define ENABLE_FLASHSV_DECODER 1
381#define CONFIG_FLIC_DECODER 1
382#define ENABLE_FLIC_DECODER 1
383#define CONFIG_FLV_DECODER 1
384#define ENABLE_FLV_DECODER 1
385#define CONFIG_FOURXM_DECODER 1
386#define ENABLE_FOURXM_DECODER 1
387#define CONFIG_FRAPS_DECODER 1
388#define ENABLE_FRAPS_DECODER 1
389#define CONFIG_GIF_DECODER 1
390#define ENABLE_GIF_DECODER 1
391#define CONFIG_H261_DECODER 1
392#define ENABLE_H261_DECODER 1
393#define CONFIG_H263_DECODER 1
394#define ENABLE_H263_DECODER 1
395#define CONFIG_H263I_DECODER 1
396#define ENABLE_H263I_DECODER 1
397#define CONFIG_H264_DECODER 1
398#define ENABLE_H264_DECODER 1
399#define CONFIG_HUFFYUV_DECODER 1
400#define ENABLE_HUFFYUV_DECODER 1
401#define CONFIG_IDCIN_DECODER 1
402#define ENABLE_IDCIN_DECODER 1
403#define CONFIG_INDEO2_DECODER 1
404#define ENABLE_INDEO2_DECODER 1
405#define CONFIG_INDEO3_DECODER 1
406#define ENABLE_INDEO3_DECODER 1
407#define CONFIG_INTERPLAY_VIDEO_DECODER 1
408#define ENABLE_INTERPLAY_VIDEO_DECODER 1
409#define CONFIG_KMVC_DECODER 1
410#define ENABLE_KMVC_DECODER 1
411#define CONFIG_LOCO_DECODER 1
412#define ENABLE_LOCO_DECODER 1
413#define CONFIG_MDEC_DECODER 1
414#define ENABLE_MDEC_DECODER 1
415#define CONFIG_MJPEG_DECODER 1
416#define ENABLE_MJPEG_DECODER 1
417#define CONFIG_MJPEGB_DECODER 1
418#define ENABLE_MJPEGB_DECODER 1
419#define CONFIG_MMVIDEO_DECODER 1
420#define ENABLE_MMVIDEO_DECODER 1
421#define ENABLE_MPEG_XVMC_DECODER 0
422#define CONFIG_MPEG1VIDEO_DECODER 1
423#define ENABLE_MPEG1VIDEO_DECODER 1
424#define CONFIG_MPEG2VIDEO_DECODER 1
425#define ENABLE_MPEG2VIDEO_DECODER 1
426#define CONFIG_MPEG4_DECODER 1
427#define ENABLE_MPEG4_DECODER 1
428#define CONFIG_MPEGVIDEO_DECODER 1
429#define ENABLE_MPEGVIDEO_DECODER 1
430#define CONFIG_MSMPEG4V1_DECODER 1
431#define ENABLE_MSMPEG4V1_DECODER 1
432#define CONFIG_MSMPEG4V2_DECODER 1
433#define ENABLE_MSMPEG4V2_DECODER 1
434#define CONFIG_MSMPEG4V3_DECODER 1
435#define ENABLE_MSMPEG4V3_DECODER 1
436#define CONFIG_MSRLE_DECODER 1
437#define ENABLE_MSRLE_DECODER 1
438#define CONFIG_MSVIDEO1_DECODER 1
439#define ENABLE_MSVIDEO1_DECODER 1
440#define CONFIG_MSZH_DECODER 1
441#define ENABLE_MSZH_DECODER 1
442#define CONFIG_NUV_DECODER 1
443#define ENABLE_NUV_DECODER 1
444#define CONFIG_PNG_DECODER 1
445#define ENABLE_PNG_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_ULTI_DECODER 1
493#define ENABLE_ULTI_DECODER 1
494#define CONFIG_VC1_DECODER 1
495#define ENABLE_VC1_DECODER 1
496#define CONFIG_VCR1_DECODER 1
497#define ENABLE_VCR1_DECODER 1
498#define CONFIG_VMDVIDEO_DECODER 1
499#define ENABLE_VMDVIDEO_DECODER 1
500#define CONFIG_VMNC_DECODER 1
501#define ENABLE_VMNC_DECODER 1
502#define CONFIG_VP3_DECODER 1
503#define ENABLE_VP3_DECODER 1
504#define CONFIG_VP5_DECODER 1
505#define ENABLE_VP5_DECODER 1
506#define CONFIG_VP6_DECODER 1
507#define ENABLE_VP6_DECODER 1
508#define CONFIG_VP6F_DECODER 1
509#define ENABLE_VP6F_DECODER 1
510#define CONFIG_VQA_DECODER 1
511#define ENABLE_VQA_DECODER 1
512#define CONFIG_WMV1_DECODER 1
513#define ENABLE_WMV1_DECODER 1
514#define CONFIG_WMV2_DECODER 1
515#define ENABLE_WMV2_DECODER 1
516#define CONFIG_WMV3_DECODER 1
517#define ENABLE_WMV3_DECODER 1
518#define CONFIG_WNV1_DECODER 1
519#define ENABLE_WNV1_DECODER 1
520#define CONFIG_XAN_WC3_DECODER 1
521#define ENABLE_XAN_WC3_DECODER 1
522#define CONFIG_XL_DECODER 1
523#define ENABLE_XL_DECODER 1
524#define CONFIG_ZLIB_DECODER 1
525#define ENABLE_ZLIB_DECODER 1
526#define CONFIG_ZMBV_DECODER 1
527#define ENABLE_ZMBV_DECODER 1
528#define ENABLE_AAC_DECODER 0
529#define ENABLE_MPEG4AAC_DECODER 0
530#define CONFIG_ALAC_DECODER 1
531#define ENABLE_ALAC_DECODER 1
532#define ENABLE_AMR_NB_DECODER 0
533#define ENABLE_AMR_WB_DECODER 0
534#define CONFIG_ATRAC3_DECODER 1
535#define ENABLE_ATRAC3_DECODER 1
536#define CONFIG_COOK_DECODER 1
537#define ENABLE_COOK_DECODER 1
538#define CONFIG_DSICINAUDIO_DECODER 1
539#define ENABLE_DSICINAUDIO_DECODER 1
540#define ENABLE_DTS_DECODER 0
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_LIBA52_DECODER 0
546#define ENABLE_LIBGSM_DECODER 0
547#define ENABLE_LIBGSM_MS_DECODER 0
548#define CONFIG_MACE3_DECODER 1
549#define ENABLE_MACE3_DECODER 1
550#define CONFIG_MACE6_DECODER 1
551#define ENABLE_MACE6_DECODER 1
552#define CONFIG_MP2_DECODER 1
553#define ENABLE_MP2_DECODER 1
554#define CONFIG_MP3_DECODER 1
555#define ENABLE_MP3_DECODER 1
556#define CONFIG_MP3ADU_DECODER 1
557#define ENABLE_MP3ADU_DECODER 1
558#define CONFIG_MP3ON4_DECODER 1
559#define ENABLE_MP3ON4_DECODER 1
560#define CONFIG_MPC7_DECODER 1
561#define ENABLE_MPC7_DECODER 1
562#define CONFIG_OGGVORBIS_DECODER 1
563#define ENABLE_OGGVORBIS_DECODER 1
564#define CONFIG_QDM2_DECODER 1
565#define ENABLE_QDM2_DECODER 1
566#define CONFIG_RA_144_DECODER 1
567#define ENABLE_RA_144_DECODER 1
568#define CONFIG_RA_288_DECODER 1
569#define ENABLE_RA_288_DECODER 1
570#define CONFIG_SHORTEN_DECODER 1
571#define ENABLE_SHORTEN_DECODER 1
572#define CONFIG_SMACKAUD_DECODER 1
573#define ENABLE_SMACKAUD_DECODER 1
574#define CONFIG_SONIC_DECODER 1
575#define ENABLE_SONIC_DECODER 1
576#define CONFIG_TRUESPEECH_DECODER 1
577#define ENABLE_TRUESPEECH_DECODER 1
578#define CONFIG_TTA_DECODER 1
579#define ENABLE_TTA_DECODER 1
580#define CONFIG_VMDAUDIO_DECODER 1
581#define ENABLE_VMDAUDIO_DECODER 1
582#define CONFIG_VORBIS_DECODER 1
583#define ENABLE_VORBIS_DECODER 1
584#define CONFIG_WAVPACK_DECODER 1
585#define ENABLE_WAVPACK_DECODER 1
586#define CONFIG_WMAV1_DECODER 1
587#define ENABLE_WMAV1_DECODER 1
588#define CONFIG_WMAV2_DECODER 1
589#define ENABLE_WMAV2_DECODER 1
590#define CONFIG_WS_SND1_DECODER 1
591#define ENABLE_WS_SND1_DECODER 1
592#define CONFIG_PCM_ALAW_DECODER 1
593#define ENABLE_PCM_ALAW_DECODER 1
594#define CONFIG_PCM_MULAW_DECODER 1
595#define ENABLE_PCM_MULAW_DECODER 1
596#define CONFIG_PCM_S8_DECODER 1
597#define ENABLE_PCM_S8_DECODER 1
598#define CONFIG_PCM_S16BE_DECODER 1
599#define ENABLE_PCM_S16BE_DECODER 1
600#define CONFIG_PCM_S16LE_DECODER 1
601#define ENABLE_PCM_S16LE_DECODER 1
602#define CONFIG_PCM_S24BE_DECODER 1
603#define ENABLE_PCM_S24BE_DECODER 1
604#define CONFIG_PCM_S24DAUD_DECODER 1
605#define ENABLE_PCM_S24DAUD_DECODER 1
606#define CONFIG_PCM_S24LE_DECODER 1
607#define ENABLE_PCM_S24LE_DECODER 1
608#define CONFIG_PCM_S32BE_DECODER 1
609#define ENABLE_PCM_S32BE_DECODER 1
610#define CONFIG_PCM_S32LE_DECODER 1
611#define ENABLE_PCM_S32LE_DECODER 1
612#define CONFIG_PCM_U8_DECODER 1
613#define ENABLE_PCM_U8_DECODER 1
614#define CONFIG_PCM_U16BE_DECODER 1
615#define ENABLE_PCM_U16BE_DECODER 1
616#define CONFIG_PCM_U16LE_DECODER 1
617#define ENABLE_PCM_U16LE_DECODER 1
618#define CONFIG_PCM_U24BE_DECODER 1
619#define ENABLE_PCM_U24BE_DECODER 1
620#define CONFIG_PCM_U24LE_DECODER 1
621#define ENABLE_PCM_U24LE_DECODER 1
622#define CONFIG_PCM_U32BE_DECODER 1
623#define ENABLE_PCM_U32BE_DECODER 1
624#define CONFIG_PCM_U32LE_DECODER 1
625#define ENABLE_PCM_U32LE_DECODER 1
626#define CONFIG_INTERPLAY_DPCM_DECODER 1
627#define ENABLE_INTERPLAY_DPCM_DECODER 1
628#define CONFIG_ROQ_DPCM_DECODER 1
629#define ENABLE_ROQ_DPCM_DECODER 1
630#define CONFIG_SOL_DPCM_DECODER 1
631#define ENABLE_SOL_DPCM_DECODER 1
632#define CONFIG_XAN_DPCM_DECODER 1
633#define ENABLE_XAN_DPCM_DECODER 1
634#define CONFIG_ADPCM_4XM_DECODER 1
635#define ENABLE_ADPCM_4XM_DECODER 1
636#define CONFIG_ADPCM_ADX_DECODER 1
637#define ENABLE_ADPCM_ADX_DECODER 1
638#define CONFIG_ADPCM_CT_DECODER 1
639#define ENABLE_ADPCM_CT_DECODER 1
640#define CONFIG_ADPCM_EA_DECODER 1
641#define ENABLE_ADPCM_EA_DECODER 1
642#define CONFIG_ADPCM_G726_DECODER 1
643#define ENABLE_ADPCM_G726_DECODER 1
644#define CONFIG_ADPCM_IMA_DK3_DECODER 1
645#define ENABLE_ADPCM_IMA_DK3_DECODER 1
646#define CONFIG_ADPCM_IMA_DK4_DECODER 1
647#define ENABLE_ADPCM_IMA_DK4_DECODER 1
648#define CONFIG_ADPCM_IMA_QT_DECODER 1
649#define ENABLE_ADPCM_IMA_QT_DECODER 1
650#define CONFIG_ADPCM_IMA_SMJPEG_DECODER 1
651#define ENABLE_ADPCM_IMA_SMJPEG_DECODER 1
652#define CONFIG_ADPCM_IMA_WAV_DECODER 1
653#define ENABLE_ADPCM_IMA_WAV_DECODER 1
654#define CONFIG_ADPCM_IMA_WS_DECODER 1
655#define ENABLE_ADPCM_IMA_WS_DECODER 1
656#define CONFIG_ADPCM_MS_DECODER 1
657#define ENABLE_ADPCM_MS_DECODER 1
658#define CONFIG_ADPCM_SBPRO_2_DECODER 1
659#define ENABLE_ADPCM_SBPRO_2_DECODER 1
660#define CONFIG_ADPCM_SBPRO_3_DECODER 1
661#define ENABLE_ADPCM_SBPRO_3_DECODER 1
662#define CONFIG_ADPCM_SBPRO_4_DECODER 1
663#define ENABLE_ADPCM_SBPRO_4_DECODER 1
664#define CONFIG_ADPCM_SWF_DECODER 1
665#define ENABLE_ADPCM_SWF_DECODER 1
666#define CONFIG_ADPCM_THP_DECODER 1
667#define ENABLE_ADPCM_THP_DECODER 1
668#define CONFIG_ADPCM_XA_DECODER 1
669#define ENABLE_ADPCM_XA_DECODER 1
670#define CONFIG_ADPCM_YAMAHA_DECODER 1
671#define ENABLE_ADPCM_YAMAHA_DECODER 1
672#define CONFIG_DVBSUB_DECODER 1
673#define ENABLE_DVBSUB_DECODER 1
674#define CONFIG_DVDSUB_DECODER 1
675#define ENABLE_DVDSUB_DECODER 1
676#define CONFIG_ASV1_ENCODER 1
677#define ENABLE_ASV1_ENCODER 1
678#define CONFIG_ASV2_ENCODER 1
679#define ENABLE_ASV2_ENCODER 1
680#define CONFIG_BMP_ENCODER 1
681#define ENABLE_BMP_ENCODER 1
682#define CONFIG_DVVIDEO_ENCODER 1
683#define ENABLE_DVVIDEO_ENCODER 1
684#define CONFIG_FFV1_ENCODER 1
685#define ENABLE_FFV1_ENCODER 1
686#define CONFIG_FFVHUFF_ENCODER 1
687#define ENABLE_FFVHUFF_ENCODER 1
688#define CONFIG_FLASHSV_ENCODER 1
689#define ENABLE_FLASHSV_ENCODER 1
690#define CONFIG_FLV_ENCODER 1
691#define ENABLE_FLV_ENCODER 1
692#define CONFIG_GIF_ENCODER 1
693#define ENABLE_GIF_ENCODER 1
694#define CONFIG_H261_ENCODER 1
695#define ENABLE_H261_ENCODER 1
696#define CONFIG_H263_ENCODER 1
697#define ENABLE_H263_ENCODER 1
698#define CONFIG_H263P_ENCODER 1
699#define ENABLE_H263P_ENCODER 1
700#define CONFIG_HUFFYUV_ENCODER 1
701#define ENABLE_HUFFYUV_ENCODER 1
702#define CONFIG_JPEGLS_ENCODER 1
703#define ENABLE_JPEGLS_ENCODER 1
704#define CONFIG_LJPEG_ENCODER 1
705#define ENABLE_LJPEG_ENCODER 1
706#define CONFIG_MJPEG_ENCODER 1
707#define ENABLE_MJPEG_ENCODER 1
708#define CONFIG_MPEG1VIDEO_ENCODER 1
709#define ENABLE_MPEG1VIDEO_ENCODER 1
710#define CONFIG_MPEG2VIDEO_ENCODER 1
711#define ENABLE_MPEG2VIDEO_ENCODER 1
712#define CONFIG_MPEG4_ENCODER 1
713#define ENABLE_MPEG4_ENCODER 1
714#define CONFIG_MSMPEG4V1_ENCODER 1
715#define ENABLE_MSMPEG4V1_ENCODER 1
716#define CONFIG_MSMPEG4V2_ENCODER 1
717#define ENABLE_MSMPEG4V2_ENCODER 1
718#define CONFIG_MSMPEG4V3_ENCODER 1
719#define ENABLE_MSMPEG4V3_ENCODER 1
720#define CONFIG_PAM_ENCODER 1
721#define ENABLE_PAM_ENCODER 1
722#define CONFIG_PBM_ENCODER 1
723#define ENABLE_PBM_ENCODER 1
724#define CONFIG_PGM_ENCODER 1
725#define ENABLE_PGM_ENCODER 1
726#define CONFIG_PGMYUV_ENCODER 1
727#define ENABLE_PGMYUV_ENCODER 1
728#define CONFIG_PNG_ENCODER 1
729#define ENABLE_PNG_ENCODER 1
730#define CONFIG_PPM_ENCODER 1
731#define ENABLE_PPM_ENCODER 1
732#define CONFIG_RAWVIDEO_ENCODER 1
733#define ENABLE_RAWVIDEO_ENCODER 1
734#define CONFIG_RV10_ENCODER 1
735#define ENABLE_RV10_ENCODER 1
736#define CONFIG_RV20_ENCODER 1
737#define ENABLE_RV20_ENCODER 1
738#define CONFIG_SGI_ENCODER 1
739#define ENABLE_SGI_ENCODER 1
740#define CONFIG_SNOW_ENCODER 1
741#define ENABLE_SNOW_ENCODER 1
742#define CONFIG_SVQ1_ENCODER 1
743#define ENABLE_SVQ1_ENCODER 1
744#define CONFIG_TARGA_ENCODER 1
745#define ENABLE_TARGA_ENCODER 1
746#define CONFIG_TIFF_ENCODER 1
747#define ENABLE_TIFF_ENCODER 1
748#define CONFIG_WMV1_ENCODER 1
749#define ENABLE_WMV1_ENCODER 1
750#define CONFIG_WMV2_ENCODER 1
751#define ENABLE_WMV2_ENCODER 1
752#define CONFIG_X264_ENCODER 1
753#define ENABLE_X264_ENCODER 1
754#define CONFIG_XVID_ENCODER 1
755#define ENABLE_XVID_ENCODER 1
756#define CONFIG_ZLIB_ENCODER 1
757#define ENABLE_ZLIB_ENCODER 1
758#define CONFIG_ZMBV_ENCODER 1
759#define ENABLE_ZMBV_ENCODER 1
760#define CONFIG_AC3_ENCODER 1
761#define ENABLE_AC3_ENCODER 1
762#define ENABLE_AMR_NB_ENCODER 0
763#define ENABLE_AMR_WB_ENCODER 0
764#define ENABLE_FAAC_ENCODER 0
765#define CONFIG_FLAC_ENCODER 1
766#define ENABLE_FLAC_ENCODER 1
767#define ENABLE_LIBGSM_ENCODER 0
768#define ENABLE_LIBGSM_MS_ENCODER 0
769#define ENABLE_LIBTHEORA_ENCODER 0
770#define CONFIG_MP2_ENCODER 1
771#define ENABLE_MP2_ENCODER 1
772#define CONFIG_MP3LAME_ENCODER 1
773#define ENABLE_MP3LAME_ENCODER 1
774#define CONFIG_OGGVORBIS_ENCODER 1
775#define ENABLE_OGGVORBIS_ENCODER 1
776#define CONFIG_SONIC_ENCODER 1
777#define ENABLE_SONIC_ENCODER 1
778#define CONFIG_SONIC_LS_ENCODER 1
779#define ENABLE_SONIC_LS_ENCODER 1
780#define CONFIG_VORBIS_ENCODER 1
781#define ENABLE_VORBIS_ENCODER 1
782#define CONFIG_WMAV1_ENCODER 1
783#define ENABLE_WMAV1_ENCODER 1
784#define CONFIG_WMAV2_ENCODER 1
785#define ENABLE_WMAV2_ENCODER 1
786#define CONFIG_PCM_ALAW_ENCODER 1
787#define ENABLE_PCM_ALAW_ENCODER 1
788#define CONFIG_PCM_MULAW_ENCODER 1
789#define ENABLE_PCM_MULAW_ENCODER 1
790#define CONFIG_PCM_S8_ENCODER 1
791#define ENABLE_PCM_S8_ENCODER 1
792#define CONFIG_PCM_S16BE_ENCODER 1
793#define ENABLE_PCM_S16BE_ENCODER 1
794#define CONFIG_PCM_S16LE_ENCODER 1
795#define ENABLE_PCM_S16LE_ENCODER 1
796#define CONFIG_PCM_S24BE_ENCODER 1
797#define ENABLE_PCM_S24BE_ENCODER 1
798#define CONFIG_PCM_S24DAUD_ENCODER 1
799#define ENABLE_PCM_S24DAUD_ENCODER 1
800#define CONFIG_PCM_S24LE_ENCODER 1
801#define ENABLE_PCM_S24LE_ENCODER 1
802#define CONFIG_PCM_S32BE_ENCODER 1
803#define ENABLE_PCM_S32BE_ENCODER 1
804#define CONFIG_PCM_S32LE_ENCODER 1
805#define ENABLE_PCM_S32LE_ENCODER 1
806#define CONFIG_PCM_U8_ENCODER 1
807#define ENABLE_PCM_U8_ENCODER 1
808#define CONFIG_PCM_U16BE_ENCODER 1
809#define ENABLE_PCM_U16BE_ENCODER 1
810#define CONFIG_PCM_U16LE_ENCODER 1
811#define ENABLE_PCM_U16LE_ENCODER 1
812#define CONFIG_PCM_U24BE_ENCODER 1
813#define ENABLE_PCM_U24BE_ENCODER 1
814#define CONFIG_PCM_U24LE_ENCODER 1
815#define ENABLE_PCM_U24LE_ENCODER 1
816#define CONFIG_PCM_U32BE_ENCODER 1
817#define ENABLE_PCM_U32BE_ENCODER 1
818#define CONFIG_PCM_U32LE_ENCODER 1
819#define ENABLE_PCM_U32LE_ENCODER 1
820#define CONFIG_ADPCM_4XM_ENCODER 1
821#define ENABLE_ADPCM_4XM_ENCODER 1
822#define CONFIG_ADPCM_ADX_ENCODER 1
823#define ENABLE_ADPCM_ADX_ENCODER 1
824#define CONFIG_ADPCM_CT_ENCODER 1
825#define ENABLE_ADPCM_CT_ENCODER 1
826#define CONFIG_ADPCM_EA_ENCODER 1
827#define ENABLE_ADPCM_EA_ENCODER 1
828#define CONFIG_ADPCM_G726_ENCODER 1
829#define ENABLE_ADPCM_G726_ENCODER 1
830#define CONFIG_ADPCM_IMA_DK3_ENCODER 1
831#define ENABLE_ADPCM_IMA_DK3_ENCODER 1
832#define CONFIG_ADPCM_IMA_DK4_ENCODER 1
833#define ENABLE_ADPCM_IMA_DK4_ENCODER 1
834#define CONFIG_ADPCM_IMA_QT_ENCODER 1
835#define ENABLE_ADPCM_IMA_QT_ENCODER 1
836#define CONFIG_ADPCM_IMA_SMJPEG_ENCODER 1
837#define ENABLE_ADPCM_IMA_SMJPEG_ENCODER 1
838#define CONFIG_ADPCM_IMA_WAV_ENCODER 1
839#define ENABLE_ADPCM_IMA_WAV_ENCODER 1
840#define CONFIG_ADPCM_IMA_WS_ENCODER 1
841#define ENABLE_ADPCM_IMA_WS_ENCODER 1
842#define CONFIG_ADPCM_MS_ENCODER 1
843#define ENABLE_ADPCM_MS_ENCODER 1
844#define CONFIG_ADPCM_SBPRO_2_ENCODER 1
845#define ENABLE_ADPCM_SBPRO_2_ENCODER 1
846#define CONFIG_ADPCM_SBPRO_3_ENCODER 1
847#define ENABLE_ADPCM_SBPRO_3_ENCODER 1
848#define CONFIG_ADPCM_SBPRO_4_ENCODER 1
849#define ENABLE_ADPCM_SBPRO_4_ENCODER 1
850#define CONFIG_ADPCM_SWF_ENCODER 1
851#define ENABLE_ADPCM_SWF_ENCODER 1
852#define CONFIG_ADPCM_XA_ENCODER 1
853#define ENABLE_ADPCM_XA_ENCODER 1
854#define CONFIG_ADPCM_YAMAHA_ENCODER 1
855#define ENABLE_ADPCM_YAMAHA_ENCODER 1
856#define CONFIG_DVBSUB_ENCODER 1
857#define ENABLE_DVBSUB_ENCODER 1
858#define CONFIG_DVDSUB_ENCODER 1
859#define ENABLE_DVDSUB_ENCODER 1
860#define CONFIG_AAC_PARSER 1
861#define ENABLE_AAC_PARSER 1
862#define CONFIG_AC3_PARSER 1
863#define ENABLE_AC3_PARSER 1
864#define CONFIG_CAVSVIDEO_PARSER 1
865#define ENABLE_CAVSVIDEO_PARSER 1
866#define CONFIG_DCA_PARSER 1
867#define ENABLE_DCA_PARSER 1
868#define CONFIG_DVBSUB_PARSER 1
869#define ENABLE_DVBSUB_PARSER 1
870#define CONFIG_DVDSUB_PARSER 1
871#define ENABLE_DVDSUB_PARSER 1
872#define CONFIG_H261_PARSER 1
873#define ENABLE_H261_PARSER 1
874#define CONFIG_H263_PARSER 1
875#define ENABLE_H263_PARSER 1
876#define CONFIG_H264_PARSER 1
877#define ENABLE_H264_PARSER 1
878#define CONFIG_MJPEG_PARSER 1
879#define ENABLE_MJPEG_PARSER 1
880#define CONFIG_MPEG4VIDEO_PARSER 1
881#define ENABLE_MPEG4VIDEO_PARSER 1
882#define CONFIG_MPEGAUDIO_PARSER 1
883#define ENABLE_MPEGAUDIO_PARSER 1
884#define CONFIG_MPEGVIDEO_PARSER 1
885#define ENABLE_MPEGVIDEO_PARSER 1
886#define CONFIG_PNM_PARSER 1
887#define ENABLE_PNM_PARSER 1
888#define CONFIG_VC1_PARSER 1
889#define ENABLE_VC1_PARSER 1
890#define CONFIG_AAC_DEMUXER 1
891#define ENABLE_AAC_DEMUXER 1
892#define CONFIG_AC3_DEMUXER 1
893#define ENABLE_AC3_DEMUXER 1
894#define CONFIG_AIFF_DEMUXER 1
895#define ENABLE_AIFF_DEMUXER 1
896#define CONFIG_AMR_DEMUXER 1
897#define ENABLE_AMR_DEMUXER 1
898#define CONFIG_APC_DEMUXER 1
899#define ENABLE_APC_DEMUXER 1
900#define CONFIG_ASF_DEMUXER 1
901#define ENABLE_ASF_DEMUXER 1
902#define CONFIG_AU_DEMUXER 1
903#define ENABLE_AU_DEMUXER 1
904#define ENABLE_AUDIO_DEMUXER 0
905#define CONFIG_AVI_DEMUXER 1
906#define ENABLE_AVI_DEMUXER 1
907#define CONFIG_AVS_DEMUXER 1
908#define ENABLE_AVS_DEMUXER 1
909#define CONFIG_BETHSOFTVID_DEMUXER 1
910#define ENABLE_BETHSOFTVID_DEMUXER 1
911#define CONFIG_C93_DEMUXER 1
912#define ENABLE_C93_DEMUXER 1
913#define CONFIG_DAUD_DEMUXER 1
914#define ENABLE_DAUD_DEMUXER 1
915#define ENABLE_DC1394_DEMUXER 0
916#define CONFIG_DSICIN_DEMUXER 1
917#define ENABLE_DSICIN_DEMUXER 1
918#define CONFIG_DTS_DEMUXER 1
919#define ENABLE_DTS_DEMUXER 1
920#define CONFIG_DV_DEMUXER 1
921#define ENABLE_DV_DEMUXER 1
922#define ENABLE_DV1394_DEMUXER 0
923#define CONFIG_DXA_DEMUXER 1
924#define ENABLE_DXA_DEMUXER 1
925#define CONFIG_EA_DEMUXER 1
926#define ENABLE_EA_DEMUXER 1
927#define CONFIG_FFM_DEMUXER 1
928#define ENABLE_FFM_DEMUXER 1
929#define CONFIG_FLAC_DEMUXER 1
930#define ENABLE_FLAC_DEMUXER 1
931#define CONFIG_FLIC_DEMUXER 1
932#define ENABLE_FLIC_DEMUXER 1
933#define CONFIG_FLV_DEMUXER 1
934#define ENABLE_FLV_DEMUXER 1
935#define CONFIG_FOURXM_DEMUXER 1
936#define ENABLE_FOURXM_DEMUXER 1
937#define CONFIG_GIF_DEMUXER 1
938#define ENABLE_GIF_DEMUXER 1
939#define CONFIG_GXF_DEMUXER 1
940#define ENABLE_GXF_DEMUXER 1
941#define CONFIG_H261_DEMUXER 1
942#define ENABLE_H261_DEMUXER 1
943#define CONFIG_H263_DEMUXER 1
944#define ENABLE_H263_DEMUXER 1
945#define CONFIG_H264_DEMUXER 1
946#define ENABLE_H264_DEMUXER 1
947#define CONFIG_IDCIN_DEMUXER 1
948#define ENABLE_IDCIN_DEMUXER 1
949#define CONFIG_IMAGE2_DEMUXER 1
950#define ENABLE_IMAGE2_DEMUXER 1
951#define CONFIG_IMAGE2PIPE_DEMUXER 1
952#define ENABLE_IMAGE2PIPE_DEMUXER 1
953#define CONFIG_INGENIENT_DEMUXER 1
954#define ENABLE_INGENIENT_DEMUXER 1
955#define CONFIG_IPMOVIE_DEMUXER 1
956#define ENABLE_IPMOVIE_DEMUXER 1
957#define ENABLE_LIBNUT_DEMUXER 0
958#define CONFIG_M4V_DEMUXER 1
959#define ENABLE_M4V_DEMUXER 1
960#define CONFIG_MATROSKA_DEMUXER 1
961#define ENABLE_MATROSKA_DEMUXER 1
962#define CONFIG_MJPEG_DEMUXER 1
963#define ENABLE_MJPEG_DEMUXER 1
964#define CONFIG_MM_DEMUXER 1
965#define ENABLE_MM_DEMUXER 1
966#define CONFIG_MMF_DEMUXER 1
967#define ENABLE_MMF_DEMUXER 1
968#define CONFIG_MOV_DEMUXER 1
969#define ENABLE_MOV_DEMUXER 1
970#define CONFIG_MP3_DEMUXER 1
971#define ENABLE_MP3_DEMUXER 1
972#define CONFIG_MPC_DEMUXER 1
973#define ENABLE_MPC_DEMUXER 1
974#define CONFIG_MPEGPS_DEMUXER 1
975#define ENABLE_MPEGPS_DEMUXER 1
976#define CONFIG_MPEGTS_DEMUXER 1
977#define ENABLE_MPEGTS_DEMUXER 1
978#define CONFIG_MPEGVIDEO_DEMUXER 1
979#define ENABLE_MPEGVIDEO_DEMUXER 1
980#define CONFIG_MTV_DEMUXER 1
981#define ENABLE_MTV_DEMUXER 1
982#define CONFIG_MXF_DEMUXER 1
983#define ENABLE_MXF_DEMUXER 1
984#define CONFIG_NSV_DEMUXER 1
985#define ENABLE_NSV_DEMUXER 1
986#define CONFIG_NUT_DEMUXER 1
987#define ENABLE_NUT_DEMUXER 1
988#define CONFIG_NUV_DEMUXER 1
989#define ENABLE_NUV_DEMUXER 1
990#define CONFIG_OGG_DEMUXER 1
991#define ENABLE_OGG_DEMUXER 1
992#define CONFIG_PCM_ALAW_DEMUXER 1
993#define ENABLE_PCM_ALAW_DEMUXER 1
994#define CONFIG_PCM_MULAW_DEMUXER 1
995#define ENABLE_PCM_MULAW_DEMUXER 1
996#define CONFIG_PCM_S16BE_DEMUXER 1
997#define ENABLE_PCM_S16BE_DEMUXER 1
998#define CONFIG_PCM_S16LE_DEMUXER 1
999#define ENABLE_PCM_S16LE_DEMUXER 1
1000#define CONFIG_PCM_S8_DEMUXER 1
1001#define ENABLE_PCM_S8_DEMUXER 1
1002#define CONFIG_PCM_U16BE_DEMUXER 1
1003#define ENABLE_PCM_U16BE_DEMUXER 1
1004#define CONFIG_PCM_U16LE_DEMUXER 1
1005#define ENABLE_PCM_U16LE_DEMUXER 1
1006#define CONFIG_PCM_U8_DEMUXER 1
1007#define ENABLE_PCM_U8_DEMUXER 1
1008#define CONFIG_RAWVIDEO_DEMUXER 1
1009#define ENABLE_RAWVIDEO_DEMUXER 1
1010#define CONFIG_RM_DEMUXER 1
1011#define ENABLE_RM_DEMUXER 1
1012#define CONFIG_ROQ_DEMUXER 1
1013#define ENABLE_ROQ_DEMUXER 1
1014#define ENABLE_REDIR_DEMUXER 0
1015#define ENABLE_RTSP_DEMUXER 0
1016#define ENABLE_SDP_DEMUXER 0
1017#define CONFIG_SEGAFILM_DEMUXER 1
1018#define ENABLE_SEGAFILM_DEMUXER 1
1019#define CONFIG_SHORTEN_DEMUXER 1
1020#define ENABLE_SHORTEN_DEMUXER 1
1021#define CONFIG_SMACKER_DEMUXER 1
1022#define ENABLE_SMACKER_DEMUXER 1
1023#define CONFIG_SOL_DEMUXER 1
1024#define ENABLE_SOL_DEMUXER 1
1025#define CONFIG_STR_DEMUXER 1
1026#define ENABLE_STR_DEMUXER 1
1027#define CONFIG_SWF_DEMUXER 1
1028#define ENABLE_SWF_DEMUXER 1
1029#define CONFIG_THP_DEMUXER 1
1030#define ENABLE_THP_DEMUXER 1
1031#define CONFIG_TIERTEXSEQ_DEMUXER 1
1032#define ENABLE_TIERTEXSEQ_DEMUXER 1
1033#define CONFIG_TTA_DEMUXER 1
1034#define ENABLE_TTA_DEMUXER 1
1035#define ENABLE_V4L2_DEMUXER 0
1036#define CONFIG_VC1_DEMUXER 1
1037#define ENABLE_VC1_DEMUXER 1
1038#define ENABLE_VIDEO_GRAB_BKTR_DEMUXER 0
1039#define ENABLE_VIDEO_GRAB_V4L_DEMUXER 0
1040#define CONFIG_VMD_DEMUXER 1
1041#define ENABLE_VMD_DEMUXER 1
1042#define CONFIG_VOC_DEMUXER 1
1043#define ENABLE_VOC_DEMUXER 1
1044#define CONFIG_WAV_DEMUXER 1
1045#define ENABLE_WAV_DEMUXER 1
1046#define CONFIG_WC3_DEMUXER 1
1047#define ENABLE_WC3_DEMUXER 1
1048#define CONFIG_WSAUD_DEMUXER 1
1049#define ENABLE_WSAUD_DEMUXER 1
1050#define CONFIG_WSVQA_DEMUXER 1
1051#define ENABLE_WSVQA_DEMUXER 1
1052#define CONFIG_WV_DEMUXER 1
1053#define ENABLE_WV_DEMUXER 1
1054#define ENABLE_X11_GRAB_DEVICE_DEMUXER 0
1055#define CONFIG_YUV4MPEGPIPE_DEMUXER 1
1056#define ENABLE_YUV4MPEGPIPE_DEMUXER 1
1057#define CONFIG_AC3_MUXER 1
1058#define ENABLE_AC3_MUXER 1
1059#define CONFIG_ADTS_MUXER 1
1060#define ENABLE_ADTS_MUXER 1
1061#define CONFIG_AIFF_MUXER 1
1062#define ENABLE_AIFF_MUXER 1
1063#define CONFIG_AMR_MUXER 1
1064#define ENABLE_AMR_MUXER 1
1065#define CONFIG_ASF_MUXER 1
1066#define ENABLE_ASF_MUXER 1
1067#define CONFIG_ASF_STREAM_MUXER 1
1068#define ENABLE_ASF_STREAM_MUXER 1
1069#define CONFIG_AU_MUXER 1
1070#define ENABLE_AU_MUXER 1
1071#define ENABLE_AUDIO_MUXER 0
1072#define CONFIG_AVI_MUXER 1
1073#define ENABLE_AVI_MUXER 1
1074#define CONFIG_CRC_MUXER 1
1075#define ENABLE_CRC_MUXER 1
1076#define CONFIG_DV_MUXER 1
1077#define ENABLE_DV_MUXER 1
1078#define CONFIG_FFM_MUXER 1
1079#define ENABLE_FFM_MUXER 1
1080#define CONFIG_FLAC_MUXER 1
1081#define ENABLE_FLAC_MUXER 1
1082#define CONFIG_FLV_MUXER 1
1083#define ENABLE_FLV_MUXER 1
1084#define CONFIG_FRAMECRC_MUXER 1
1085#define ENABLE_FRAMECRC_MUXER 1
1086#define CONFIG_GIF_MUXER 1
1087#define ENABLE_GIF_MUXER 1
1088#define CONFIG_GXF_MUXER 1
1089#define ENABLE_GXF_MUXER 1
1090#define CONFIG_H261_MUXER 1
1091#define ENABLE_H261_MUXER 1
1092#define CONFIG_H263_MUXER 1
1093#define ENABLE_H263_MUXER 1
1094#define CONFIG_H264_MUXER 1
1095#define ENABLE_H264_MUXER 1
1096#define CONFIG_IMAGE2_MUXER 1
1097#define ENABLE_IMAGE2_MUXER 1
1098#define CONFIG_IMAGE2PIPE_MUXER 1
1099#define ENABLE_IMAGE2PIPE_MUXER 1
1100#define ENABLE_LIBNUT_MUXER 0
1101#define CONFIG_M4V_MUXER 1
1102#define ENABLE_M4V_MUXER 1
1103#define CONFIG_MJPEG_MUXER 1
1104#define ENABLE_MJPEG_MUXER 1
1105#define CONFIG_MMF_MUXER 1
1106#define ENABLE_MMF_MUXER 1
1107#define CONFIG_MOV_MUXER 1
1108#define ENABLE_MOV_MUXER 1
1109#define CONFIG_MP2_MUXER 1
1110#define ENABLE_MP2_MUXER 1
1111#define CONFIG_MP3_MUXER 1
1112#define ENABLE_MP3_MUXER 1
1113#define CONFIG_MP4_MUXER 1
1114#define ENABLE_MP4_MUXER 1
1115#define CONFIG_MPEG1SYSTEM_MUXER 1
1116#define ENABLE_MPEG1SYSTEM_MUXER 1
1117#define CONFIG_MPEG1VCD_MUXER 1
1118#define ENABLE_MPEG1VCD_MUXER 1
1119#define CONFIG_MPEG1VIDEO_MUXER 1
1120#define ENABLE_MPEG1VIDEO_MUXER 1
1121#define CONFIG_MPEG2DVD_MUXER 1
1122#define ENABLE_MPEG2DVD_MUXER 1
1123#define CONFIG_MPEG2SVCD_MUXER 1
1124#define ENABLE_MPEG2SVCD_MUXER 1
1125#define CONFIG_MPEG2VIDEO_MUXER 1
1126#define ENABLE_MPEG2VIDEO_MUXER 1
1127#define CONFIG_MPEG2VOB_MUXER 1
1128#define ENABLE_MPEG2VOB_MUXER 1
1129#define CONFIG_MPEGTS_MUXER 1
1130#define ENABLE_MPEGTS_MUXER 1
1131#define CONFIG_MPJPEG_MUXER 1
1132#define ENABLE_MPJPEG_MUXER 1
1133#define CONFIG_NULL_MUXER 1
1134#define ENABLE_NULL_MUXER 1
1135#define ENABLE_OGG_MUXER 0
1136#define CONFIG_PCM_ALAW_MUXER 1
1137#define ENABLE_PCM_ALAW_MUXER 1
1138#define CONFIG_PCM_MULAW_MUXER 1
1139#define ENABLE_PCM_MULAW_MUXER 1
1140#define CONFIG_PCM_S16BE_MUXER 1
1141#define ENABLE_PCM_S16BE_MUXER 1
1142#define CONFIG_PCM_S16LE_MUXER 1
1143#define ENABLE_PCM_S16LE_MUXER 1
1144#define CONFIG_PCM_S8_MUXER 1
1145#define ENABLE_PCM_S8_MUXER 1
1146#define CONFIG_PCM_U16BE_MUXER 1
1147#define ENABLE_PCM_U16BE_MUXER 1
1148#define CONFIG_PCM_U16LE_MUXER 1
1149#define ENABLE_PCM_U16LE_MUXER 1
1150#define CONFIG_PCM_U8_MUXER 1
1151#define ENABLE_PCM_U8_MUXER 1
1152#define CONFIG_PSP_MUXER 1
1153#define ENABLE_PSP_MUXER 1
1154#define CONFIG_RAWVIDEO_MUXER 1
1155#define ENABLE_RAWVIDEO_MUXER 1
1156#define CONFIG_RM_MUXER 1
1157#define ENABLE_RM_MUXER 1
1158#define ENABLE_RTP_MUXER 0
1159#define CONFIG_SWF_MUXER 1
1160#define ENABLE_SWF_MUXER 1
1161#define CONFIG_TG2_MUXER 1
1162#define ENABLE_TG2_MUXER 1
1163#define CONFIG_TGP_MUXER 1
1164#define ENABLE_TGP_MUXER 1
1165#define CONFIG_VOC_MUXER 1
1166#define ENABLE_VOC_MUXER 1
1167#define CONFIG_WAV_MUXER 1
1168#define ENABLE_WAV_MUXER 1
1169#define CONFIG_YUV4MPEGPIPE_MUXER 1
1170#define ENABLE_YUV4MPEGPIPE_MUXER 1
1171
1172
1173#define CONFIG_XVID 1
1174#define CONFIG_LIBMP3LAME 1
1175#define CONFIG_X264 1
1176
1177/* Use codec libs included in mplayer CVS / source dist: */
1178#define USE_MP3LIB 1
1179#define USE_LIBA52 1
1180#undef CONFIG_LIBDTS
1181#define USE_LIBMPEG2 1
1182
1183/* XAnim DLL support */
1184#define USE_XANIM 1
1185/* Default search path */
1186#define XACODEC_PATH "/usr/local/lib/codecs"
1187
1188/* RealPlayer DLL support */
1189#define USE_REALCODECS 1
1190/* Default search path */
1191#define REALCODEC_PATH "/usr/local/lib/codecs"
1192
1193/* LIVE555 Streaming Media library support */
1194#undef STREAMING_LIVE555
1195
1196/* Use 3dnow/mmxext/sse/mmx optimized fast memcpy() [maybe buggy... signal 4]*/
1197#define USE_FASTMEMCPY 1
1198
1199/* Use unrarlib for Vobsubs */
1200#define USE_UNRARLIB 1
1201
1202/* gui support, please do not edit this option */
1203#undef HAVE_NEW_GUI
1204#undef HAVE_GTK2_GUI
1205
1206/* Audio output drivers */
1207#undef USE_OSS_AUDIO
1208#define PATH_DEV_DSP ""
1209#define PATH_DEV_MIXER ""
1210#undef HAVE_ALSA5
1211#undef HAVE_ALSA9
1212#undef HAVE_ALSA1X
1213#define USE_ARTS 1
1214#define USE_ESD 1
1215#define HAVE_ESD_LATENCY
1216#undef USE_POLYP
1217
1218#define USE_OPENAL 1
1219#define OPENAL_AL_H 1
1220#undef HAVE_SYS_ASOUNDLIB_H
1221#undef HAVE_ALSA_ASOUNDLIB_H
1222#undef USE_SUN_AUDIO
1223
1224
1225#undef HAVE_NAS
1226
1227/* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
1228#undef FAST_OSD
1229#undef FAST_OSD_TABLE
1230
1231/* Enable TV Interface support */
1232#define USE_TV 1
1233
1234/* Enable Video 4 Linux TV interface support */
1235#undef HAVE_TV_V4L
1236
1237/* Enable Video 4 Linux 1 TV interface support */
1238
1239
1240/* Enable Video 4 Linux 2 TV interface support */
1241#undef HAVE_TV_V4L2
1242
1243/* *BSD BrookTree headers */
1244
1245
1246
1247/* Enable *BSD BrookTree TV interface support */
1248
1249
1250/* Enable Radio Interface support */
1251#undef USE_RADIO
1252
1253/* Enable Capture for Radio Interface support */
1254#undef USE_RADIO_CAPTURE
1255
1256/* Enable Video 4 Linux Radio interface support */
1257#undef HAVE_RADIO_V4L
1258
1259/* Enable Video 4 Linux 2 Radio interface support */
1260#undef HAVE_RADIO_V4L2
1261
1262/* Enable *BSD BrookTree Radio interface support */
1263#undef HAVE_RADIO_BSDBT848
1264
1265/* Enable Video 4 Linux 2 MPEG PVR support */
1266#undef HAVE_PVR
1267
1268/* Define if your processor stores words with the most significant
1269 byte first (like Motorola and SPARC, unlike Intel and VAX). */
1270#define WORDS_BIGENDIAN 1
1271
1272#define ARCH_POWERPC 1
1273
1274
1275/* For the PPC. G5 has the dcbzl when in 64bit mode but G4s and earlier do not
1276 have the instruction. */
1277#define NO_DCBZL 1
1278
1279/* libmpeg2 wants ARCH_PPC and the rest of mplayer use ARCH_POWERPC,
1280 * define ARCH_PPC if ARCH_POWERPC is set to cope with that.
1281 */
1282#ifdef ARCH_POWERPC
1283#define ARCH_PPC 1
1284#endif
1285
1286/* the same issue as with ARCH_POWERPC but with ffmpeg/libavcodec */
1287#ifdef ARCH_ARMV4L
1288#define ARCH_ARM 1
1289#endif
1290
1291/* only gcc3 can compile mvi instructions */
1292
1293
1294/* Define this for Cygwin build for win32 */
1295
1296
1297/* Define this to any prefered value from 386 up to infinity with step 100 */
1298#define __CPU__ ppc
1299
1300#define MP_WORDSIZE 32
1301
1302#undef TARGET_LINUX
1303
1304#define HAVE_VCD 1
1305
1306#ifdef sun
1307#define DEFAULT_CDROM_DEVICE "/vol/dev/aliases/cdrom0"
1308#define DEFAULT_DVD_DEVICE DEFAULT_CDROM_DEVICE
1309#elif defined(HPUX)
1310#define DEFAULT_CDROM_DEVICE "/dev/cdrom"
1311#define DEFAULT_DVD_DEVICE "/dev/dvd"
1312#elif defined(WIN32)
1313#define DEFAULT_CDROM_DEVICE "D:"
1314#define DEFAULT_DVD_DEVICE "D:"
1315#elif defined(SYS_DARWIN)
1316#define DEFAULT_CDROM_DEVICE "/dev/disk1"
1317#define DEFAULT_DVD_DEVICE "/dev/rdiskN"
1318#elif defined(__OpenBSD__)
1319#define DEFAULT_CDROM_DEVICE "/dev/rcd0a"
1320#define DEFAULT_DVD_DEVICE DEFAULT_CDROM_DEVICE
1321#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
1322#define DEFAULT_CDROM_DEVICE "/dev/acd0"
1323#define DEFAULT_DVD_DEVICE DEFAULT_CDROM_DEVICE
1324#elif defined(SYS_AMIGAOS4)
1325#define DEFAULT_CDROM_DEVICE "a1ide.device:2"
1326#define DEFAULT_DVD_DEVICE DEFAULT_CDROM_DEVICE
1327#else
1328#define DEFAULT_CDROM_DEVICE "/dev/cdrom"
1329#define DEFAULT_DVD_DEVICE "/dev/dvd"
1330#endif
1331
1332
1333/*----------------------------------------------------------------------------
1334**
1335** NOTE: Instead of modifying these definitions here, use the
1336** --enable/--disable options of the ./configure script!
1337** See ./configure --help for details.
1338**
1339*---------------------------------------------------------------------------*/
1340
1341/* C99 lrintf function available */
1342#define HAVE_LRINTF 1
1343
1344/* round function is available */
1345#define HAVE_ROUND 1
1346
1347/* yes, we have inttypes.h */
1348#define HAVE_INTTYPES_H 1
1349
1350/* int_fastXY_t emulation */
1351
1352
1353/* nanosleep support */
1354#define HAVE_NANOSLEEP 1
1355
1356/* SMB support */
1357#undef LIBSMBCLIENT
1358
1359/* termcap flag for getch2.c */
1360#define USE_TERMCAP 1
1361
1362/* termios flag for getch2.c */
1363#define HAVE_TERMIOS 1
1364#undef HAVE_TERMIOS_H
1365#define HAVE_SYS_TERMIOS_H 1
1366
1367/* enable PNG support */
1368#undef HAVE_PNG
1369
1370/* enable JPEG support */
1371#undef HAVE_JPEG
1372
1373/* enable PNM support */
1374#define HAVE_PNM
1375
1376/* enable md5sum support */
1377#define HAVE_MD5SUM
1378
1379/* enable GIF support */
1380#undef HAVE_GIF
1381#undef HAVE_GIF_4
1382
1383
1384/* enable bitmap font support */
1385#define HAVE_BITMAP_FONT 1
1386
1387/* enable FreeType support */
1388#define HAVE_FREETYPE
1389
1390/* enable Fontconfig support */
1391#define HAVE_FONTCONFIG
1392
1393/* enable SSA/ASS support */
1394#define USE_ASS
1395
1396/* enable FriBiDi usage */
1397#undef USE_FRIBIDI
1398
1399/* enable ENCA usage */
1400#undef HAVE_ENCA
1401
1402/* liblzo support */
1403#undef USE_LIBLZO
1404#ifdef USE_LIBLZO
1405#define CONFIG_LZO 1
1406#endif
1407
1408/* libmad support */
1409#define USE_LIBMAD 1
1410
1411/* enable OggVorbis support */
1412#define HAVE_OGGVORBIS 1
1413#define TREMOR 1
1414
1415/* enable Speex support */
1416#undef HAVE_SPEEX
1417
1418/* enable musepack support */
1419#undef HAVE_MUSEPACK
1420
1421/* enable OggTheora support */
1422#undef HAVE_OGGTHEORA
1423
1424/* enable FAAD (AAC) support */
1425#define HAVE_FAAD 1
1426#define USE_FAAD_INTERNAL 1
1427
1428/* enable FAAC (AAC encoder) support */
1429#undef HAVE_FAAC
1430
1431/* enable LADSPA plugin support */
1432#undef HAVE_LADSPA
1433
1434/* enable network */
1435#define MPLAYER_NETWORK 1
1436
1437/* enable ftp support */
1438#define HAVE_FTP 1
1439
1440/* enable vstream support */
1441#undef HAVE_VSTREAM
1442
1443/* enable winsock2 instead of Unix functions*/
1444#undef HAVE_WINSOCK2
1445
1446/* define this to use inet_aton() instead of inet_pton() */
1447#undef USE_ATON
1448
1449/* enables / disables cdparanoia support */
1450#undef HAVE_CDDA
1451#undef HAVE_CDDB
1452
1453/* enables / disables VIDIX usage */
1454#undef CONFIG_VIDIX
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468/* enables / disables new input joystick support */
1469#undef HAVE_JOYSTICK
1470
1471/* enables / disables QTX codecs */
1472#define USE_QTX_CODECS 1
1473
1474/* enables / disables osd menu */
1475#undef HAVE_MENU
1476
1477/* enables / disables subtitles sorting */
1478#define USE_SORTSUB 1
1479
1480/* XMMS input plugin support */
1481#undef HAVE_XMMS
1482#define XMMS_INPUT_PLUGIN_DIR ""
1483
1484/* enables inet6 support */
1485#define HAVE_AF_INET6 1
1486
1487/* do we have gethostbyname2? */
1488#define HAVE_GETHOSTBYNAME2 1
1489
1490/* Extension defines */
1491#undef HAVE_3DNOW // only define if you have 3DNOW (AMD k6-2, AMD Athlon, iDT WinChip, etc.)
1492#undef HAVE_3DNOWEX // only define if you have 3DNOWEXT (AMD Athlon, etc.)
1493#undef HAVE_MMX // only define if you have MMX (newer x86 chips, not P54C/PPro)
1494#undef HAVE_MMX2 // only define if you have MMX2 (Athlon/PIII/4/CelII)
1495#undef HAVE_SSE // only define if you have SSE (Intel Pentium III/4 or Celeron II)
1496#undef HAVE_SSE2 // only define if you have SSE2 (Intel Pentium 4)
1497#undef HAVE_CMOV // only define if you have CMOV (i686+, without VIA C3)
1498#undef HAVE_FAST_CMOV // only define if CMOV is fast
1499#define HAVE_ALTIVEC 1 // only define if you have Altivec (G4)
1500#undef HAVE_ARMV5TE // only define if you have Enhanced DSP Extensions (ARM)
1501#undef HAVE_IWMMXT // only define if you have XScale IWMMX (ARM)
1502
1503#define HAVE_ALTIVEC_H 1 // enables usage of altivec.h
1504
1505 // Sun mediaLib, available only on solaris
1506 // only define if you have VIS ( ultrasparc )
1507
1508/* libmpeg2 uses a different feature test macro for mediaLib */
1509#ifdef HAVE_MLIB
1510#define LIBMPEG2_MLIB 1
1511#endif
1512
1513/* libvo options */
1514#define SCREEN_SIZE_X 1
1515#define SCREEN_SIZE_Y 1
1516#define HAVE_X11 1
1517#define HAVE_XV 1
1518#undef HAVE_XVMC
1519#define HAVE_XF86VM 1
1520#define HAVE_XF86XK 1
1521#define HAVE_XINERAMA 1
1522#define HAVE_GL 1
1523
1524#undef HAVE_DGA
1525#undef HAVE_DGA2
1526#define HAVE_SDL 1
1527/* defined for SDLlib with keyrepeat bugs (before 1.2.1) */
1528#undef BUGGY_SDL
1529
1530#undef HAVE_GGI
1531#undef HAVE_GGIWMH
1532#undef HAVE_3DFX
1533#undef HAVE_S3FB
1534#undef HAVE_TDFXFB
1535#undef HAVE_TDFX_VID
1536#undef HAVE_DIRECTFB
1537
1538
1539#undef HAVE_ZR
1540#undef HAVE_BL
1541#undef HAVE_MGA
1542#undef HAVE_XMGA
1543
1544#undef HAVE_FBDEV
1545#undef HAVE_DXR2
1546#undef HAVE_DXR3
1547#undef HAVE_IVTV
1548#undef HAVE_DVB
1549#undef HAS_DVBIN_SUPPORT
1550#undef HAVE_SVGALIB
1551#undef HAVE_VESA
1552#define HAVE_XDPMS 1
1553#undef HAVE_AA
1554#undef HAVE_CACA
1555#define HAVE_TGA 1
1556#undef HAVE_TOOLAME
1557#undef HAVE_TWOLAME
1558
1559/* used by GUI: */
1560
1561
1562#if defined(HAVE_GL) || defined(HAVE_X11) || defined(HAVE_XV)
1563#define X11_FULLSCREEN 1
1564#endif
1565
1566#endif /* MPLAYER_CONFIG_H */