2 * OpenAL cross platform audio library
3 * Copyright (C) 2011 by authors.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
18 * Or go to http://www.gnu.org/copyleft/lgpl.html
34 #if defined(HAVE_GUIDDEF_H) || defined(HAVE_INITGUID_H)
43 DEFINE_GUID(KSDATAFORMAT_SUBTYPE_PCM
, 0x00000001, 0x0000, 0x0010, 0x80,0x00, 0x00,0xaa,0x00,0x38,0x9b,0x71);
44 DEFINE_GUID(KSDATAFORMAT_SUBTYPE_IEEE_FLOAT
, 0x00000003, 0x0000, 0x0010, 0x80,0x00, 0x00,0xaa,0x00,0x38,0x9b,0x71);
46 DEFINE_GUID(IID_IDirectSoundNotify
, 0xb0210783, 0x89cd, 0x11d0, 0xaf,0x08, 0x00,0xa0,0xc9,0x25,0xcd,0x16);
48 DEFINE_GUID(CLSID_MMDeviceEnumerator
, 0xbcde0395, 0xe52f, 0x467c, 0x8e,0x3d, 0xc4,0x57,0x92,0x91,0x69,0x2e);
49 DEFINE_GUID(IID_IMMDeviceEnumerator
, 0xa95664d2, 0x9614, 0x4f35, 0xa7,0x46, 0xde,0x8d,0xb6,0x36,0x17,0xe6);
50 DEFINE_GUID(IID_IAudioClient
, 0x1cb9ad4c, 0xdbfa, 0x4c32, 0xb1,0x78, 0xc2,0xf5,0x68,0xa7,0x03,0xb2);
51 DEFINE_GUID(IID_IAudioRenderClient
, 0xf294acfc, 0x3146, 0x4483, 0xa7,0xbf, 0xad,0xdc,0xa7,0xc2,0x60,0xe2);
54 #include <devpropdef.h>
56 DEFINE_DEVPROPKEY(DEVPKEY_Device_FriendlyName
, 0xa45c254e, 0xdf1c, 0x4efd, 0x80,0x20, 0x67,0xd1,0x46,0xa8,0x50,0xe0, 14);
63 ALuint CPUCapFlags
= 0;
66 void FillCPUCaps(ALuint capfilter
)
70 #if defined(__i386__) || defined(__x86_64__) || defined(_M_IX86) || defined(_M_X64)
71 /* FIXME: We really should get this for all available CPUs in case different
72 * CPUs have different caps (is that possible on one machine?). */
76 char str
[sizeof(unsigned int[4])];
79 if(!__get_cpuid(0, &cpuinf
[0].regs
[0], &cpuinf
[0].regs
[1], &cpuinf
[0].regs
[2], &cpuinf
[0].regs
[3]))
80 ERR("Failed to get CPUID\n");
83 unsigned int maxfunc
= cpuinf
[0].regs
[0];
84 unsigned int maxextfunc
= 0;
86 if(__get_cpuid(0x80000000, &cpuinf
[0].regs
[0], &cpuinf
[0].regs
[1], &cpuinf
[0].regs
[2], &cpuinf
[0].regs
[3]))
87 maxextfunc
= cpuinf
[0].regs
[0];
88 TRACE("Detected max CPUID function: 0x%x (ext. 0x%x)\n", maxfunc
, maxextfunc
);
90 TRACE("Vendor ID: \"%.4s%.4s%.4s\"\n", cpuinf
[0].str
+4, cpuinf
[0].str
+12, cpuinf
[0].str
+8);
91 if(maxextfunc
>= 0x80000004 &&
92 __get_cpuid(0x80000002, &cpuinf
[0].regs
[0], &cpuinf
[0].regs
[1], &cpuinf
[0].regs
[2], &cpuinf
[0].regs
[3]) &&
93 __get_cpuid(0x80000003, &cpuinf
[1].regs
[0], &cpuinf
[1].regs
[1], &cpuinf
[1].regs
[2], &cpuinf
[1].regs
[3]) &&
94 __get_cpuid(0x80000004, &cpuinf
[2].regs
[0], &cpuinf
[2].regs
[1], &cpuinf
[2].regs
[2], &cpuinf
[2].regs
[3]))
95 TRACE("Name: \"%.16s%.16s%.16s\"\n", cpuinf
[0].str
, cpuinf
[1].str
, cpuinf
[2].str
);
98 __get_cpuid(1, &cpuinf
[0].regs
[0], &cpuinf
[0].regs
[1], &cpuinf
[0].regs
[2], &cpuinf
[0].regs
[3]))
101 if((cpuinf
[0].regs
[3]&bit_SSE
))
109 /* Assume Neon support if compiled with it */
110 caps
|= CPU_CAP_NEON
;
113 TRACE("Got caps:%s%s%s\n", ((caps
&CPU_CAP_SSE
)?((capfilter
&CPU_CAP_SSE
)?" SSE":" (SSE)"):""),
114 ((caps
&CPU_CAP_NEON
)?((capfilter
&CPU_CAP_NEON
)?" Neon":" (Neon)"):""),
115 ((!caps
)?" -none-":""));
116 CPUCapFlags
= caps
& capfilter
;
120 void *al_malloc(size_t alignment
, size_t size
)
122 #if defined(HAVE_ALIGNED_ALLOC)
123 size
= (size
+(alignment
-1))&~(alignment
-1);
124 return aligned_alloc(alignment
, size
);
125 #elif defined(HAVE_POSIX_MEMALIGN)
127 if(posix_memalign(&ret
, alignment
, size
) == 0)
130 #elif defined(HAVE__ALIGNED_MALLOC)
131 return _aligned_malloc(size
, alignment
);
133 char *ret
= malloc(size
+alignment
);
137 while(((ALintptrEXT
)ret
&(alignment
-1)) != 0)
144 void *al_calloc(size_t alignment
, size_t size
)
146 void *ret
= al_malloc(alignment
, size
);
147 if(ret
) memset(ret
, 0, size
);
151 void al_free(void *ptr
)
153 #if defined(HAVE_ALIGNED_ALLOC) || defined(HAVE_POSIX_MEMALIGN)
155 #elif defined(HAVE__ALIGNED_MALLOC)
163 } while(*finder
== 0x55);
170 void pthread_once(pthread_once_t
*once
, void (*callback
)(void))
173 while((ret
=InterlockedExchange(once
, 1)) == 1)
177 InterlockedExchange(once
, 2);
181 int pthread_key_create(pthread_key_t
*key
, void (*callback
)(void*))
185 InsertUIntMapEntry(&TlsDestructor
, *key
, callback
);
189 int pthread_key_delete(pthread_key_t key
)
191 InsertUIntMapEntry(&TlsDestructor
, key
, NULL
);
196 void *pthread_getspecific(pthread_key_t key
)
197 { return TlsGetValue(key
); }
199 int pthread_setspecific(pthread_key_t key
, void *val
)
201 TlsSetValue(key
, val
);
206 void *LoadLib(const char *name
)
207 { return LoadLibraryA(name
); }
208 void CloseLib(void *handle
)
209 { FreeLibrary((HANDLE
)handle
); }
210 void *GetSymbol(void *handle
, const char *name
)
214 ret
= (void*)GetProcAddress((HANDLE
)handle
, name
);
216 ERR("Failed to load %s\n", name
);
220 WCHAR
*strdupW(const WCHAR
*str
)
230 ret
= calloc(sizeof(WCHAR
), len
+1);
232 memcpy(ret
, str
, sizeof(WCHAR
)*len
);
239 #ifdef HAVE_PTHREAD_NP_H
240 #include <pthread_np.h>
244 void InitializeCriticalSection(CRITICAL_SECTION
*cs
)
246 pthread_mutexattr_t attrib
;
249 ret
= pthread_mutexattr_init(&attrib
);
252 ret
= pthread_mutexattr_settype(&attrib
, PTHREAD_MUTEX_RECURSIVE
);
253 #ifdef HAVE_PTHREAD_NP_H
255 ret
= pthread_mutexattr_setkind_np(&attrib
, PTHREAD_MUTEX_RECURSIVE
);
258 ret
= pthread_mutex_init(cs
, &attrib
);
261 pthread_mutexattr_destroy(&attrib
);
263 void DeleteCriticalSection(CRITICAL_SECTION
*cs
)
266 ret
= pthread_mutex_destroy(cs
);
269 void EnterCriticalSection(CRITICAL_SECTION
*cs
)
272 ret
= pthread_mutex_lock(cs
);
275 void LeaveCriticalSection(CRITICAL_SECTION
*cs
)
278 ret
= pthread_mutex_unlock(cs
);
282 /* NOTE: This wrapper isn't quite accurate as it returns an ALuint, as opposed
283 * to the expected DWORD. Both are defined as unsigned 32-bit types, however.
284 * Additionally, Win32 is supposed to measure the time since Windows started,
285 * as opposed to the actual time. */
286 ALuint
timeGetTime(void)
288 #if _POSIX_TIMERS > 0
292 #if defined(_POSIX_MONOTONIC_CLOCK) && (_POSIX_MONOTONIC_CLOCK >= 0)
293 #if _POSIX_MONOTONIC_CLOCK == 0
294 static int hasmono
= 0;
295 if(hasmono
> 0 || (hasmono
== 0 &&
296 (hasmono
=sysconf(_SC_MONOTONIC_CLOCK
)) > 0))
298 ret
= clock_gettime(CLOCK_MONOTONIC
, &ts
);
301 ret
= clock_gettime(CLOCK_REALTIME
, &ts
);
304 return ts
.tv_nsec
/1000000 + ts
.tv_sec
*1000;
309 ret
= gettimeofday(&tv
, NULL
);
312 return tv
.tv_usec
/1000 + tv
.tv_sec
*1000;
318 struct timespec tv
, rem
;
319 tv
.tv_nsec
= (t
*1000000)%1000000000;
322 while(nanosleep(&tv
, &rem
) == -1 && errno
== EINTR
)
328 void *LoadLib(const char *name
)
334 handle
= dlopen(name
, RTLD_NOW
);
335 if((err
=dlerror()) != NULL
)
339 void CloseLib(void *handle
)
341 void *GetSymbol(void *handle
, const char *name
)
347 sym
= dlsym(handle
, name
);
348 if((err
=dlerror()) != NULL
)
350 WARN("Failed to load %s: %s\n", name
, err
);
360 void al_print(const char *func
, const char *fmt
, ...)
365 i
= snprintf(str
, sizeof(str
), "AL lib: %s: ", func
);
366 if(i
< (int)sizeof(str
) && i
> 0)
370 vsnprintf(str
+i
, sizeof(str
)-i
, fmt
, ap
);
373 str
[sizeof(str
)-1] = 0;
375 fprintf(LogFile
, "%s", str
);
380 void SetRTPriority(void)
382 ALboolean failed
= AL_FALSE
;
386 failed
= !SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_TIME_CRITICAL
);
387 #elif defined(HAVE_PTHREAD_SETSCHEDPARAM) && !defined(__OpenBSD__)
390 struct sched_param param
;
391 /* Use the minimum real-time priority possible for now (on Linux this
392 * should be 1 for SCHED_RR) */
393 param
.sched_priority
= sched_get_priority_min(SCHED_RR
);
394 failed
= !!pthread_setschedparam(pthread_self(), SCHED_RR
, ¶m
);
397 /* Real-time priority not available */
398 failed
= (RTPrioLevel
>0);
401 ERR("Failed to set priority level for thread\n");
405 static void Lock(volatile ALenum
*l
)
407 while(ExchangeInt(l
, AL_TRUE
) == AL_TRUE
)
411 static void Unlock(volatile ALenum
*l
)
413 ExchangeInt(l
, AL_FALSE
);
416 void RWLockInit(RWLock
*lock
)
418 lock
->read_count
= 0;
419 lock
->write_count
= 0;
420 lock
->read_lock
= AL_FALSE
;
421 lock
->read_entry_lock
= AL_FALSE
;
422 lock
->write_lock
= AL_FALSE
;
425 void ReadLock(RWLock
*lock
)
427 Lock(&lock
->read_entry_lock
);
428 Lock(&lock
->read_lock
);
429 if(IncrementRef(&lock
->read_count
) == 1)
430 Lock(&lock
->write_lock
);
431 Unlock(&lock
->read_lock
);
432 Unlock(&lock
->read_entry_lock
);
435 void ReadUnlock(RWLock
*lock
)
437 if(DecrementRef(&lock
->read_count
) == 0)
438 Unlock(&lock
->write_lock
);
441 void WriteLock(RWLock
*lock
)
443 if(IncrementRef(&lock
->write_count
) == 1)
444 Lock(&lock
->read_lock
);
445 Lock(&lock
->write_lock
);
448 void WriteUnlock(RWLock
*lock
)
450 Unlock(&lock
->write_lock
);
451 if(DecrementRef(&lock
->write_count
) == 0)
452 Unlock(&lock
->read_lock
);
456 void InitUIntMap(UIntMap
*map
, ALsizei limit
)
462 RWLockInit(&map
->lock
);
465 void ResetUIntMap(UIntMap
*map
)
467 WriteLock(&map
->lock
);
472 WriteUnlock(&map
->lock
);
475 ALenum
InsertUIntMapEntry(UIntMap
*map
, ALuint key
, ALvoid
*value
)
479 WriteLock(&map
->lock
);
483 ALsizei high
= map
->size
- 1;
486 ALsizei mid
= low
+ (high
-low
)/2;
487 if(map
->array
[mid
].key
< key
)
492 if(map
->array
[low
].key
< key
)
497 if(pos
== map
->size
|| map
->array
[pos
].key
!= key
)
499 if(map
->size
== map
->limit
)
501 WriteUnlock(&map
->lock
);
502 return AL_OUT_OF_MEMORY
;
505 if(map
->size
== map
->maxsize
)
510 newsize
= (map
->maxsize
? (map
->maxsize
<<1) : 4);
511 if(newsize
>= map
->maxsize
)
512 temp
= realloc(map
->array
, newsize
*sizeof(map
->array
[0]));
515 WriteUnlock(&map
->lock
);
516 return AL_OUT_OF_MEMORY
;
519 map
->maxsize
= newsize
;
523 memmove(&map
->array
[pos
+1], &map
->array
[pos
],
524 (map
->size
-pos
)*sizeof(map
->array
[0]));
527 map
->array
[pos
].key
= key
;
528 map
->array
[pos
].value
= value
;
529 WriteUnlock(&map
->lock
);
534 ALvoid
*RemoveUIntMapKey(UIntMap
*map
, ALuint key
)
537 WriteLock(&map
->lock
);
541 ALsizei high
= map
->size
- 1;
544 ALsizei mid
= low
+ (high
-low
)/2;
545 if(map
->array
[mid
].key
< key
)
550 if(map
->array
[low
].key
== key
)
552 ptr
= map
->array
[low
].value
;
553 if(low
< map
->size
-1)
554 memmove(&map
->array
[low
], &map
->array
[low
+1],
555 (map
->size
-1-low
)*sizeof(map
->array
[0]));
559 WriteUnlock(&map
->lock
);
563 ALvoid
*LookupUIntMapKey(UIntMap
*map
, ALuint key
)
566 ReadLock(&map
->lock
);
570 ALsizei high
= map
->size
- 1;
573 ALsizei mid
= low
+ (high
-low
)/2;
574 if(map
->array
[mid
].key
< key
)
579 if(map
->array
[low
].key
== key
)
580 ptr
= map
->array
[low
].value
;
582 ReadUnlock(&map
->lock
);