📄 config.h
字号:
/* -------- This file has been automatically generated by configure ---------
Note: Any changes in it will be lost when you run configure again. */
/* Protect against multiple inclusion */
#ifndef MPLAYER_CONFIG_H
#define MPLAYER_CONFIG_H 1
/* use GNU internationalization */
/* name of messages charset */
#define MSG_CHARSET "UTF-8"
/* Runtime CPU detection */
#undef RUNTIME_CPUDETECT
/* Dynamic a/v plugins */
#undef DYNAMIC_PLUGINS
/* "restrict" keyword */
#define restrict
/* __builtin_expect branch prediction hint */
#define HAVE_BUILTIN_EXPECT 1
#ifdef HAVE_BUILTIN_EXPECT
#define likely(x) __builtin_expect ((x) != 0, 1)
#define unlikely(x) __builtin_expect ((x) != 0, 0)
#else
#define likely(x) (x)
#define unlikely(x) (x)
#endif
/* attribute(used) as needed by some compilers */
#if (__GNUC__ * 100 + __GNUC_MINOR__ >= 300)
# define attribute_used __attribute__((used))
#else
# define attribute_used
#endif
/* compiler support for named assembler arguments */
#define NAMED_ASM_ARGS 1
#define PREFIX "./INST/"
#define USE_OSD 1
#define USE_SUB 1
/* enable/disable SIGHANDLER */
#undef ENABLE_SIGHANDLER
/* enable/disable automatic gdb attach on crash, requires SIGHANDLER */
#undef CRASH_DEBUG
/* Toggles debugging informations */
#undef MP_DEBUG
/* Toggles colorized output */
//#define MSG_USE_COLORS 1
/* Indicates that libcdio is available for VCD and CD-DA playback */
#undef HAVE_LIBCDIO
/* Indicates that Ogle's libdvdread is available for DVD playback */
#undef USE_DVDREAD
/* Indicates that dvdread is from libmpdvdkit */
#undef USE_MPDVDKIT
/* Additional options for libmpdvdkit*/
#undef DVD_STRUCT_IN_DVD_H
#define DVD_STRUCT_IN_LINUX_CDROM_H 1
#undef DVD_STRUCT_IN_SYS_CDIO_H
#undef DVD_STRUCT_IN_SYS_DVDIO_H
#define HAVE_STDDEF_H 1
#undef HAVE_DVD
/* Common data directory (for fonts, etc) */
#define MPLAYER_DATADIR "./INST//share/mplayer"
#define MPLAYER_CONFDIR "./INST//etc/mplayer"
#define MPLAYER_LIBDIR "./INST//lib"
/* Define this to compile stream-caching support, it can be enabled via
-cache <kilobytes> */
#define USE_STREAM_CACHE 1
/* Define if you are using XviD library */
#undef HAVE_XVID3
#undef HAVE_XVID4
#undef DECORE_XVID
#undef ENCORE_XVID
/* Define if you are using the X.264 library */
#undef HAVE_X264
/* Define if you are using libnut */
#undef HAVE_LIBNUT
/* Define to include support for libdv-0.9.5 */
#undef HAVE_LIBDV095
/* If build mencoder */
#undef HAVE_MENCODER
/* Indicates if libmp3lame is available
Note: for mencoder */
/* Define this to enable avg. byte/sec-based AVI sync method by default:
(use -bps or -nobps commandline option for run-time method selection)
-bps gives better sync for vbr mp3 audio, it is now default */
#define AVI_SYNC_BPS 1
/* Undefine this if you do not want to select mono audio (left or right)
with a stereo MPEG layer 2/3 audio stream. The command line option
-stereo has three possible values (0 for stereo, 1 for left-only, 2 for
right-only), with 0 being the default.
*/
#define USE_FAKE_MONO 1
/* Undefine this if your sound card driver has no working select().
If you have kernel Oops, player hangups, or just no audio, you should
try to recompile MPlayer with this option disabled! */
#undef HAVE_AUDIO_SELECT
/* define this to use iconv(3) function to codepage conversions */
#undef USE_ICONV
/* define this to use nl_langinfo function */
#undef USE_LANGINFO
/* define this to use RTC (/dev/rtc) for video timers */
#define HAVE_RTC 1
/* set up max. outburst. use 65536 for ALSA 0.5, for others 16384 is enough */
#define MAX_OUTBURST 65536
/* set up audio OUTBURST. Do not change this! */
#define OUTBURST 512
/* Define this if your system has the header file for the OSS sound interface */
#define HAVE_SYS_SOUNDCARD_H 1
/* Define this if your system has the header file for the OSS sound interface
* in /usr/include */
#undef HAVE_SOUNDCARD_H
/* Define this if your system has the sysinfo header */
#define HAVE_SYS_SYSINFO_H 1
/* Define this if your system has ftello() */
#define HAVE_FTELLO 1
#ifndef HAVE_FTELLO
/* Need these for FILE and off_t an config.h is usually before other includes*/
#include <stdio.h>
#include <sys/types.h>
off_t ftello(FILE *);
#endif
/* Define this if your system has the "malloc.h" header file */
#define HAVE_MALLOC_H 1
/* memalign is mapped to malloc if unsupported */
//#define HAVE_MEMALIGN 1
/* assembler handling of .align */
#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"
/* Define this if your system has the "alloca.h" header file */
#define HAVE_ALLOCA_H 1
/* Define this if your system has the "sys/mman.h" header file */
#define HAVE_SYS_MMAN_H 1
/* Define this if you have the elf dynamic linker -ldl library */
#define HAVE_LIBDL 1
/* Define this if you have the kstat kernel statistics library */
#undef HAVE_LIBKSTAT
/* Define this if you have zlib */
//#define HAVE_ZLIB 1
#ifdef HAVE_ZLIB
#define CONFIG_ZLIB 1
#endif
/* Define this if you have shm support */
#undef HAVE_SHM
/* Define this if your system has scandir & alphasort */
#define HAVE_SCANDIR 1
/* Define this if your system has strsep */
#define HAVE_STRSEP 1
/* Define this if your system has strlcpy */
#undef HAVE_STRLCPY
#ifndef HAVE_STRLCPY
unsigned int strlcpy (char *dest, const char *src, unsigned int size);
#endif
/* Define this if your system has strlcat */
#undef HAVE_STRLCAT
#ifndef HAVE_STRLCAT
unsigned int strlcat (char *dest, const char *src, unsigned int size);
#endif
/* Define this if your system has fseeko */
#define HAVE_FSEEKO 1
#ifndef HAVE_FSEEKO
/* Need these for FILE and off_t an config.h is usually before other includes*/
#include <stdio.h>
#include <sys/types.h>
int fseeko(FILE *, off_t, int);
#endif
#define HAVE_LOCALTIME_R 1
/* Define this if your system has vsscanf */
#define HAVE_VSSCANF 1
/* Define this if your system has swab */
#define HAVE_SWAB 1
/* Define this if your system has no posix select */
#undef HAVE_NO_POSIX_SELECT
/* Define this if your system has gettimeofday */
#define HAVE_GETTIMEOFDAY 1
/* Define this if your system has glob */
#define HAVE_GLOB 1
/* Define this if your system has setenv */
#define HAVE_SETENV 1
#ifndef HAVE_SETENV
int setenv(const char *name, const char *val, int overwrite);
#endif
/* Define this if your system has sysi86 */
/* Define this if your system has pthreads */
#define HAVE_PTHREADS 1
/* Define this if you enabled thread support for libavcodec */
#define HAVE_THREADS 1
/* LIRC (remote control, see www.lirc.org) support: */
#undef HAVE_LIRC
/* Support for maemo (http://www.maemo.org) */
/*
* LIRCCD (LIRC client daemon)
* See http://www.dolda2000.cjb.net/~fredrik/lirccd/
*/
#undef HAVE_LIRCC
/* DVD navigation support using libdvdnav */
#undef USE_DVDNAV
/* Define this to enable MPEG 1/2 image postprocessing (requires a FAST CPU!) */
//#define MPEG12_POSTPROC 1
/* Define this to enable image postprocessing in libavcodec (requires a FAST CPU!) */
#define USE_LIBPOSTPROC 1
#undef USE_LIBPOSTPROC_SO
/* Win32 DLL support */
#define WIN32_PATH ""
/* ffmpeg's libavcodec support (requires libavcodec source) */
#define USE_LIBAVCODEC 1
#undef USE_LIBAVCODEC_SO
#define USE_LIBAVCODEC_DSPUTIL
#define CONFIG_MPEGAUDIO_HP 1
/* ffmpeg's libavformat support (requires libavformat source) */
#define USE_LIBAVFORMAT 1
#undef USE_LIBAVFORMAT_SO
#undef CONFIG_WIN32
#define USE_LIBAVUTIL 1
#undef USE_LIBAVUTIL_SO
/* Use libavcodec's decoders */
#define CONFIG_DECODERS 1
#define CONFIG_GPL 1
#define CONFIG_ 1
#undef CONFIG_X264
/* Use codec libs included in mplayer CVS / source dist: */
#undef USE_MP3LIB
#undef USE_LIBA52
#undef CONFIG_DTS
#undef USE_LIBMPEG2
/* Use libfame encoder filter */
#undef USE_LIBFAME
/* XAnim DLL support */
#undef USE_XANIM
/* Default search path */
#undef XACODEC_PATH
/* RealPlayer DLL support */
#undef USE_REALCODECS
/* Default search path */
#undef REALCODEC_PATH
/* LIVE555 Streaming Media library support */
#undef STREAMING_LIVE555
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -