1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-09-19 22:35:24 +00:00
qb64/internal/c/parts/audio/out/android/OpenAL/include/config.h
2015-10-30 23:18:44 +11:00

125 lines
2.7 KiB
C

#ifndef CONFIG_H
#define CONFIG_H
/* Define to the library version */
#define ALSOFT_VERSION "1.12.854"
#define AL_BUILD_LIBRARY
/* Define if we have the Android backend */
#if defined(ANDROID)
// Stereo only on Android back-ends
#define MAXCHANNELS 3
#define STEREO_ONLY 1
#if defined(POST_FROYO)
#define HAVE_OPENSLES 1
#endif
#define HAVE_AUDIOTRACK 1
// For throttling AlSource.c
#ifndef MAX_SOURCES_LOW
#define MAX_SOURCES_LOW 4
#endif
#ifndef MAX_SOURCES_START
#define MAX_SOURCES_START 8
#endif
#ifndef MAX_SOURCES_HIGH
#define MAX_SOURCES_HIGH 64
#endif
#endif
/* Define if we have the ALSA backend */
/* #cmakedefine HAVE_ALSA */
/* Define if we have the OSS backend */
/* #cmakedefine HAVE_OSS */
/* Define if we have the Solaris backend */
/* #cmakedefine HAVE_SOLARIS */
/* Define if we have the DSound backend */
/* #cmakedefine HAVE_DSOUND */
/* Define if we have the Wave Writer backend */
/* #cmakedefine HAVE_WAVE */
/* Define if we have the Windows Multimedia backend */
/* #cmakedefine HAVE_WINMM */
/* Define if we have the PortAudio backend */
/* #cmakedefine HAVE_PORTAUDIO */
/* Define if we have the PulseAudio backend */
/* #cmakedefine HAVE_PULSEAUDIO */
/* Define if we have dlfcn.h */
#define HAVE_DLFCN_H 1
/* Define if we have the stat function */
#define HAVE_STAT 1
/* Define if we have the powf function */
#define HAVE_POWF 1
/* Define if we have the sqrtf function */
#define HAVE_SQRTF 1
/* Define if we have the acosf function */
#define HAVE_ACOSF 1
/* Define if we have the atanf function */
#define HAVE_ATANF 1
/* Define if we have the fabsf function */
#define HAVE_FABSF 1
/* Define if we have the strtof function */
#define HAVE_STRTOF 1
/* Define if we have stdint.h */
#define HAVE_STDINT_H 1
/* Define if we have the __int64 type */
/* #cmakedefine HAVE___INT64 */
/* Define to the size of a long int type */
#define SIZEOF_LONG 4
/* Define to the size of a long long int type */
#define SIZEOF_LONG_LONG 8
/* Define to the size of an unsigned int type */
#define SIZEOF_UINT 4
/* Define to the size of a void pointer type */
#define SIZEOF_VOIDP 4
/* Define if we have GCC's destructor attribute */
#define HAVE_GCC_DESTRUCTOR 1
/* Define if we have GCC's format attribute */
#define HAVE_GCC_FORMAT 1
/* Define if we have pthread_np.h */
/* #cmakedefine HAVE_PTHREAD_NP_H */
/* Define if we have float.h */
/* #cmakedefine HAVE_FLOAT_H */
/* Define if we have fenv.h */
#define HAVE_FENV_H 1
/* Define if we have fesetround() */
/* #cmakedefine HAVE_FESETROUND */
/* Define if we have _controlfp() */
/* #cmakedefine HAVE__CONTROLFP */
/* Define if we have pthread_setschedparam() */
#define HAVE_PTHREAD_SETSCHEDPARAM 1
#endif