aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/mixer
Commit message (Collapse)AuthorAgeFilesLines
* Remove unused headers and checksChris Robinson2018-11-171-1/+0
|
* 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 ALu.c to C++Chris Robinson2018-11-161-0/+8
| | | | Required changes to bsincgen to generate C++-friendly structures.
* Replace restrict with RESTRICTChris Robinson2018-10-297-70/+70
|
* Improve the gain stepping difference checkChris Robinson2018-09-223-12/+15
| | | | | Given the more stable stepping now in use, check that the total difference is enough for perceptible transition, instead of the step itself.
* Use ALsizei for the source resample positionChris Robinson2018-09-184-7/+4
|
* Handle the bsinc C resampler like the othersChris Robinson2018-09-173-47/+36
|
* Slightly restructure some loopsChris Robinson2018-09-033-39/+34
|
* Extract SIMD values right before using themChris Robinson2018-09-033-21/+21
|
* Use shuffle+cvt to extract SIMD values instead of storing to memoryChris Robinson2018-08-261-2/+5
|
* Simplify counting for the bsinc FIR loopChris Robinson2018-05-192-8/+16
|
* Simplify counting for SIMD MixRow functionsChris Robinson2018-05-152-16/+20
|
* Use a step counter for gain steppingChris Robinson2018-05-144-76/+100
| | | | | This should provide more stable stepping, preventing floating-point errors from accumulating on each step/sample.
* Add some more ASSUME statementsChris Robinson2018-04-213-0/+6
|
* Remove unnecessary undefsChris Robinson2018-04-193-3/+0
|
* Add some ASSUME statements that ensure mixing at least 1 sampleChris Robinson2018-04-186-0/+25
|
* Add an ASSUME macro that requires a true conditionChris Robinson2018-04-173-0/+6
|
* Move the filter implementation to a separate directoryChris Robinson2018-03-221-39/+0
|
* Rename mixer_inc.c to hrtf_inc.cChris Robinson2018-03-224-3/+3
|
* Move mixer sources into a sub-directoryChris Robinson2018-03-228-0/+1100