X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_config.h;h=b411776e2588183d6e7e03d63e0b9c00bacbb188;hb=fb9bbdc9a43b4bcb52141122f0a53eec862067ca;hp=4be010747c1a7619b1c6644035db51e198006e0e;hpb=9adb17b9449595217b9e9a4c7e3c0c4bd8f2c1e3;p=vlc diff --git a/include/vlc_config.h b/include/vlc_config.h index 4be010747c..b411776e25 100644 --- a/include/vlc_config.h +++ b/include/vlc_config.h @@ -78,58 +78,6 @@ * mark it to be presented */ #define DEFAULT_PTS_DELAY (3*CLOCK_FREQ/10) -/* DVD and VCD devices */ -#if !defined( WIN32 ) && !defined( UNDER_CE ) -#if defined(__OpenBSD__) -# define CD_DEVICE "/dev/cd0c" -# define DVD_DEVICE "/dev/cd0c" -#else -# define CD_DEVICE "/dev/cdrom" -# define DVD_DEVICE "/dev/dvd" -#endif -#else -# define CD_DEVICE "D:" -# define DVD_DEVICE NULL -#endif -#define VCD_DEVICE CD_DEVICE -#define CDAUDIO_DEVICE CD_DEVICE - -/***************************************************************************** - * Audio configuration - *****************************************************************************/ - -/* Volume */ -/* If you are coding an interface, please see src/audio_output/intf.c */ -#define AOUT_VOLUME_DEFAULT 256 -#define AOUT_VOLUME_STEP 32 -#define AOUT_VOLUME_MAX 1024 -#define AOUT_VOLUME_MIN 0 - -/* Max number of pre-filters per input, and max number of post-filters */ -#define AOUT_MAX_FILTERS 10 - -/* Max number of inputs */ -#define AOUT_MAX_INPUTS 5 - -/* Buffers which arrive in advance of more than AOUT_MAX_ADVANCE_TIME - * will be considered as bogus and be trashed */ -#define AOUT_MAX_ADVANCE_TIME (DEFAULT_PTS_DELAY * 5) - -/* Buffers which arrive in advance of more than AOUT_MAX_PREPARE_TIME - * will cause the calling thread to sleep */ -#define AOUT_MAX_PREPARE_TIME (CLOCK_FREQ/2) - -/* Buffers which arrive after pts - AOUT_MIN_PREPARE_TIME will be trashed - * to avoid too heavy resampling */ -#define AOUT_MIN_PREPARE_TIME (CLOCK_FREQ/25) - -/* Max acceptable delay between the coded PTS and the actual presentation - * time, without resampling */ -#define AOUT_PTS_TOLERANCE (CLOCK_FREQ/25) - -/* Max acceptable resampling (in %) */ -#define AOUT_MAX_RESAMPLING 10 - /***************************************************************************** * SPU configuration *****************************************************************************/