aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
Commit message (Collapse)AuthorAgeFilesLines
* Move some number-related stuff to a separate headerChris Robinson2019-02-111-2/+3
|
* Use std::arrays for HRIR coeffs and valuesChris Robinson2019-02-076-44/+40
|
* Simply setting a couple indicesChris Robinson2019-02-041-2/+2
|
* Use relaxed memory ordering for initializing atomic_flagsChris Robinson2019-02-041-1/+1
|
* Use a unique_ptr to store the loaded HrtfEntryChris Robinson2019-02-041-34/+28
|
* Fix compiling problems on VS2019 with vc142 toolsetMinmin Gong2019-02-042-1/+2
| | | | Msvc142 in VS2019 preview 2 doesn't allow std::atomic_flag to be initialized by a bool. Call test_and_set in the constructors instead.
* Add missing includeChris Robinson2019-01-291-1/+3
|
* Calculate the correct evidx for the HRTF B-Format decoderChris Robinson2019-01-291-3/+7
|
* Load and use all available HRTF fieldsChris Robinson2019-01-291-30/+30
|
* Pass the distance to GetHrtfCoeffsChris Robinson2019-01-283-22/+25
|
* Collect HRTF field info into a structChris Robinson2019-01-283-36/+56
|
* Clean up calculating HRIR indices to blendChris Robinson2019-01-281-37/+26
|
* Don't try to clean up the async ringbuffer if it isn't allocatedChris Robinson2019-01-261-16/+19
|
* Fix applied scalars for B-Format source mixingChris Robinson2019-01-261-8/+8
|
* Slight cleanup for NfcFilterCreate4Chris Robinson2019-01-241-20/+14
|
* Make IncRef and DecRef member functionsChris Robinson2019-01-244-23/+27
|
* Clean up the NFC filters a bitChris Robinson2019-01-233-69/+40
|
* Rename a headerChris Robinson2019-01-234-6/+6
| | | | To workaround an apparent MSVC error
* Add missing includesChris Robinson2019-01-231-0/+2
|
* Make hrtf_inc.cpp a proper headerChris Robinson2019-01-234-14/+9
|
* Use template declarations for the HRTF mixersChris Robinson2019-01-237-78/+109
|
* Use template declarations for the normal mixing functionsChris Robinson2019-01-235-38/+33
|
* Use a template declaration for the resampler functionsChris Robinson2019-01-238-89/+82
|
* Use the farthest of multi-field HRTFsChris Robinson2019-01-221-3/+10
|
* Partially allow loading of multi-field HRTFsChris Robinson2019-01-221-40/+62
| | | | | Only the first field actually gets used, but all the data is processed when loading.
* Handle a missing default WASAPI device IDChris Robinson2019-01-181-3/+3
|
* Replace a couple more C math callsChris Robinson2019-01-141-2/+2
|
* Constify some parametersChris Robinson2019-01-125-95/+97
|
* Avoid implicit conversions from signed to unsignedChris Robinson2019-01-121-5/+5
|
* Use a flexible array for DirectHrtfState and ALvoiceChris Robinson2019-01-125-18/+22
|
* Use a flexible array for HrtfHandle and SampleConverterChris Robinson2019-01-113-31/+47
|
* Use a flexible array for the active effect slotsChris Robinson2019-01-112-8/+4
|
* Use a vector for ALeffectslotArrayChris Robinson2019-01-093-21/+16
|
* Use `= default` to define trivial dtor/ctorFilip Gawin2019-01-092-8/+3
|
* Remove redundant void argument list in function defFilip Gawin2019-01-0918-27/+27
|
* Use c++ headersFilip Gawin2019-01-0924-56/+56
|
* Change a true/false ALenum atomic into a boolChris Robinson2019-01-092-3/+3
|
* Add prefixes for ALCdevice and ALCcontextChris Robinson2019-01-091-0/+1
|
* Make Create methods for structs with flexible array members ...Chris Robinson2019-01-083-8/+19
| | | | ... that are used with unique_ptr.
* Avoid calling unique_ptr::reset with a raw pointerChris Robinson2019-01-081-7/+7
|
* Rename ALC_SOFT_loopback2 and renumber its enumsChris Robinson2019-01-081-10/+10
|
* Apply the all-pass separately from the upsampling mixChris Robinson2019-01-082-15/+14
|
* Avoid macros for indexing HF and LF fequency bandsChris Robinson2019-01-082-24/+23
|
* Fix some comments and reduce indentationChris Robinson2019-01-081-35/+32
|
* Avoid using old style castsFilip Gawin2019-01-0822-94/+94
| | | | | | To think about: examples/alffplay.cpp:600 OpenAL32/Include/alMain.h:295
* Merge pull request #260 from ShFil119/impr/nullptrkcat2019-01-072-4/+4
|\ | | | | Use nullptr in cpp files
| * Use nullptr in cpp filesFilip Gawin2019-01-072-4/+4
| |
* | Use user-defined literals for 64-bit literalsChris Robinson2019-01-073-3/+3
| |
* | Define logging calls to be unlikelyChris Robinson2019-01-071-4/+6
| |
* | Clean up some initializers and use of C methodsChris Robinson2019-01-065-140/+118
|/