aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Better pack HRTF mixing propertiesChris Robinson2014-05-034-70/+65
|
* Clamp the current and target gain lower bound to epsilonChris Robinson2014-05-032-11/+11
| | | | | Should give a bit more wiggle room for the gain stepping to get lower than the silence threshold.
* Make sure all gain steps are applied with the SSE and Neon mixersChris Robinson2014-05-032-44/+22
|
* Revert e9aee578a797c694655538cd0a00ad6c0bf6d5dcChris Robinson2014-05-021-2/+2
| | | | | The vector iterator needs to be the start of the Data array even if the vector itself is NULL, or else insertion can have a negative insert position.
* Iniitialize some mmdevapi backend fields in the constructorChris Robinson2014-05-021-0/+23
|
* Use a backup in case pthread_mutex_timedlock isn't availableChris Robinson2014-05-013-1/+28
|
* Use ALboolean for al_string_empty's return typeChris Robinson2014-04-302-2/+2
|
* Add a helper VECTOR_FOR_EACH macroChris Robinson2014-04-306-55/+49
|
* Use _mm_set_ps() to set an __m128 instead of {}Chris Robinson2014-04-261-2/+2
|
* Convert the mmdevapi backend to the new backend APIChris Robinson2014-04-254-397/+511
|
* Use a vector for mmdevapi device listsChris Robinson2014-04-241-93/+77
|
* More device list cleanup cleanupChris Robinson2014-04-242-40/+25
|
* Use a helper function to clear PulseAudio device listsChris Robinson2014-04-241-36/+20
|
* Use a helper method to clear winmm device listsChris Robinson2014-04-241-20/+15
|
* Avoid using superfluous LP* typesChris Robinson2014-04-231-10/+10
|
* Use a RefCount for counting committed winmm buffersChris Robinson2014-04-231-7/+7
|
* Avoid forward-declaring backend vtablesChris Robinson2014-04-234-42/+44
|
* Avoid using assert() in createBackendChris Robinson2014-04-232-14/+20
|
* Include FindALSA.cmakeChris Robinson2014-04-231-0/+73
| | | | Older versions of CMake don't seem to have it.
* Properly handle HAVE_DYNLOAD in the dsound backendChris Robinson2014-04-221-1/+7
|
* Avoid some superfluous typesChris Robinson2014-04-221-8/+8
|
* Simplify the cmake backend handling a bitChris Robinson2014-04-221-31/+24
|
* Fix adding backend include directoriesChris Robinson2014-04-221-16/+48
|
* Use a helper to return mmdevapi message thread responsesChris Robinson2014-04-221-16/+15
|
* Avoid dereferencing a NULL pointerChris Robinson2014-04-211-2/+2
|
* Use a vector to store the ALSA device listsChris Robinson2014-04-211-96/+82
|
* Use al_string for ALSA's device mapChris Robinson2014-04-211-21/+26
|
* Trace the device name being opened in ALSA and PulseAudioChris Robinson2014-04-212-0/+4
|
* Use the althrd methods in winmmChris Robinson2014-04-211-78/+15
|
* Only declare backend options when the backend is availableChris Robinson2014-04-201-22/+20
|
* Use the stored format block align instead of calculating itChris Robinson2014-04-201-7/+4
|
* Use a vector for the PulseAudio DevMapsChris Robinson2014-04-201-76/+82
|
* Use an al_string in the PulseAudio backend instead of char*Chris Robinson2014-04-201-44/+63
|
* Convert the DSound backend to the new APIChris Robinson2014-04-194-224/+293
|
* Add a SZFMT macro for a size_t string formatterChris Robinson2014-04-192-2/+11
|
* Don't link with libwinmm unless WinMM is enabledChris Robinson2014-04-191-11/+8
| | | | | We don't use timeGetTime for timing anymore, so winmm only needs to be linked when the winmm backend is enabled.
* Use a find module to look for DirectSoundChris Robinson2014-04-192-28/+60
|
* Use find cmake modules for more backendsChris Robinson2014-04-197-79/+259
|
* Add a GCC-specific STATIC_UPCAST macro that checks the object typeChris Robinson2014-04-194-4/+11
| | | | | The check is compile time, and is functionally identical to the old/alternate version.
* Use C11 alignas when availableChris Robinson2014-04-197-17/+55
|
* Dont bother trying _allocaChris Robinson2014-04-191-6/+1
| | | | | We prefer C99 variable-length arrays, and other systems (including MSVC9) don't have an issue with alloca.
* Set -D_GNU_SOURCE=1 -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE=700 earlierChris Robinson2014-04-191-4/+5
|
* Use FindALSA.cmake to look for ALSAChris Robinson2014-04-191-15/+14
| | | | Also, only provide the ALSA_BACKEND_ALSA option if it's available
* Only define SSE, Neon, and FluidSynth options if they're availableChris Robinson2014-04-181-17/+15
|
* Simplify some error checkingChris Robinson2014-04-182-21/+5
|
* Check pthread_mutex_unlock for errorsChris Robinson2014-04-181-3/+4
|
* Remove unnecessary includesChris Robinson2014-04-181-4/+0
|
* Alter the al_fopen macro to not directly take parametersChris Robinson2014-04-181-1/+1
|
* Rename AL_ONCE_INIT to AL_ONCE_FLAG_INITChris Robinson2014-04-182-3/+3
|
* Check TlsSetValue for errorChris Robinson2014-04-171-1/+2
|