X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_config.h;h=64d902739ada68fe42bee6501e4398bf79651a88;hb=757962a03add1a6a39a56f9d45970c96e6a2816b;hp=966b1517bd43081f40710d0d7874b5bde6782f85;hpb=b76d7cf6283749d91448cb2b175f7cd9889fbe02;p=vlc diff --git a/include/vlc_config.h b/include/vlc_config.h index 966b1517bd..64d902739a 100644 --- a/include/vlc_config.h +++ b/include/vlc_config.h @@ -22,6 +22,10 @@ * 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 * ---------------------------------------------------- * @@ -45,9 +49,9 @@ #define THREAD_COND_TIMEOUT 1 /* The configuration file and directory */ -#ifdef SYS_BEOS +#if defined (SYS_BEOS) # define CONFIG_DIR "config/settings/VideoLAN Client" -#elif __APPLE__ +#elif defined (__APPLE__) # define CONFIG_DIR "Library/Preferences/VLC" #elif defined( WIN32 ) || defined( UNDER_CE ) # define CONFIG_DIR "vlc" @@ -72,6 +76,10 @@ * Input thread configuration *****************************************************************************/ +#define DEFAULT_INPUT_ACTIVITY 1 +#define DIRECTORY_ACTIVITY 100 +#define TRANSCODE_ACTIVITY 10 + /* Used in ErrorThread */ #define INPUT_IDLE_SLEEP ((mtime_t)(0.100*CLOCK_FREQ))