X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=inline;f=include%2Fvlc_config.h;h=316179a38d8a9d5ab01512a2818b5e1dbcbdbc32;hb=0d8adc76dbf01e54ef043a07a623982a7fa9a426;hp=323b948908d9f101b7570846956b0b221b68815f;hpb=a256154f987e0d19f1a6a6bfb469508942180aac;p=vlc diff --git a/include/vlc_config.h b/include/vlc_config.h index 323b948908..316179a38d 100644 --- a/include/vlc_config.h +++ b/include/vlc_config.h @@ -22,10 +22,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ -#if !defined( __LIBVLC__ ) - #error You are not libvlc or one of its plugins. You cannot include this file -#endif - /* Conventions regarding names of symbols and variables * ---------------------------------------------------- * @@ -44,10 +40,6 @@ * status */ #define THREAD_SLEEP ((mtime_t)(0.010*CLOCK_FREQ)) -/* When a thread waits on a condition in debug mode, delay to wait before - * outputting an error message (in second) */ -#define THREAD_COND_TIMEOUT 3 - /***************************************************************************** * Interface configuration *****************************************************************************/ @@ -64,7 +56,6 @@ *****************************************************************************/ #define DEFAULT_INPUT_ACTIVITY 1 -#define DIRECTORY_ACTIVITY 100 #define TRANSCODE_ACTIVITY 10 /* Used in ErrorThread */ @@ -87,11 +78,11 @@ /* DVD and VCD devices */ #if !defined( WIN32 ) && !defined( UNDER_CE ) -# define CD_DEVICE "dev/cdrom" +# define CD_DEVICE "/dev/cdrom" # define DVD_DEVICE "/dev/dvd" #else # define CD_DEVICE "D:" -# define DVD_DEVICE CD_DEVICE +# define DVD_DEVICE NULL #endif #define VCD_DEVICE CD_DEVICE #define CDAUDIO_DEVICE CD_DEVICE @@ -101,6 +92,7 @@ *****************************************************************************/ /* 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 @@ -114,7 +106,7 @@ /* 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 (mtime_t)(DEFAULT_PTS_DELAY * 3) +#define AOUT_MAX_ADVANCE_TIME (mtime_t)(DEFAULT_PTS_DELAY * 5) /* Buffers which arrive in advance of more than AOUT_MAX_PREPARE_TIME * will cause the calling thread to sleep */ @@ -151,11 +143,7 @@ /* Video heap size - remember that a decompressed picture is big * (~1 Mbyte) before using huge values */ -#ifdef OPTIMIZE_MEMORY -# define VOUT_MAX_PICTURES 5 -#else -# define VOUT_MAX_PICTURES 8 -#endif +#define VOUT_MAX_PICTURES 8 /* Minimum number of direct pictures the video output will accept without * creating additional pictures in system memory */