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-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 05:47:07 -07:00
|
|
|
#ifndef ALC_SOFT_device_loopback
|
|
|
|
#define ALC_SOFT_device_loopback 1
|
2011-04-28 11:37:23 -07:00
|
|
|
#define ALC_FORMAT_CHANNELS_SOFT 0x1990
|
|
|
|
#define ALC_FORMAT_TYPE_SOFT 0x1991
|
|
|
|
typedef ALCdevice* (ALC_APIENTRY*LPALCLOOPBACKOPENDEVICESOFT)(void);
|
|
|
|
typedef ALCboolean (ALC_APIENTRY*LPALCISRENDERFORMATSUPPORTEDSOFT)(ALCdevice *device, ALCsizei freq, ALenum channels, ALenum type);
|
|
|
|
typedef void (ALC_APIENTRY*LPALCRENDERSAMPLESSOFT)(ALCdevice *device, ALCvoid *buffer, ALCsizei samples);
|
2011-03-11 00:13:44 -08:00
|
|
|
#ifdef AL_ALEXT_PROTOTYPES
|
2011-04-28 11:37:23 -07:00
|
|
|
ALC_API ALCdevice* ALC_APIENTRY alcLoopbackOpenDeviceSOFT(void);
|
|
|
|
ALC_API ALCboolean ALC_APIENTRY alcIsRenderFormatSupportedSOFT(ALCdevice *device, ALCsizei freq, ALenum channels, ALenum type);
|
|
|
|
ALC_API void ALC_APIENTRY alcRenderSamplesSOFT(ALCdevice *device, ALCvoid *buffer, ALCsizei samples);
|
2011-03-11 00:13:44 -08:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2011-03-16 11:29:22 -07:00
|
|
|
#ifndef AL_SOFT_buffer_samples
|
|
|
|
#define AL_SOFT_buffer_samples 1
|
|
|
|
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
|
|
|
|
|
2010-05-12 06:59:47 -07:00
|
|
|
#ifndef AL_EXT_sample_buffer_object
|
|
|
|
#define AL_EXT_sample_buffer_object 1
|
|
|
|
typedef ptrdiff_t ALintptrEXT;
|
|
|
|
typedef ptrdiff_t ALsizeiptrEXT;
|
|
|
|
#define AL_SAMPLE_SOURCE_EXT 0x1040
|
|
|
|
#define AL_SAMPLE_SINK_EXT 0x1041
|
|
|
|
#define AL_READ_ONLY_EXT 0x1042
|
|
|
|
#define AL_WRITE_ONLY_EXT 0x1043
|
|
|
|
#define AL_READ_WRITE_EXT 0x1044
|
|
|
|
#define AL_STREAM_WRITE_EXT 0x1045
|
|
|
|
#define AL_STREAM_READ_EXT 0x1046
|
|
|
|
#define AL_STREAM_COPY_EXT 0x1047
|
|
|
|
#define AL_STATIC_WRITE_EXT 0x1048
|
|
|
|
#define AL_STATIC_READ_EXT 0x1049
|
|
|
|
#define AL_STATIC_COPY_EXT 0x104A
|
|
|
|
#define AL_DYNAMIC_WRITE_EXT 0x104B
|
|
|
|
#define AL_DYNAMIC_READ_EXT 0x104C
|
|
|
|
#define AL_DYNAMIC_COPY_EXT 0x104D
|
|
|
|
typedef ALvoid (AL_APIENTRY*PFNALGENDATABUFFERSEXTPROC)(ALsizei n,ALuint *puiBuffers);
|
|
|
|
typedef ALvoid (AL_APIENTRY*PFNALDELETEDATABUFFERSEXTPROC)(ALsizei n, const ALuint *puiBuffers);
|
|
|
|
typedef ALboolean (AL_APIENTRY*PFNALISDATABUFFEREXTPROC)(ALuint uiBuffer);
|
|
|
|
typedef ALvoid (AL_APIENTRY*PFNALDATABUFFERDATAEXTPROC)(ALuint buffer,const ALvoid *data,ALsizeiptrEXT size,ALenum usage);
|
|
|
|
typedef ALvoid (AL_APIENTRY*PFNALDATABUFFERSUBDATAEXTPROC)(ALuint buffer, ALintptrEXT start, ALsizeiptrEXT length, const ALvoid *);
|
|
|
|
typedef ALvoid (AL_APIENTRY*PFNALGETDATABUFFERSUBDATAEXTPROC)(ALuint buffer, ALintptrEXT start, ALsizeiptrEXT length, ALvoid *);
|
|
|
|
typedef ALvoid (AL_APIENTRY*PFNALDATABUFFERFEXTPROC)(ALuint buffer, ALenum eParam, ALfloat flValue);
|
|
|
|
typedef ALvoid (AL_APIENTRY*PFNALDATABUFFERFVEXTPROC)(ALuint buffer, ALenum eParam, const ALfloat* flValues);
|
|
|
|
typedef ALvoid (AL_APIENTRY*PFNALDATABUFFERIEXTPROC)(ALuint buffer, ALenum eParam, ALint lValue);
|
|
|
|
typedef ALvoid (AL_APIENTRY*PFNALDATABUFFERIVEXTPROC)(ALuint buffer, ALenum eParam, const ALint* plValues);
|
|
|
|
typedef ALvoid (AL_APIENTRY*PFNALGETDATABUFFERFEXTPROC)(ALuint buffer, ALenum eParam, ALfloat *pflValue);
|
|
|
|
typedef ALvoid (AL_APIENTRY*PFNALGETDATABUFFERFVEXTPROC)(ALuint buffer, ALenum eParam, ALfloat* pflValues);
|
|
|
|
typedef ALvoid (AL_APIENTRY*PFNALGETDATABUFFERIEXTPROC)(ALuint buffer, ALenum eParam, ALint *plValue);
|
|
|
|
typedef ALvoid (AL_APIENTRY*PFNALGETDATABUFFERIVEXTPROC)(ALuint buffer, ALenum eParam, ALint* plValues);
|
|
|
|
typedef ALvoid (AL_APIENTRY*PFNALSELECTDATABUFFEREXTPROC)(ALenum target, ALuint uiBuffer);
|
|
|
|
typedef ALvoid* (AL_APIENTRY*PFNALMAPDATABUFFEREXTPROC)(ALuint uiBuffer, ALintptrEXT start, ALsizeiptrEXT length, ALenum access);
|
|
|
|
typedef ALvoid (AL_APIENTRY*PFNALUNMAPDATABUFFEREXTPROC)(ALuint uiBuffer);
|
|
|
|
#ifdef AL_ALEXT_PROTOTYPES
|
|
|
|
AL_API ALvoid AL_APIENTRY alGenDatabuffersEXT(ALsizei n,ALuint *puiBuffers);
|
|
|
|
AL_API ALvoid AL_APIENTRY alDeleteDatabuffersEXT(ALsizei n, const ALuint *puiBuffers);
|
|
|
|
AL_API ALboolean AL_APIENTRY alIsDatabufferEXT(ALuint uiBuffer);
|
|
|
|
AL_API ALvoid AL_APIENTRY alDatabufferDataEXT(ALuint buffer,const ALvoid *data,ALsizeiptrEXT size,ALenum usage);
|
|
|
|
AL_API ALvoid AL_APIENTRY alDatabufferSubDataEXT(ALuint buffer, ALintptrEXT start, ALsizeiptrEXT length, const ALvoid *data);
|
|
|
|
AL_API ALvoid AL_APIENTRY alGetDatabufferSubDataEXT(ALuint buffer, ALintptrEXT start, ALsizeiptrEXT length, ALvoid *data);
|
|
|
|
AL_API ALvoid AL_APIENTRY alDatabufferfEXT(ALuint buffer, ALenum eParam, ALfloat flValue);
|
|
|
|
AL_API ALvoid AL_APIENTRY alDatabufferfvEXT(ALuint buffer, ALenum eParam, const ALfloat* flValues);
|
|
|
|
AL_API ALvoid AL_APIENTRY alDatabufferiEXT(ALuint buffer, ALenum eParam, ALint lValue);
|
|
|
|
AL_API ALvoid AL_APIENTRY alDatabufferivEXT(ALuint buffer, ALenum eParam, const ALint* plValues);
|
|
|
|
AL_API ALvoid AL_APIENTRY alGetDatabufferfEXT(ALuint buffer, ALenum eParam, ALfloat *pflValue);
|
|
|
|
AL_API ALvoid AL_APIENTRY alGetDatabufferfvEXT(ALuint buffer, ALenum eParam, ALfloat* pflValues);
|
|
|
|
AL_API ALvoid AL_APIENTRY alGetDatabufferiEXT(ALuint buffer, ALenum eParam, ALint *plValue);
|
|
|
|
AL_API ALvoid AL_APIENTRY alGetDatabufferivEXT(ALuint buffer, ALenum eParam, ALint* plValues);
|
|
|
|
AL_API ALvoid AL_APIENTRY alSelectDatabufferEXT(ALenum target, ALuint uiBuffer);
|
|
|
|
AL_API ALvoid* AL_APIENTRY alMapDatabufferEXT(ALuint uiBuffer, ALintptrEXT start, ALsizeiptrEXT length, ALenum access);
|
|
|
|
AL_API ALvoid AL_APIENTRY alUnmapDatabufferEXT(ALuint uiBuffer);
|
|
|
|
#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
|
|
|
|
|
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
|
|
|
|
|
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>
|
|
|
|
|
2009-09-12 16:45:46 -07:00
|
|
|
typedef DWORD tls_type;
|
|
|
|
#define tls_create(x) (*(x) = TlsAlloc())
|
|
|
|
#define tls_delete(x) TlsFree((x))
|
|
|
|
#define tls_get(x) TlsGetValue((x))
|
|
|
|
#define tls_set(x, a) TlsSetValue((x), (a))
|
|
|
|
|
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
|
|
|
|
2009-09-12 16:45:46 -07:00
|
|
|
typedef pthread_key_t tls_type;
|
|
|
|
#define tls_create(x) pthread_key_create((x), NULL)
|
|
|
|
#define tls_delete(x) pthread_key_delete((x))
|
|
|
|
#define tls_get(x) pthread_getspecific((x))
|
|
|
|
#define tls_set(x, a) pthread_setspecific((x), (a))
|
|
|
|
|
2007-11-13 18:02:18 -08:00
|
|
|
typedef pthread_mutex_t CRITICAL_SECTION;
|
2010-05-16 06:02:27 -07:00
|
|
|
static __inline void EnterCriticalSection(CRITICAL_SECTION *cs)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2007-11-30 03:04:10 -08:00
|
|
|
int ret;
|
|
|
|
ret = pthread_mutex_lock(cs);
|
|
|
|
assert(ret == 0);
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
2010-05-16 06:02:27 -07:00
|
|
|
static __inline void LeaveCriticalSection(CRITICAL_SECTION *cs)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2007-11-30 03:04:10 -08:00
|
|
|
int ret;
|
|
|
|
ret = pthread_mutex_unlock(cs);
|
|
|
|
assert(ret == 0);
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
2010-05-16 06:02:27 -07:00
|
|
|
static __inline void InitializeCriticalSection(CRITICAL_SECTION *cs)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
|
|
|
pthread_mutexattr_t attrib;
|
2007-11-30 03:04:10 -08:00
|
|
|
int ret;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2007-11-30 03:04:10 -08:00
|
|
|
ret = pthread_mutexattr_init(&attrib);
|
|
|
|
assert(ret == 0);
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2007-11-30 03:04:10 -08:00
|
|
|
ret = pthread_mutexattr_settype(&attrib, PTHREAD_MUTEX_RECURSIVE);
|
2008-05-15 21:35:51 -07:00
|
|
|
#ifdef HAVE_PTHREAD_NP_H
|
|
|
|
if(ret != 0)
|
|
|
|
ret = pthread_mutexattr_setkind_np(&attrib, PTHREAD_MUTEX_RECURSIVE);
|
|
|
|
#endif
|
2007-11-30 03:04:10 -08:00
|
|
|
assert(ret == 0);
|
|
|
|
ret = pthread_mutex_init(cs, &attrib);
|
|
|
|
assert(ret == 0);
|
2007-11-13 18:02:18 -08:00
|
|
|
|
|
|
|
pthread_mutexattr_destroy(&attrib);
|
|
|
|
}
|
|
|
|
|
2010-05-16 06:02:27 -07:00
|
|
|
static __inline void DeleteCriticalSection(CRITICAL_SECTION *cs)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2007-11-30 03:04:10 -08:00
|
|
|
int ret;
|
|
|
|
ret = pthread_mutex_destroy(cs);
|
|
|
|
assert(ret == 0);
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
|
2008-01-11 06:01:51 -08:00
|
|
|
/* NOTE: This wrapper isn't quite accurate as it returns an ALuint, as opposed
|
|
|
|
* to the expected DWORD. Both are defined as unsigned 32-bit types, however.
|
|
|
|
* Additionally, Win32 is supposed to measure the time since Windows started,
|
|
|
|
* as opposed to the actual time. */
|
2010-05-16 06:02:27 -07:00
|
|
|
static __inline ALuint timeGetTime(void)
|
2008-01-11 06:01:51 -08:00
|
|
|
{
|
2010-03-17 12:04:33 -07:00
|
|
|
#if _POSIX_TIMERS > 0
|
2009-11-01 10:03:05 -08:00
|
|
|
struct timespec ts;
|
2010-07-18 06:21:16 -07:00
|
|
|
int ret = -1;
|
2009-11-01 10:03:05 -08:00
|
|
|
|
2010-07-18 06:21:16 -07:00
|
|
|
#if defined(_POSIX_MONOTONIC_CLOCK) && (_POSIX_MONOTONIC_CLOCK >= 0)
|
|
|
|
#if _POSIX_MONOTONIC_CLOCK == 0
|
2011-02-08 00:22:22 -08:00
|
|
|
static int hasmono = 0;
|
2010-07-18 06:21:16 -07:00
|
|
|
if(hasmono > 0 || (hasmono == 0 &&
|
|
|
|
(hasmono=sysconf(_SC_MONOTONIC_CLOCK)) > 0))
|
|
|
|
#endif
|
|
|
|
ret = clock_gettime(CLOCK_MONOTONIC, &ts);
|
|
|
|
#endif
|
|
|
|
if(ret != 0)
|
|
|
|
ret = clock_gettime(CLOCK_REALTIME, &ts);
|
2009-11-01 10:03:05 -08:00
|
|
|
assert(ret == 0);
|
|
|
|
|
|
|
|
return ts.tv_nsec/1000000 + ts.tv_sec*1000;
|
|
|
|
#else
|
|
|
|
struct timeval tv;
|
2010-07-18 06:21:16 -07:00
|
|
|
int ret;
|
2008-01-11 06:01:51 -08:00
|
|
|
|
|
|
|
ret = gettimeofday(&tv, NULL);
|
|
|
|
assert(ret == 0);
|
|
|
|
|
|
|
|
return tv.tv_usec/1000 + tv.tv_sec*1000;
|
2009-11-01 10:03:05 -08:00
|
|
|
#endif
|
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;
|
|
|
|
}
|
2007-11-13 18:02:18 -08:00
|
|
|
#define min(x,y) (((x)<(y))?(x):(y))
|
|
|
|
#define max(x,y) (((x)>(y))?(x):(y))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#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
|
|
|
|
2007-11-13 18:02:18 -08:00
|
|
|
#define SWMIXER_OUTPUT_RATE 44100
|
|
|
|
|
|
|
|
#define SPEEDOFSOUNDMETRESPERSEC (343.3f)
|
2008-09-22 17:01:47 -07:00
|
|
|
#define AIRABSORBGAINDBHF (-0.05f)
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2008-07-24 00:41:25 -07:00
|
|
|
#define LOWPASSFREQCUTOFF (5000)
|
|
|
|
|
2009-12-08 14:18:07 -08:00
|
|
|
#define DEFAULT_HEAD_DAMPEN (0.25f)
|
|
|
|
|
2008-07-24 00:41:25 -07:00
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-11-13 18:02:18 -08:00
|
|
|
typedef struct {
|
|
|
|
ALCboolean (*OpenPlayback)(ALCdevice*, const ALCchar*);
|
|
|
|
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
|
|
|
|
2009-08-13 19:36:14 -07:00
|
|
|
ALCboolean (*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;
|
|
|
|
|
2009-08-27 06:09:33 -07:00
|
|
|
enum {
|
|
|
|
DEVICE_PROBE,
|
|
|
|
ALL_DEVICE_PROBE,
|
|
|
|
CAPTURE_DEVICE_PROBE
|
|
|
|
};
|
|
|
|
|
2007-12-06 22:22:11 -08:00
|
|
|
void alc_alsa_init(BackendFuncs *func_list);
|
2009-08-26 23:45:00 -07:00
|
|
|
void alc_alsa_deinit(void);
|
2009-08-27 06:09:33 -07:00
|
|
|
void alc_alsa_probe(int type);
|
2007-12-06 22:22:11 -08:00
|
|
|
void alc_oss_init(BackendFuncs *func_list);
|
2009-08-26 23:45:00 -07:00
|
|
|
void alc_oss_deinit(void);
|
2009-08-27 06:09:33 -07:00
|
|
|
void alc_oss_probe(int type);
|
2008-09-07 14:34:14 -07:00
|
|
|
void alc_solaris_init(BackendFuncs *func_list);
|
2009-08-26 23:45:00 -07:00
|
|
|
void alc_solaris_deinit(void);
|
2010-01-12 08:28:07 -08:00
|
|
|
void alc_solaris_probe(int type);
|
2007-12-06 22:22:11 -08:00
|
|
|
void alcDSoundInit(BackendFuncs *func_list);
|
2009-08-26 23:45:00 -07:00
|
|
|
void alcDSoundDeinit(void);
|
2009-08-27 06:09:33 -07:00
|
|
|
void alcDSoundProbe(int type);
|
2007-12-06 22:22:11 -08:00
|
|
|
void alcWinMMInit(BackendFuncs *FuncList);
|
2009-08-26 23:45:00 -07:00
|
|
|
void alcWinMMDeinit(void);
|
2009-08-27 06:09:33 -07:00
|
|
|
void alcWinMMProbe(int type);
|
2009-03-10 00:55:29 -07:00
|
|
|
void alc_pa_init(BackendFuncs *func_list);
|
2009-08-26 23:45:00 -07:00
|
|
|
void alc_pa_deinit(void);
|
2009-08-27 06:09:33 -07:00
|
|
|
void alc_pa_probe(int type);
|
2008-01-11 09:32:22 -08:00
|
|
|
void alc_wave_init(BackendFuncs *func_list);
|
2009-08-26 23:45:00 -07:00
|
|
|
void alc_wave_deinit(void);
|
2009-08-27 06:09:33 -07:00
|
|
|
void alc_wave_probe(int type);
|
2009-04-16 05:17:42 -07:00
|
|
|
void alc_pulse_init(BackendFuncs *func_list);
|
2009-08-26 23:45:00 -07:00
|
|
|
void alc_pulse_deinit(void);
|
2009-08-27 06:09:33 -07:00
|
|
|
void alc_pulse_probe(int type);
|
2011-03-15 04:58:56 -07:00
|
|
|
void alc_ca_init(BackendFuncs *func_list);
|
|
|
|
void alc_ca_deinit(void);
|
|
|
|
void alc_ca_probe(int type);
|
2010-05-28 16:41:52 -07:00
|
|
|
void alc_null_init(BackendFuncs *func_list);
|
|
|
|
void alc_null_deinit(void);
|
|
|
|
void alc_null_probe(int type);
|
2011-03-11 00:13:44 -08:00
|
|
|
void alc_loopback_init(BackendFuncs *func_list);
|
|
|
|
void alc_loopback_deinit(void);
|
|
|
|
void alc_loopback_probe(int type);
|
2007-12-06 22:22:11 -08:00
|
|
|
|
|
|
|
|
2010-05-01 19:59:41 -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);
|
2010-11-28 19:52:17 -08:00
|
|
|
ALvoid *LookupUIntMapKey(UIntMap *map, ALuint key);
|
2010-05-01 19:59:41 -07: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,
|
|
|
|
DevFmtX71 = AL_7POINT1
|
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
|
|
|
|
|
|
|
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
|
|
|
|
2010-06-03 19:35:08 -07:00
|
|
|
// Map of Databuffers for this device
|
|
|
|
UIntMap DatabufferMap;
|
2009-08-16 00:54:08 -07:00
|
|
|
|
2009-09-15 19:06:47 -07:00
|
|
|
// Stereo-to-binaural filter
|
|
|
|
struct bs2b *Bs2b;
|
|
|
|
ALCint Bs2bLevel;
|
|
|
|
|
2009-12-08 14:18:07 -08:00
|
|
|
// Simulated dampening from head occlusion
|
|
|
|
ALfloat HeadDampen;
|
|
|
|
|
2010-04-20 03:57:40 -07:00
|
|
|
// Duplicate stereo sources on the side/rear channels
|
|
|
|
ALboolean DuplicateStereo;
|
|
|
|
|
2011-05-01 13:19:23 -07:00
|
|
|
// Use HRTF filters for mixing sounds
|
|
|
|
ALboolean UseHRTF;
|
|
|
|
|
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
|
|
|
|
2010-12-01 18:33:17 -08:00
|
|
|
ALuint DevChannels[MAXCHANNELS];
|
2009-12-02 04:03:51 -08:00
|
|
|
|
2010-12-01 18:33:17 -08:00
|
|
|
ALfloat ChannelMatrix[MAXCHANNELS][MAXCHANNELS];
|
2010-04-08 14:47:12 -07:00
|
|
|
|
2010-12-01 18:33:17 -08:00
|
|
|
Channel Speaker2Chan[MAXCHANNELS];
|
|
|
|
ALfloat PanningLUT[MAXCHANNELS * LUT_NUM];
|
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
|
|
|
|
ALCcontext **Contexts;
|
|
|
|
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)))
|
|
|
|
|
|
|
|
struct ALCcontext_struct
|
|
|
|
{
|
|
|
|
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
|
|
|
|
2009-08-16 00:54:08 -07:00
|
|
|
struct ALdatabuffer *SampleSource;
|
|
|
|
struct ALdatabuffer *SampleSink;
|
|
|
|
|
2007-11-13 18:02:18 -08:00
|
|
|
ALenum LastError;
|
|
|
|
|
2009-12-09 12:14:53 -08:00
|
|
|
ALboolean Suspended;
|
|
|
|
|
2007-11-13 18:02:18 -08:00
|
|
|
ALenum DistanceModel;
|
2009-11-27 20:05:21 -08:00
|
|
|
ALboolean SourceDistanceModel;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
|
|
|
ALfloat DopplerFactor;
|
|
|
|
ALfloat DopplerVelocity;
|
|
|
|
ALfloat flSpeedOfSound;
|
|
|
|
|
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
|
|
|
|
|
|
|
ALCvoid SuspendContext(ALCcontext *context);
|
|
|
|
ALCvoid ProcessContext(ALCcontext *context);
|
|
|
|
|
|
|
|
ALvoid *StartThread(ALuint (*func)(ALvoid*), ALvoid *ptr);
|
|
|
|
ALuint StopThread(ALvoid *thread);
|
|
|
|
|
2009-08-16 14:09:23 -07:00
|
|
|
ALCcontext *GetContextSuspended(void);
|
|
|
|
|
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-03-16 11:29:22 -07:00
|
|
|
ALboolean IsValidType(ALenum type);
|
|
|
|
ALboolean IsValidChannels(ALenum type);
|
|
|
|
|
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-04-22 23:17:27 -07:00
|
|
|
extern ALdouble ConeScale;
|
|
|
|
|
2007-11-13 18:02:18 -08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|