aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
Commit message (Collapse)AuthorAgeFilesLines
* Make sure the B2A matrix has enough values for the input countChris Robinson2019-02-211-6/+6
|
* Remove some now-unnecessary ReverbState fieldsChris Robinson2019-02-211-26/+1
|
* Pass the number of input channels to EffectState::processChris Robinson2019-02-2113-107/+104
|
* Ensure the device's mAmbiOrder is always set appropriatelyChris Robinson2019-02-211-8/+23
| | | | The Dry target is always ambisonic, so set its order correctly.
* Store effect slots in groups of 64Chris Robinson2019-02-202-18/+41
| | | | | Now that their wet buffers are allocated dynamically, the ALeffectslot object itself is rather small.
* Allocate the effect slot wet buffer dynamicallyChris Robinson2019-02-203-27/+31
|
* Partially handle non-periphonic reverb inputChris Robinson2019-02-191-3/+26
|
* Use the right macro for the number of reverb panning gainsChris Robinson2019-02-191-2/+2
|
* Rename MAX_AMBI_COEFFS and MAX_AMBI2D_COEFFSChris Robinson2019-02-1914-56/+56
|
* Reduce some indentingChris Robinson2019-02-191-27/+25
|
* Apply the upsampler's all-pass when mixing the band-split samplesChris Robinson2019-02-191-10/+10
|
* Clean up some AmbiUpsampler initializationChris Robinson2019-02-191-17/+19
|
* Avoid a temp buffer for the distance compensation delayChris Robinson2019-02-171-23/+12
|
* Apply phase correction to the ambisonic decoder HRIRsChris Robinson2019-02-161-25/+60
| | | | | | This preserves the original phase of the HRIR frequencies for decoding the ambisonic signal. This should help prevent extra coloration from the band- splitter used to scale the HF response.
* Avoid using internal AL[u]int64 typesChris Robinson2019-02-118-20/+20
|
* 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
|