aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
Commit message (Collapse)AuthorAgeFilesLines
* Remove unused headers and checksChris Robinson2018-11-177-7/+0
|
* Convert bs2b.c to C++Chris Robinson2018-11-171-7/+8
|
* Remove now unneeded inldefs.cChris Robinson2018-11-171-111/+0
| | | | | All code using inline functions is now C++, so will generate callable functions as-needed.
* Convert the mixers to C++Chris Robinson2018-11-177-3/+3
|
* Remove ASSUME_ALIGNEDChris Robinson2018-11-174-21/+16
| | | | | | It's become a liability with C++ since it returns void* instead of the input pointer type, and it doesn't seem to help optimizations anyway (auto- vectorization still produces unaligned loads and stores).
* Convert the filters to C++Chris Robinson2018-11-172-0/+0
|
* Convert ringbuffer.c to C++Chris Robinson2018-11-171-5/+5
|
* Convert mastering.c to C++Chris Robinson2018-11-171-1/+1
|
* Convert converter.c to C++Chris Robinson2018-11-172-72/+65
|
* Convert the remaining effects to C++Chris Robinson2018-11-173-33/+48
|
* Convert the dedicated, distortion, echo, and equalizer to C++Chris Robinson2018-11-174-37/+51
|
* Add a couple missing includesChris Robinson2018-11-172-0/+2
|
* Don't pass the current thread to althrd_setnameChris Robinson2018-11-1714-20/+18
|
* Use standard complex types instead of customChris Robinson2018-11-172-77/+65
|
* Make the Hann windows constChris Robinson2018-11-172-111/+110
|
* Convert fshifter.c to C++Chris Robinson2018-11-171-9/+13
|
* Convert modulator.c to C++Chris Robinson2018-11-171-9/+12
|
* Convert null.c to C++Chris Robinson2018-11-171-7/+14
|
* Convert pshifter.c to C++Chris Robinson2018-11-171-9/+14
|
* Put a lambda in the call_once callChris Robinson2018-11-161-1/+1
| | | | | | | This optimizes better and avoids a visible symbol (templating to an anonymous lambda type will generate a unique anonymous instantiation, making inlining more likely, whereas passing a general function pointer/reference type will likely use or generate a publically available instance).
* Remove unused altss types and methodsChris Robinson2018-11-161-4/+0
|
* Avoid using C-style TLSChris Robinson2018-11-161-20/+30
|
* Convert the reverb effect to C++Chris Robinson2018-11-161-18/+22
|
* Convert mixvoice.c to C++Chris Robinson2018-11-161-7/+9
|
* Convert ALu.c to C++Chris Robinson2018-11-164-14/+35
| | | | Required changes to bsincgen to generate C++-friendly structures.
* Remove some unneeded includesChris Robinson2018-11-163-8/+0
|
* Use iterators instead of indexed loopsChris Robinson2018-11-161-23/+22
|
* Cleanup some syntax in alc.cppChris Robinson2018-11-161-19/+13
|
* Simplify a couple checksChris Robinson2018-11-152-18/+5
|
* Remove unused declarations and definitionsChris Robinson2018-11-152-56/+0
|
* Convert the PortAudio backend factoryChris Robinson2018-11-153-87/+89
|
* Convert the WinMM backend factoryChris Robinson2018-11-153-89/+90
|
* Convert the DSound backend factoryChris Robinson2018-11-153-91/+90
|
* Convert the QSA backend factoryChris Robinson2018-11-153-36/+39
|
* Convert the OSS backend factoryChris Robinson2018-11-153-78/+80
|
* Convert the SndIO backend factoryChris Robinson2018-11-153-36/+37
|
* Convert the Solaris backend factoryChris Robinson2018-11-153-36/+37
|
* Convert the SDL2 backend factoryChris Robinson2018-11-153-37/+38
|
* Convert the JACK backend factoryChris Robinson2018-11-153-37/+45
|
* Convert the Wave Writer backend factoryChris Robinson2018-11-153-62/+58
|
* Convert the OpenSL backend factoryChris Robinson2018-11-153-35/+39
|
* Convert the ALSA backend factoryChris Robinson2018-11-153-74/+79
|
* Convert the CoreAudio backend factoryChris Robinson2018-11-153-39/+39
|
* Convert the WASAPI backend factoryChris Robinson2018-11-154-81/+81
|
* Convert the PulseAudio backend factoryChris Robinson2018-11-153-178/+134
|
* Update the loopback backendChris Robinson2018-11-154-57/+58
|
* Start a new backend factory APIChris Robinson2018-11-154-81/+85
| | | | | Using proper class inheritance. Be aware this breaks all backends except null (and loopback). They will be restored individually in due time.
* Remove checks for functions that always existChris Robinson2018-11-151-10/+0
| | | | | They're part of C++11 and available on the testing systems. If some system has trouble, switching to proper C++ calls should fix it.
* Use std::isfinite from the cmath headerChris Robinson2018-11-151-1/+1
|
* Remove the unused al_string APIChris Robinson2018-11-155-157/+0
|