aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Convert ALc.c to C++Chris Robinson2018-11-144-255/+252
|
* More clearly check if the buffer is not emptyChris Robinson2018-11-141-1/+1
|
* Move extern inline declarations to their own C sourceChris Robinson2018-11-149-101/+123
|
* Fix some comment indentationChris Robinson2018-11-132-6/+6
|
* Use an anonymous namespace in the OSS backendChris Robinson2018-11-131-8/+12
|
* Use C++ more with the ALSA backendChris Robinson2018-11-131-359/+276
|
* Avoid using ATOMIC_FLAGChris Robinson2018-11-1312-64/+32
| | | | | Although it cant potentially be better than a regular atomic, it presents compatibility issues when non-C11 atomics are mixed with C++
* Don't bother inlining some functionsChris Robinson2018-11-133-16/+17
|
* Avoid calling through the vtable in the backendsChris Robinson2018-11-135-27/+27
|
* Use utf8_to_wstr to convert UTF-8 to wstringChris Robinson2018-11-131-20/+10
|
* Make ReadALConfig noexcept in C++Chris Robinson2018-11-132-3/+6
|
* Convert the CoreAudio backend to C++Chris Robinson2018-11-132-46/+50
|
* Convert the QSA backend to C++Chris Robinson2018-11-132-25/+35
| | | | | This may very well not work, since there's no testing and my IDE is not able to show real problems over the incompatibilities with ALSA headers.
* Convert the backend base to C++Chris Robinson2018-11-133-6/+6
|
* Convert the ALSA backend to C++Chris Robinson2018-11-132-23/+27
|
* Convert the JACK backend to C++Chris Robinson2018-11-132-26/+25
|
* Convert the OpenSL backend to C++Chris Robinson2018-11-132-24/+28
|
* Convert the OSS backend to C++Chris Robinson2018-11-122-83/+89
|
* Convert the PortAudio backend to C++Chris Robinson2018-11-122-41/+43
|
* Convert the SoundIO backend to C++Chris Robinson2018-11-122-34/+37
|
* Convert the Solaris backend to C++Chris Robinson2018-11-122-18/+21
|
* Convert the SDL2 backend to C++Chris Robinson2018-11-122-26/+29
|
* Make the enumerated HRTF entry name a char*Chris Robinson2018-11-124-25/+30
| | | | | Would ideally be a std::string with the HRTF name itself, but they're still seen in C code.
* Use a regular char* for the HRTF string nameChris Robinson2018-11-123-11/+23
|
* Split Windows-specific SetRTPriorityChris Robinson2018-11-121-9/+12
|
* Clean up helpers.cpp someChris Robinson2018-11-111-128/+108
|
* Use the correct type for __control87_2Chris Robinson2018-11-111-1/+1
|
* Fix getting the process binary for FreeBSD or macOSChris Robinson2018-11-111-8/+6
|
* Make AmbDecConf::load noexceptChris Robinson2018-11-112-2/+2
| | | | To ease the ovewrhead of destructors that call C (non-noexcept) functions.
* Remove unused wstr functionsChris Robinson2018-11-112-57/+0
|
* Use C++ more with helpers.cppChris Robinson2018-11-113-286/+171
|
* Use C++ for GetProcBinaryChris Robinson2018-11-114-115/+69
|
* Convert helpers.c to C++Chris Robinson2018-11-116-38/+51
|
* Use a vector in the wave backendChris Robinson2018-11-111-30/+13
|
* Define the examples' common library earlierChris Robinson2018-11-111-5/+5
|
* Use C++ threads in the null and wave backendsChris Robinson2018-11-112-34/+38
|
* Remove the unused condition variable APIsChris Robinson2018-11-102-164/+0
|
* Move altimespec_get and al_nssleep to examples' common codeChris Robinson2018-11-105-99/+81
|
* Ensure ambdec parsing stops at unexpected EOFChris Robinson2018-11-101-2/+1
|
* Use standard timing methods for the null and wave backendsChris Robinson2018-11-102-57/+61
|
* Get rid of the last few al_fopen callsChris Robinson2018-11-104-32/+26
|
* Load config files using C++Chris Robinson2018-11-101-313/+178
| | | | Specifically, avoid al_fopen
* Convert alconfig to C++Chris Robinson2018-11-102-27/+28
|
* Remove unused strdupWChris Robinson2018-11-102-18/+0
|
* Remove the unused file mapping callsChris Robinson2018-11-092-116/+0
|
* Use C++ more in hrtf.cppChris Robinson2018-11-091-499/+439
|
* Handle the open mode in al::ifstreamChris Robinson2018-11-091-12/+28
|
* Convert hrtf.c to C++Chris Robinson2018-11-092-191/+136
|
* Convert the null backend to C++Chris Robinson2018-11-092-13/+25
|
* Convert the loopback backend to C++Chris Robinson2018-11-092-16/+23
|