2007-11-13 18:02:18 -08:00
|
|
|
#ifndef AL_MAIN_H
|
|
|
|
#define AL_MAIN_H
|
|
|
|
|
|
|
|
#include <string.h>
|
2008-01-15 12:45:24 -08:00
|
|
|
#include <stdio.h>
|
2009-06-07 15:42:15 -07:00
|
|
|
#include <stdarg.h>
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2008-08-08 08:12:41 -07:00
|
|
|
#ifdef HAVE_FENV_H
|
|
|
|
#include <fenv.h>
|
|
|
|
#endif
|
|
|
|
|
2009-05-16 23:26:39 -07:00
|
|
|
#include "AL/al.h"
|
|
|
|
#include "AL/alc.h"
|
|
|
|
#include "AL/alext.h"
|
|
|
|
|
2011-07-02 02:25:34 -07:00
|
|
|
#ifndef ALC_SOFT_device_loopback
|
|
|
|
#define ALC_SOFT_device_loopback 1
|
|
|
|
#define ALC_FORMAT_CHANNELS_SOFT 0x1990
|
|
|
|
#define ALC_FORMAT_TYPE_SOFT 0x1991
|
|
|
|
|
|
|
|
/* Sample types */
|
|
|
|
#define ALC_BYTE 0x1400
|
|
|
|
#define ALC_UNSIGNED_BYTE 0x1401
|
|
|
|
#define ALC_SHORT 0x1402
|
|
|
|
#define ALC_UNSIGNED_SHORT 0x1403
|
|
|
|
#define ALC_INT 0x1404
|
|
|
|
#define ALC_UNSIGNED_INT 0x1405
|
|
|
|
#define ALC_FLOAT 0x1406
|
|
|
|
|
|
|
|
/* Channel configurations */
|
|
|
|
#define ALC_MONO 0x1500
|
|
|
|
#define ALC_STEREO 0x1501
|
|
|
|
#define ALC_QUAD 0x1503
|
|
|
|
#define ALC_5POINT1 0x1504 /* (WFX order) */
|
|
|
|
#define ALC_6POINT1 0x1505 /* (WFX order) */
|
|
|
|
#define ALC_7POINT1 0x1506 /* (WFX order) */
|
|
|
|
|
|
|
|
typedef ALCdevice* (ALC_APIENTRY*LPALCLOOPBACKOPENDEVICESOFT)(void);
|
2011-07-02 02:51:33 -07:00
|
|
|
typedef ALCboolean (ALC_APIENTRY*LPALCISRENDERFORMATSUPPORTEDSOFT)(ALCdevice *device, ALCsizei freq, ALCenum channels, ALCenum type);
|
2011-07-02 02:25:34 -07:00
|
|
|
typedef void (ALC_APIENTRY*LPALCRENDERSAMPLESSOFT)(ALCdevice *device, ALCvoid *buffer, ALCsizei samples);
|
|
|
|
#ifdef AL_ALEXT_PROTOTYPES
|
|
|
|
ALC_API ALCdevice* ALC_APIENTRY alcLoopbackOpenDeviceSOFT(void);
|
2011-07-02 02:51:33 -07:00
|
|
|
ALC_API ALCboolean ALC_APIENTRY alcIsRenderFormatSupportedSOFT(ALCdevice *device, ALCsizei freq, ALCenum channels, ALCenum type);
|
2011-07-02 02:25:34 -07:00
|
|
|
ALC_API void ALC_APIENTRY alcRenderSamplesSOFT(ALCdevice *device, ALCvoid *buffer, ALCsizei samples);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef AL_SOFT_buffer_samples
|
|
|
|
#define AL_SOFT_buffer_samples 1
|
2011-03-18 07:28:06 -07:00
|
|
|
/* Sample types */
|
|
|
|
#define AL_BYTE 0x1400
|
|
|
|
#define AL_UNSIGNED_BYTE 0x1401
|
|
|
|
#define AL_SHORT 0x1402
|
|
|
|
#define AL_UNSIGNED_SHORT 0x1403
|
|
|
|
#define AL_INT 0x1404
|
|
|
|
#define AL_UNSIGNED_INT 0x1405
|
|
|
|
#define AL_FLOAT 0x1406
|
|
|
|
#define AL_DOUBLE 0x1407
|
2011-04-27 12:20:50 -07:00
|
|
|
#define AL_BYTE3 0x1408
|
|
|
|
#define AL_UNSIGNED_BYTE3 0x1409
|
|
|
|
#define AL_MULAW 0x1410
|
|
|
|
#define AL_IMA4 0x1411
|
2011-03-16 05:47:07 -07:00
|
|
|
|
2011-03-18 07:28:06 -07:00
|
|
|
/* Channel configurations */
|
|
|
|
#define AL_MONO 0x1500
|
|
|
|
#define AL_STEREO 0x1501
|
|
|
|
#define AL_REAR 0x1502
|
|
|
|
#define AL_QUAD 0x1503
|
|
|
|
#define AL_5POINT1 0x1504 /* (WFX order) */
|
|
|
|
#define AL_6POINT1 0x1505 /* (WFX order) */
|
|
|
|
#define AL_7POINT1 0x1506 /* (WFX order) */
|
|
|
|
|
|
|
|
/* Storage formats */
|
2011-03-17 08:42:25 -07:00
|
|
|
#define AL_MONO8 0x1100
|
|
|
|
#define AL_MONO16 0x1101
|
|
|
|
#define AL_MONO32F 0x10010
|
|
|
|
#define AL_STEREO8 0x1102
|
|
|
|
#define AL_STEREO16 0x1103
|
|
|
|
#define AL_STEREO32F 0x10011
|
|
|
|
#define AL_QUAD8 0x1204
|
|
|
|
#define AL_QUAD16 0x1205
|
|
|
|
#define AL_QUAD32F 0x1206
|
|
|
|
#define AL_REAR8 0x1207
|
|
|
|
#define AL_REAR16 0x1208
|
|
|
|
#define AL_REAR32F 0x1209
|
|
|
|
#define AL_5POINT1_8 0x120A
|
|
|
|
#define AL_5POINT1_16 0x120B
|
|
|
|
#define AL_5POINT1_32F 0x120C
|
|
|
|
#define AL_6POINT1_8 0x120D
|
|
|
|
#define AL_6POINT1_16 0x120E
|
|
|
|
#define AL_6POINT1_32F 0x120F
|
|
|
|
#define AL_7POINT1_8 0x1210
|
|
|
|
#define AL_7POINT1_16 0x1211
|
|
|
|
#define AL_7POINT1_32F 0x1212
|
|
|
|
|
2011-03-16 11:29:22 -07:00
|
|
|
typedef void (AL_APIENTRY*LPALBUFFERSAMPLESSOFT)(ALuint,ALuint,ALenum,ALsizei,ALenum,ALenum,const ALvoid*);
|
2011-03-16 12:13:17 -07:00
|
|
|
typedef void (AL_APIENTRY*LPALBUFFERSUBSAMPLESSOFT)(ALuint,ALsizei,ALsizei,ALenum,ALenum,const ALvoid*);
|
2011-03-16 12:56:39 -07:00
|
|
|
typedef void (AL_APIENTRY*LPALGETBUFFERSAMPLESSOFT)(ALuint,ALsizei,ALsizei,ALenum,ALenum,ALvoid*);
|
2011-03-16 13:57:00 -07:00
|
|
|
typedef ALboolean (AL_APIENTRY*LPALISBUFFERFORMATSUPPORTEDSOFT)(ALenum);
|
2011-03-16 11:29:22 -07:00
|
|
|
#ifdef AL_ALEXT_PROTOTYPES
|
|
|
|
AL_API void AL_APIENTRY alBufferSamplesSOFT(ALuint buffer,
|
|
|
|
ALuint samplerate, ALenum internalformat, ALsizei frames,
|
|
|
|
ALenum channels, ALenum type, const ALvoid *data);
|
2011-03-16 12:13:17 -07:00
|
|
|
AL_API void AL_APIENTRY alBufferSubSamplesSOFT(ALuint buffer,
|
|
|
|
ALsizei offset, ALsizei frames,
|
|
|
|
ALenum channels, ALenum type, const ALvoid *data);
|
2011-03-16 12:56:39 -07:00
|
|
|
AL_API void AL_APIENTRY alGetBufferSamplesSOFT(ALuint buffer,
|
|
|
|
ALsizei offset, ALsizei frames,
|
|
|
|
ALenum channels, ALenum type, ALvoid *data);
|
2011-03-16 13:57:00 -07:00
|
|
|
AL_API ALboolean AL_APIENTRY alIsBufferFormatSupportedSOFT(ALenum format);
|
2011-03-16 11:29:22 -07:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2011-06-29 23:18:49 -07:00
|
|
|
#ifndef AL_SOFT_non_virtual_channels
|
|
|
|
#define AL_SOFT_non_virtual_channels 1
|
|
|
|
#define AL_VIRTUAL_CHANNELS_SOFT 0x1033
|
|
|
|
#endif
|
|
|
|
|
2011-07-16 16:59:20 -07:00
|
|
|
#ifndef AL_SOFT_deferred_updates
|
|
|
|
#define AL_SOFT_deferred_updates 1
|
|
|
|
#define AL_DEFERRED_UPDATES_SOFT 0xC002
|
|
|
|
typedef ALvoid (AL_APIENTRY*LPALDEFERUPDATESSOFT)(void);
|
|
|
|
typedef ALvoid (AL_APIENTRY*LPALPROCESSUPDATESSOFT)(void);
|
|
|
|
#ifdef AL_ALEXT_PROTOTYPES
|
|
|
|
AL_API ALvoid AL_APIENTRY alDeferUpdatesSOFT(void);
|
|
|
|
AL_API ALvoid AL_APIENTRY alProcessUpdatesSOFT(void);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2010-07-30 20:23:55 -07:00
|
|
|
|
2009-12-24 15:41:45 -08:00
|
|
|
#if defined(HAVE_STDINT_H)
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef int64_t ALint64;
|
|
|
|
typedef uint64_t ALuint64;
|
|
|
|
#elif defined(HAVE___INT64)
|
|
|
|
typedef __int64 ALint64;
|
|
|
|
typedef unsigned __int64 ALuint64;
|
|
|
|
#elif (SIZEOF_LONG == 8)
|
|
|
|
typedef long ALint64;
|
|
|
|
typedef unsigned long ALuint64;
|
|
|
|
#elif (SIZEOF_LONG_LONG == 8)
|
|
|
|
typedef long long ALint64;
|
|
|
|
typedef unsigned long long ALuint64;
|
|
|
|
#endif
|
|
|
|
|
2011-06-15 23:46:35 -07:00
|
|
|
typedef ptrdiff_t ALintptrEXT;
|
|
|
|
typedef ptrdiff_t ALsizeiptrEXT;
|
|
|
|
|
2010-01-12 08:48:25 -08:00
|
|
|
#ifdef HAVE_GCC_FORMAT
|
|
|
|
#define PRINTF_STYLE(x, y) __attribute__((format(printf, (x), (y))))
|
|
|
|
#else
|
|
|
|
#define PRINTF_STYLE(x, y)
|
|
|
|
#endif
|
|
|
|
|
2011-05-02 17:06:32 -07:00
|
|
|
#if defined(HAVE_RESTRICT)
|
|
|
|
#define RESTRICT restrict
|
|
|
|
#elif defined(HAVE___RESTRICT)
|
|
|
|
#define RESTRICT __restrict
|
|
|
|
#else
|
|
|
|
#define RESTRICT
|
|
|
|
#endif
|
|
|
|
|
2011-08-28 17:21:01 -07:00
|
|
|
|
|
|
|
typedef struct UIntMap {
|
|
|
|
struct {
|
|
|
|
ALuint key;
|
|
|
|
ALvoid *value;
|
|
|
|
} *array;
|
|
|
|
ALsizei size;
|
|
|
|
ALsizei maxsize;
|
|
|
|
} UIntMap;
|
|
|
|
|
|
|
|
void InitUIntMap(UIntMap *map);
|
|
|
|
void ResetUIntMap(UIntMap *map);
|
|
|
|
ALenum InsertUIntMapEntry(UIntMap *map, ALuint key, ALvoid *value);
|
|
|
|
void RemoveUIntMapKey(UIntMap *map, ALuint key);
|
|
|
|
ALvoid *LookupUIntMapKey(UIntMap *map, ALuint key);
|
|
|
|
|
|
|
|
|
2007-11-13 18:02:18 -08:00
|
|
|
#ifdef _WIN32
|
2008-01-15 12:45:24 -08:00
|
|
|
|
2008-03-01 01:39:42 -08:00
|
|
|
#ifndef _WIN32_WINNT
|
|
|
|
#define _WIN32_WINNT 0x0500
|
|
|
|
#endif
|
2007-11-13 18:02:18 -08:00
|
|
|
#include <windows.h>
|
|
|
|
|
2011-08-28 17:21:01 -07:00
|
|
|
extern UIntMap TlsDestructor;
|
|
|
|
|
|
|
|
typedef DWORD pthread_key_t;
|
|
|
|
int pthread_key_create(pthread_key_t *key, void (*callback)(void*));
|
|
|
|
int pthread_key_delete(pthread_key_t key);
|
|
|
|
void *pthread_getspecific(pthread_key_t key);
|
|
|
|
int pthread_setspecific(pthread_key_t key, void *val);
|
2009-09-12 16:45:46 -07:00
|
|
|
|
2011-06-12 04:36:24 -07:00
|
|
|
#define HAVE_DYNLOAD 1
|
2011-06-12 04:45:03 -07:00
|
|
|
void *LoadLib(const char *name);
|
|
|
|
void CloseLib(void *handle);
|
|
|
|
void *GetSymbol(void *handle, const char *name);
|
2011-06-12 04:36:24 -07:00
|
|
|
|
2011-08-20 03:59:46 -07:00
|
|
|
typedef LONG pthread_once_t;
|
|
|
|
#define PTHREAD_ONCE_INIT 0
|
|
|
|
void pthread_once(pthread_once_t *once, void (*callback)(void));
|
|
|
|
|
2007-11-13 18:02:18 -08:00
|
|
|
#else
|
|
|
|
|
2009-11-01 10:03:05 -08:00
|
|
|
#include <unistd.h>
|
2007-11-13 18:02:18 -08:00
|
|
|
#include <assert.h>
|
|
|
|
#include <pthread.h>
|
2008-05-15 21:35:51 -07:00
|
|
|
#ifdef HAVE_PTHREAD_NP_H
|
|
|
|
#include <pthread_np.h>
|
|
|
|
#endif
|
2008-01-11 06:01:51 -08:00
|
|
|
#include <sys/time.h>
|
2008-01-11 08:15:44 -08:00
|
|
|
#include <time.h>
|
|
|
|
#include <errno.h>
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2009-12-04 01:33:50 -08:00
|
|
|
#define IsBadWritePtr(a,b) ((a) == NULL && (b) != 0)
|
2007-11-13 18:02:18 -08:00
|
|
|
|
|
|
|
typedef pthread_mutex_t CRITICAL_SECTION;
|
2011-05-29 03:08:26 -07:00
|
|
|
void InitializeCriticalSection(CRITICAL_SECTION *cs);
|
|
|
|
void DeleteCriticalSection(CRITICAL_SECTION *cs);
|
2011-05-29 03:28:34 -07:00
|
|
|
void EnterCriticalSection(CRITICAL_SECTION *cs);
|
|
|
|
void LeaveCriticalSection(CRITICAL_SECTION *cs);
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2011-06-12 05:04:36 -07:00
|
|
|
ALuint timeGetTime(void);
|
2008-01-11 06:01:51 -08:00
|
|
|
|
2010-05-16 06:02:27 -07:00
|
|
|
static __inline void Sleep(ALuint t)
|
2008-01-11 08:15:44 -08:00
|
|
|
{
|
|
|
|
struct timespec tv, rem;
|
|
|
|
tv.tv_nsec = (t*1000000)%1000000000;
|
|
|
|
tv.tv_sec = t/1000;
|
|
|
|
|
|
|
|
while(nanosleep(&tv, &rem) == -1 && errno == EINTR)
|
|
|
|
tv = rem;
|
|
|
|
}
|
2011-06-12 04:36:24 -07:00
|
|
|
|
|
|
|
#if defined(HAVE_DLFCN_H)
|
|
|
|
#define HAVE_DYNLOAD 1
|
2011-06-12 04:45:03 -07:00
|
|
|
void *LoadLib(const char *name);
|
|
|
|
void CloseLib(void *handle);
|
|
|
|
void *GetSymbol(void *handle, const char *name);
|
2011-06-12 04:36:24 -07:00
|
|
|
#endif
|
|
|
|
|
2007-11-13 18:02:18 -08:00
|
|
|
#endif
|
|
|
|
|
2011-08-28 15:44:03 -07:00
|
|
|
#ifdef __GNUC__
|
|
|
|
typedef ALuint RefCount;
|
|
|
|
static __inline RefCount IncrementRef(volatile RefCount *ptr)
|
|
|
|
{ return __sync_add_and_fetch(ptr, 1); }
|
|
|
|
static __inline RefCount DecrementRef(volatile RefCount *ptr)
|
|
|
|
{ return __sync_sub_and_fetch(ptr, 1); }
|
|
|
|
|
2011-08-29 00:50:55 -07:00
|
|
|
#define DECL_TEMPLATE(T) \
|
|
|
|
static __inline T Exchange_##T(volatile T *ptr, T newval) \
|
|
|
|
{ \
|
|
|
|
return __sync_lock_test_and_set(ptr, newval); \
|
|
|
|
}
|
|
|
|
|
2011-08-28 15:44:03 -07:00
|
|
|
#elif defined(_WIN32)
|
|
|
|
|
|
|
|
typedef LONG RefCount;
|
|
|
|
static __inline RefCount IncrementRef(volatile RefCount *ptr)
|
|
|
|
{ return InterlockedInrement(ptr); }
|
|
|
|
static __inline RefCount DecrementRef(volatile RefCount *ptr)
|
|
|
|
{ return InterlockedDecrement(ptr); }
|
|
|
|
|
2011-08-29 00:50:55 -07:00
|
|
|
#define DECL_TEMPLATE(T) \
|
|
|
|
static __inline T Exchange_##T(volatile T *ptr, T newval) \
|
|
|
|
{ \
|
|
|
|
union { \
|
|
|
|
volatile T *t; \
|
|
|
|
volatile LONG *l; \
|
|
|
|
} u = { ptr }; \
|
|
|
|
return InterlockedExchange(u.l, newval); \
|
|
|
|
}
|
|
|
|
|
2011-08-28 15:44:03 -07:00
|
|
|
#elif defined(__APPLE__)
|
|
|
|
|
|
|
|
#include <libkern/OSAtomic.h>
|
|
|
|
|
|
|
|
typedef int32_t RefCount;
|
|
|
|
static __inline RefCount IncrementRef(volatile RefCount *ptr)
|
|
|
|
{ return OSAtomicIncrement32Barrier(ptr); }
|
|
|
|
static __inline RefCount DecrementRef(volatile RefCount *ptr)
|
|
|
|
{ return OSAtomicDecrement32Barrier(ptr); }
|
|
|
|
|
2011-08-29 00:50:55 -07:00
|
|
|
#define DECL_TEMPLATE(T) \
|
|
|
|
static __inline T Exchange_##T(volatile T *ptr, T newval) \
|
|
|
|
{ \
|
|
|
|
union { \
|
|
|
|
volatile T *t; \
|
|
|
|
volatile int32_t *l; \
|
|
|
|
} u = { ptr }; \
|
|
|
|
/* Really? No regular old atomic swap? */ \
|
|
|
|
T oldval; \
|
|
|
|
do { \
|
|
|
|
oldval = *u.i; \
|
|
|
|
} while(!OSAtomicCompareAndSwap32Barrier(oldval, newval, u.i)); \
|
|
|
|
return oldval; \
|
|
|
|
}
|
|
|
|
|
2011-08-28 15:44:03 -07:00
|
|
|
#else
|
|
|
|
#error "No atomic functions available on this platform!"
|
|
|
|
#endif
|
|
|
|
|
2011-08-29 00:50:55 -07:00
|
|
|
DECL_TEMPLATE(ALenum)
|
|
|
|
|
|
|
|
#undef DECL_TEMPLATE
|
|
|
|
|
2011-08-28 15:44:03 -07:00
|
|
|
|
2007-11-13 18:02:18 -08:00
|
|
|
#include "alListener.h"
|
2009-05-16 23:26:39 -07:00
|
|
|
#include "alu.h"
|
2007-11-13 18:02:18 -08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2008-02-08 19:55:51 -08:00
|
|
|
extern "C" {
|
2007-11-13 18:02:18 -08:00
|
|
|
#endif
|
|
|
|
|
2007-11-30 00:28:34 -08:00
|
|
|
|
2011-05-07 04:35:49 -07:00
|
|
|
#define DEFAULT_OUTPUT_RATE (44100)
|
2007-11-13 18:02:18 -08:00
|
|
|
|
|
|
|
#define SPEEDOFSOUNDMETRESPERSEC (343.3f)
|
2011-07-01 02:29:10 -07:00
|
|
|
#define AIRABSORBGAINHF (0.99426) /* -0.05dB */
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2008-07-24 00:41:25 -07:00
|
|
|
#define LOWPASSFREQCUTOFF (5000)
|
|
|
|
|
|
|
|
|
2009-11-19 09:50:15 -08:00
|
|
|
// Find the next power-of-2 for non-power-of-2 numbers.
|
|
|
|
static __inline ALuint NextPowerOf2(ALuint value)
|
|
|
|
{
|
|
|
|
ALuint powerOf2 = 1;
|
|
|
|
|
|
|
|
if(value)
|
|
|
|
{
|
|
|
|
value--;
|
|
|
|
while(value)
|
|
|
|
{
|
|
|
|
value >>= 1;
|
|
|
|
powerOf2 <<= 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return powerOf2;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-08-20 03:59:46 -07:00
|
|
|
enum DevProbe {
|
|
|
|
DEVICE_PROBE,
|
|
|
|
ALL_DEVICE_PROBE,
|
|
|
|
CAPTURE_DEVICE_PROBE
|
|
|
|
};
|
|
|
|
|
2007-11-13 18:02:18 -08:00
|
|
|
typedef struct {
|
2011-08-24 14:24:48 -07:00
|
|
|
ALCenum (*OpenPlayback)(ALCdevice*, const ALCchar*);
|
2007-11-13 18:02:18 -08:00
|
|
|
void (*ClosePlayback)(ALCdevice*);
|
2009-09-16 00:24:44 -07:00
|
|
|
ALCboolean (*ResetPlayback)(ALCdevice*);
|
|
|
|
void (*StopPlayback)(ALCdevice*);
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2011-08-24 14:44:15 -07:00
|
|
|
ALCenum (*OpenCapture)(ALCdevice*, const ALCchar*);
|
2007-11-13 18:02:18 -08:00
|
|
|
void (*CloseCapture)(ALCdevice*);
|
|
|
|
void (*StartCapture)(ALCdevice*);
|
|
|
|
void (*StopCapture)(ALCdevice*);
|
|
|
|
void (*CaptureSamples)(ALCdevice*, void*, ALCuint);
|
|
|
|
ALCuint (*AvailableSamples)(ALCdevice*);
|
|
|
|
} BackendFuncs;
|
|
|
|
|
2011-08-20 03:59:46 -07:00
|
|
|
struct BackendInfo {
|
|
|
|
const char *name;
|
|
|
|
ALCboolean (*Init)(BackendFuncs*);
|
|
|
|
void (*Deinit)(void);
|
|
|
|
void (*Probe)(enum DevProbe);
|
|
|
|
BackendFuncs Funcs;
|
2009-08-27 06:09:33 -07:00
|
|
|
};
|
|
|
|
|
2011-08-17 06:05:26 -07:00
|
|
|
ALCboolean alc_alsa_init(BackendFuncs *func_list);
|
2009-08-26 23:45:00 -07:00
|
|
|
void alc_alsa_deinit(void);
|
2011-06-14 04:02:58 -07:00
|
|
|
void alc_alsa_probe(enum DevProbe type);
|
2011-08-17 06:05:26 -07:00
|
|
|
ALCboolean alc_oss_init(BackendFuncs *func_list);
|
2009-08-26 23:45:00 -07:00
|
|
|
void alc_oss_deinit(void);
|
2011-06-14 04:02:58 -07:00
|
|
|
void alc_oss_probe(enum DevProbe type);
|
2011-08-17 06:05:26 -07:00
|
|
|
ALCboolean alc_solaris_init(BackendFuncs *func_list);
|
2009-08-26 23:45:00 -07:00
|
|
|
void alc_solaris_deinit(void);
|
2011-06-14 04:02:58 -07:00
|
|
|
void alc_solaris_probe(enum DevProbe type);
|
2011-08-17 06:05:26 -07:00
|
|
|
ALCboolean alc_sndio_init(BackendFuncs *func_list);
|
2011-06-22 19:29:13 -07:00
|
|
|
void alc_sndio_deinit(void);
|
|
|
|
void alc_sndio_probe(enum DevProbe type);
|
2011-08-17 06:05:26 -07:00
|
|
|
ALCboolean alcMMDevApiInit(BackendFuncs *func_list);
|
2011-05-15 20:26:25 -07:00
|
|
|
void alcMMDevApiDeinit(void);
|
2011-06-14 04:02:58 -07:00
|
|
|
void alcMMDevApiProbe(enum DevProbe type);
|
2011-08-17 06:05:26 -07:00
|
|
|
ALCboolean alcDSoundInit(BackendFuncs *func_list);
|
2009-08-26 23:45:00 -07:00
|
|
|
void alcDSoundDeinit(void);
|
2011-06-14 04:02:58 -07:00
|
|
|
void alcDSoundProbe(enum DevProbe type);
|
2011-08-17 06:05:26 -07:00
|
|
|
ALCboolean alcWinMMInit(BackendFuncs *FuncList);
|
2009-08-26 23:45:00 -07:00
|
|
|
void alcWinMMDeinit(void);
|
2011-06-14 04:02:58 -07:00
|
|
|
void alcWinMMProbe(enum DevProbe type);
|
2011-08-17 06:05:26 -07:00
|
|
|
ALCboolean alc_pa_init(BackendFuncs *func_list);
|
2009-08-26 23:45:00 -07:00
|
|
|
void alc_pa_deinit(void);
|
2011-06-14 04:02:58 -07:00
|
|
|
void alc_pa_probe(enum DevProbe type);
|
2011-08-17 06:05:26 -07:00
|
|
|
ALCboolean alc_wave_init(BackendFuncs *func_list);
|
2009-08-26 23:45:00 -07:00
|
|
|
void alc_wave_deinit(void);
|
2011-06-14 04:02:58 -07:00
|
|
|
void alc_wave_probe(enum DevProbe type);
|
2011-08-17 06:05:26 -07:00
|
|
|
ALCboolean alc_pulse_init(BackendFuncs *func_list);
|
2009-08-26 23:45:00 -07:00
|
|
|
void alc_pulse_deinit(void);
|
2011-06-14 04:02:58 -07:00
|
|
|
void alc_pulse_probe(enum DevProbe type);
|
2011-08-17 06:05:26 -07:00
|
|
|
ALCboolean alc_ca_init(BackendFuncs *func_list);
|
2011-03-15 04:58:56 -07:00
|
|
|
void alc_ca_deinit(void);
|
2011-06-14 04:02:58 -07:00
|
|
|
void alc_ca_probe(enum DevProbe type);
|
2011-08-17 06:05:26 -07:00
|
|
|
ALCboolean alc_opensl_init(BackendFuncs *func_list);
|
2011-06-12 04:41:42 -07:00
|
|
|
void alc_opensl_deinit(void);
|
2011-06-14 04:02:58 -07:00
|
|
|
void alc_opensl_probe(enum DevProbe type);
|
2011-08-17 06:05:26 -07:00
|
|
|
ALCboolean alc_null_init(BackendFuncs *func_list);
|
2010-05-28 16:41:52 -07:00
|
|
|
void alc_null_deinit(void);
|
2011-06-14 04:02:58 -07:00
|
|
|
void alc_null_probe(enum DevProbe type);
|
2011-08-17 06:05:26 -07:00
|
|
|
ALCboolean alc_loopback_init(BackendFuncs *func_list);
|
2011-03-11 00:13:44 -08:00
|
|
|
void alc_loopback_deinit(void);
|
2011-06-14 04:02:58 -07:00
|
|
|
void alc_loopback_probe(enum DevProbe type);
|
2007-12-06 22:22:11 -08:00
|
|
|
|
|
|
|
|
2010-12-04 19:50:00 -08:00
|
|
|
/* Device formats */
|
|
|
|
enum DevFmtType {
|
2011-03-11 00:13:44 -08:00
|
|
|
DevFmtByte = AL_BYTE,
|
|
|
|
DevFmtUByte = AL_UNSIGNED_BYTE,
|
|
|
|
DevFmtShort = AL_SHORT,
|
|
|
|
DevFmtUShort = AL_UNSIGNED_SHORT,
|
|
|
|
DevFmtFloat = AL_FLOAT
|
2010-12-04 19:50:00 -08:00
|
|
|
};
|
|
|
|
enum DevFmtChannels {
|
2011-03-11 00:13:44 -08:00
|
|
|
DevFmtMono = AL_MONO,
|
|
|
|
DevFmtStereo = AL_STEREO,
|
|
|
|
DevFmtQuad = AL_QUAD,
|
|
|
|
DevFmtX51 = AL_5POINT1,
|
|
|
|
DevFmtX61 = AL_6POINT1,
|
2011-05-28 19:35:32 -07:00
|
|
|
DevFmtX71 = AL_7POINT1,
|
|
|
|
|
|
|
|
/* Similar to 5.1, except using the side channels instead of back */
|
|
|
|
DevFmtX51Side = 0x80000000 | AL_5POINT1
|
2010-12-04 19:50:00 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
ALuint BytesFromDevFmt(enum DevFmtType type);
|
|
|
|
ALuint ChannelsFromDevFmt(enum DevFmtChannels chans);
|
|
|
|
static __inline ALuint FrameSizeFromDevFmt(enum DevFmtChannels chans,
|
|
|
|
enum DevFmtType type)
|
|
|
|
{
|
|
|
|
return ChannelsFromDevFmt(chans) * BytesFromDevFmt(type);
|
|
|
|
}
|
|
|
|
|
2010-05-01 19:59:41 -07:00
|
|
|
|
2011-03-12 20:37:22 -08:00
|
|
|
extern const struct EffectList {
|
|
|
|
const char *name;
|
|
|
|
int type;
|
|
|
|
const char *ename;
|
2011-03-12 20:54:49 -08:00
|
|
|
ALenum val;
|
2011-03-12 20:37:22 -08:00
|
|
|
} EffectList[];
|
|
|
|
|
|
|
|
|
2007-11-13 18:02:18 -08:00
|
|
|
struct ALCdevice_struct
|
|
|
|
{
|
2009-08-26 19:15:17 -07:00
|
|
|
ALCboolean Connected;
|
2007-11-13 18:02:18 -08:00
|
|
|
ALboolean IsCaptureDevice;
|
2011-03-11 00:13:44 -08:00
|
|
|
ALboolean IsLoopbackDevice;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2011-07-06 05:07:36 -07:00
|
|
|
CRITICAL_SECTION Mutex;
|
|
|
|
|
2007-11-13 18:02:18 -08:00
|
|
|
ALuint Frequency;
|
2008-02-12 19:38:27 -08:00
|
|
|
ALuint UpdateSize;
|
2009-09-16 22:58:54 -07:00
|
|
|
ALuint NumUpdates;
|
2010-12-04 19:50:00 -08:00
|
|
|
enum DevFmtChannels FmtChans;
|
|
|
|
enum DevFmtType FmtType;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2009-08-27 02:53:09 -07:00
|
|
|
ALCchar *szDeviceName;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2009-12-28 23:19:13 -08:00
|
|
|
ALCenum LastError;
|
|
|
|
|
2007-11-13 18:02:18 -08:00
|
|
|
// Maximum number of sources that can be created
|
|
|
|
ALuint MaxNoOfSources;
|
2009-06-07 14:53:22 -07:00
|
|
|
// Maximum number of slots that can be created
|
|
|
|
ALuint AuxiliaryEffectSlotMax;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2010-03-25 18:39:16 -07:00
|
|
|
ALCuint NumMonoSources;
|
|
|
|
ALCuint NumStereoSources;
|
2009-07-06 03:09:01 -07:00
|
|
|
ALuint NumAuxSends;
|
|
|
|
|
2010-05-01 19:59:41 -07:00
|
|
|
// Map of Buffers for this device
|
|
|
|
UIntMap BufferMap;
|
2009-08-15 09:14:08 -07:00
|
|
|
|
2010-05-18 17:41:06 -07:00
|
|
|
// Map of Effects for this device
|
|
|
|
UIntMap EffectMap;
|
2009-08-15 09:39:18 -07:00
|
|
|
|
2010-05-18 17:54:45 -07:00
|
|
|
// Map of Filters for this device
|
|
|
|
UIntMap FilterMap;
|
2009-08-15 09:39:18 -07:00
|
|
|
|
2009-09-15 19:06:47 -07:00
|
|
|
// Stereo-to-binaural filter
|
|
|
|
struct bs2b *Bs2b;
|
|
|
|
ALCint Bs2bLevel;
|
|
|
|
|
2011-05-01 18:18:37 -07:00
|
|
|
// Device flags
|
|
|
|
ALuint Flags;
|
2011-05-01 13:19:23 -07:00
|
|
|
|
2009-10-09 01:06:33 -07:00
|
|
|
// Dry path buffer mix
|
2010-12-01 18:33:17 -08:00
|
|
|
ALfloat DryBuffer[BUFFERSIZE][MAXCHANNELS];
|
2009-10-09 01:06:33 -07:00
|
|
|
|
2011-07-17 01:55:25 -07:00
|
|
|
enum Channel DevChannels[MAXCHANNELS];
|
2009-12-02 04:03:51 -08:00
|
|
|
|
2011-07-02 21:33:53 -07:00
|
|
|
enum Channel Speaker2Chan[MAXCHANNELS];
|
2011-05-21 17:45:54 -07:00
|
|
|
ALfloat PanningLUT[LUT_NUM][MAXCHANNELS];
|
2010-04-08 15:58:11 -07:00
|
|
|
ALuint NumChan;
|
|
|
|
|
2010-12-01 18:33:17 -08:00
|
|
|
ALfloat ClickRemoval[MAXCHANNELS];
|
|
|
|
ALfloat PendingClicks[MAXCHANNELS];
|
2010-08-14 21:30:14 -07:00
|
|
|
|
2009-10-20 11:54:04 -07:00
|
|
|
// Contexts created on this device
|
2011-08-28 19:28:41 -07:00
|
|
|
ALCcontext *ContextList;
|
|
|
|
ALuint NumContexts;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
|
|
|
BackendFuncs *Funcs;
|
|
|
|
void *ExtraData; // For the backend's use
|
2008-01-14 10:39:54 -08:00
|
|
|
|
|
|
|
ALCdevice *next;
|
2007-11-13 18:02:18 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
#define ALCdevice_OpenPlayback(a,b) ((a)->Funcs->OpenPlayback((a), (b)))
|
|
|
|
#define ALCdevice_ClosePlayback(a) ((a)->Funcs->ClosePlayback((a)))
|
2009-09-16 00:24:44 -07:00
|
|
|
#define ALCdevice_ResetPlayback(a) ((a)->Funcs->ResetPlayback((a)))
|
|
|
|
#define ALCdevice_StopPlayback(a) ((a)->Funcs->StopPlayback((a)))
|
2009-08-13 19:36:14 -07:00
|
|
|
#define ALCdevice_OpenCapture(a,b) ((a)->Funcs->OpenCapture((a), (b)))
|
2007-11-13 18:02:18 -08:00
|
|
|
#define ALCdevice_CloseCapture(a) ((a)->Funcs->CloseCapture((a)))
|
|
|
|
#define ALCdevice_StartCapture(a) ((a)->Funcs->StartCapture((a)))
|
|
|
|
#define ALCdevice_StopCapture(a) ((a)->Funcs->StopCapture((a)))
|
|
|
|
#define ALCdevice_CaptureSamples(a,b,c) ((a)->Funcs->CaptureSamples((a), (b), (c)))
|
|
|
|
#define ALCdevice_AvailableSamples(a) ((a)->Funcs->AvailableSamples((a)))
|
|
|
|
|
2011-05-01 18:18:37 -07:00
|
|
|
// Duplicate stereo sources on the side/rear channels
|
|
|
|
#define DEVICE_DUPLICATE_STEREO (1<<0)
|
|
|
|
// Use HRTF filters for mixing sounds
|
|
|
|
#define DEVICE_USE_HRTF (1<<1)
|
2011-05-03 02:29:26 -07:00
|
|
|
// Frequency was requested by the app or config file
|
|
|
|
#define DEVICE_FREQUENCY_REQUEST (1<<2)
|
2011-05-03 17:11:07 -07:00
|
|
|
// Channel configuration was requested by the config file
|
2011-05-06 01:59:32 -07:00
|
|
|
#define DEVICE_CHANNELS_REQUEST (1<<3)
|
2011-05-01 18:18:37 -07:00
|
|
|
|
2011-06-15 01:59:07 -07:00
|
|
|
// Specifies if the device is currently running
|
|
|
|
#define DEVICE_RUNNING (1<<31)
|
2011-05-01 18:18:37 -07:00
|
|
|
|
2007-11-13 18:02:18 -08:00
|
|
|
struct ALCcontext_struct
|
|
|
|
{
|
2011-08-28 15:44:03 -07:00
|
|
|
volatile RefCount ref;
|
|
|
|
|
2007-11-13 18:02:18 -08:00
|
|
|
ALlistener Listener;
|
|
|
|
|
2010-05-01 19:59:41 -07:00
|
|
|
UIntMap SourceMap;
|
2010-05-12 02:20:14 -07:00
|
|
|
UIntMap EffectSlotMap;
|
2008-01-15 16:22:39 -08:00
|
|
|
|
2007-11-13 18:02:18 -08:00
|
|
|
ALenum LastError;
|
|
|
|
|
2011-08-29 00:03:09 -07:00
|
|
|
ALenum UpdateSources;
|
2009-12-09 12:14:53 -08:00
|
|
|
|
2011-07-03 19:39:19 -07:00
|
|
|
enum DistanceModel DistanceModel;
|
2011-07-16 16:59:20 -07:00
|
|
|
ALboolean SourceDistanceModel;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
|
|
|
ALfloat DopplerFactor;
|
|
|
|
ALfloat DopplerVelocity;
|
|
|
|
ALfloat flSpeedOfSound;
|
2011-08-29 00:03:09 -07:00
|
|
|
ALenum DeferUpdates;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2010-06-06 00:17:50 -07:00
|
|
|
struct ALsource **ActiveSources;
|
|
|
|
ALsizei ActiveSourceCount;
|
|
|
|
ALsizei MaxActiveSources;
|
|
|
|
|
2007-11-13 18:02:18 -08:00
|
|
|
ALCdevice *Device;
|
2008-07-22 12:39:10 -07:00
|
|
|
const ALCchar *ExtensionList;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
|
|
|
ALCcontext *next;
|
|
|
|
};
|
|
|
|
|
2009-08-27 01:47:41 -07:00
|
|
|
void AppendDeviceList(const ALCchar *name);
|
|
|
|
void AppendAllDeviceList(const ALCchar *name);
|
|
|
|
void AppendCaptureDeviceList(const ALCchar *name);
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2009-12-28 23:19:13 -08:00
|
|
|
ALCvoid alcSetError(ALCdevice *device, ALenum errorCode);
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2011-07-06 02:58:43 -07:00
|
|
|
ALCvoid LockDevice(ALCdevice *device);
|
|
|
|
ALCvoid UnlockDevice(ALCdevice *device);
|
2011-06-30 18:10:04 -07:00
|
|
|
ALCvoid LockContext(ALCcontext *context);
|
|
|
|
ALCvoid UnlockContext(ALCcontext *context);
|
2007-11-13 18:02:18 -08:00
|
|
|
|
|
|
|
ALvoid *StartThread(ALuint (*func)(ALvoid*), ALvoid *ptr);
|
|
|
|
ALuint StopThread(ALvoid *thread);
|
|
|
|
|
2011-06-30 18:10:04 -07:00
|
|
|
ALCcontext *GetLockedContext(void);
|
2009-08-16 14:09:23 -07:00
|
|
|
|
2007-12-16 18:36:06 -08:00
|
|
|
typedef struct RingBuffer RingBuffer;
|
|
|
|
RingBuffer *CreateRingBuffer(ALsizei frame_size, ALsizei length);
|
|
|
|
void DestroyRingBuffer(RingBuffer *ring);
|
|
|
|
ALsizei RingBufferSize(RingBuffer *ring);
|
|
|
|
void WriteRingBuffer(RingBuffer *ring, const ALubyte *data, ALsizei len);
|
|
|
|
void ReadRingBuffer(RingBuffer *ring, ALubyte *data, ALsizei len);
|
|
|
|
|
2007-11-13 18:02:18 -08:00
|
|
|
void ReadALConfig(void);
|
|
|
|
void FreeALConfig(void);
|
2009-12-28 13:08:15 -08:00
|
|
|
int ConfigValueExists(const char *blockName, const char *keyName);
|
2007-11-13 18:02:18 -08:00
|
|
|
const char *GetConfigValue(const char *blockName, const char *keyName, const char *def);
|
|
|
|
int GetConfigValueInt(const char *blockName, const char *keyName, int def);
|
|
|
|
float GetConfigValueFloat(const char *blockName, const char *keyName, float def);
|
2009-12-26 07:42:57 -08:00
|
|
|
int GetConfigValueBool(const char *blockName, const char *keyName, int def);
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2010-05-12 07:27:12 -07:00
|
|
|
void SetRTPriority(void);
|
2009-12-01 23:15:09 -08:00
|
|
|
|
2009-12-07 04:19:33 -08:00
|
|
|
void SetDefaultChannelOrder(ALCdevice *device);
|
|
|
|
void SetDefaultWFXChannelOrder(ALCdevice *device);
|
|
|
|
|
2011-05-15 04:03:15 -07:00
|
|
|
const ALCchar *DevFmtTypeString(enum DevFmtType type);
|
|
|
|
const ALCchar *DevFmtChannelsString(enum DevFmtChannels chans);
|
|
|
|
|
2011-06-03 01:06:00 -07:00
|
|
|
#define HRIR_BITS (5)
|
|
|
|
#define HRIR_LENGTH (1<<HRIR_BITS)
|
2011-06-17 16:22:39 -07:00
|
|
|
#define HRIR_MASK (HRIR_LENGTH-1)
|
2011-06-03 01:06:00 -07:00
|
|
|
void InitHrtf(void);
|
2011-06-25 21:39:36 -07:00
|
|
|
ALCboolean IsHrtfCompatible(ALCdevice *device);
|
2011-07-16 16:24:01 -07:00
|
|
|
ALfloat CalcHrtfDelta(ALfloat oldGain, ALfloat newGain, const ALfloat olddir[3], const ALfloat newdir[3]);
|
2011-07-04 07:14:45 -07:00
|
|
|
void GetLerpedHrtfCoeffs(ALfloat elevation, ALfloat azimuth, ALfloat gain, ALfloat (*coeffs)[2], ALuint *delays);
|
2011-07-17 07:16:10 -07:00
|
|
|
ALuint GetMovingHrtfCoeffs(ALfloat elevation, ALfloat azimuth, ALfloat gain, ALfloat delta, ALint counter, ALfloat (*coeffs)[2], ALuint *delays, ALfloat (*coeffStep)[2], ALint *delayStep);
|
2011-05-01 13:21:56 -07:00
|
|
|
|
2010-01-12 09:05:57 -08:00
|
|
|
void al_print(const char *fname, unsigned int line, const char *fmt, ...)
|
|
|
|
PRINTF_STYLE(3,4);
|
|
|
|
#define AL_PRINT(...) al_print(__FILE__, __LINE__, __VA_ARGS__)
|
|
|
|
|
2011-08-20 03:59:46 -07:00
|
|
|
extern FILE *LogFile;
|
2011-07-10 21:30:25 -07:00
|
|
|
enum LogLevel {
|
|
|
|
NoLog,
|
|
|
|
LogError,
|
|
|
|
LogWarning,
|
|
|
|
LogTrace
|
|
|
|
};
|
|
|
|
extern enum LogLevel LogLevel;
|
|
|
|
|
|
|
|
#define TRACE(...) do { \
|
|
|
|
if(LogLevel >= LogTrace) \
|
|
|
|
AL_PRINT(__VA_ARGS__); \
|
|
|
|
} while(0)
|
|
|
|
|
|
|
|
#define WARN(...) do { \
|
|
|
|
if(LogLevel >= LogWarning) \
|
|
|
|
AL_PRINT(__VA_ARGS__); \
|
|
|
|
} while(0)
|
|
|
|
|
2011-07-13 01:43:00 -07:00
|
|
|
#define ERR(...) do { \
|
2011-07-10 21:30:25 -07:00
|
|
|
if(LogLevel >= LogError) \
|
|
|
|
AL_PRINT(__VA_ARGS__); \
|
|
|
|
} while(0)
|
|
|
|
|
|
|
|
|
2011-04-22 23:17:27 -07:00
|
|
|
extern ALdouble ConeScale;
|
2011-05-07 03:54:46 -07:00
|
|
|
extern ALdouble ZScale;
|
2011-04-22 23:17:27 -07:00
|
|
|
|
2011-08-20 03:59:46 -07:00
|
|
|
extern ALint RTPrioLevel;
|
|
|
|
|
2007-11-13 18:02:18 -08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|