Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use a temporary buffer for HRTF filter accumulation | Chris Robinson | 2019-03-29 | 5 | -203/+122 |
| | | | | | Similar to the history buffer, to avoid using the state buffer as a ring buffer. | ||||
* | Use a function reference for a template parameter | Chris Robinson | 2019-03-28 | 1 | -25/+27 |
| | |||||
* | Avoid using the HRTF history buffer as a ring buffer | Chris Robinson | 2019-03-28 | 1 | -32/+17 |
| | | | | | | The HRTF mixers now get a full input buffer with the history prepended, so the delay offsets just need to account for the start point and read forward for each sample. | ||||
* | Don't copy old coeffs in MixHrtfBlendBase | Chris Robinson | 2019-03-10 | 1 | -2/+2 |
| | |||||
* | Pass a reference to function for a template parameter | Chris Robinson | 2019-03-03 | 1 | -3/+3 |
| | |||||
* | Use std::arrays for HRIR coeffs and values | Chris Robinson | 2019-02-07 | 4 | -17/+13 |
| | |||||
* | Rename a header | Chris Robinson | 2019-01-23 | 4 | -6/+6 |
| | | | | To workaround an apparent MSVC error | ||||
* | Add missing includes | Chris Robinson | 2019-01-23 | 1 | -0/+2 |
| | |||||
* | Make hrtf_inc.cpp a proper header | Chris Robinson | 2019-01-23 | 4 | -14/+9 |
| | |||||
* | Use template declarations for the HRTF mixers | Chris Robinson | 2019-01-23 | 5 | -65/+97 |
| | |||||
* | Use template declarations for the normal mixing functions | Chris Robinson | 2019-01-23 | 4 | -30/+25 |
| | |||||
* | Use a template declaration for the resampler functions | Chris Robinson | 2019-01-23 | 6 | -77/+70 |
| | |||||
* | Constify some parameters | Chris Robinson | 2019-01-12 | 4 | -90/+92 |
| | |||||
* | Use c++ headers | Filip Gawin | 2019-01-09 | 1 | -1/+1 |
| | |||||
* | Avoid using old style casts | Filip Gawin | 2019-01-08 | 2 | -11/+11 |
| | | | | | | To think about: examples/alffplay.cpp:600 OpenAL32/Include/alMain.h:295 | ||||
* | Clean up some initializers and use of C methods | Chris Robinson | 2019-01-06 | 5 | -140/+118 |
| | |||||
* | Handle all input channels in MixDirectHrtf | Chris Robinson | 2018-12-31 | 2 | -31/+35 |
| | |||||
* | Further improve HRTF methods to avoid masking in the inner loops | Chris Robinson | 2018-12-31 | 3 | -96/+159 |
| | |||||
* | Handle HRTF coefficients and values by reference where possible | Chris Robinson | 2018-12-26 | 5 | -35/+37 |
| | |||||
* | Avoid masking in ApplyCoeffs's inner loop | Chris Robinson | 2018-12-26 | 3 | -35/+62 |
| | | | | | This unfortunately does not apply to NEON, which would need a bit more reworking of its method. | ||||
* | Remove extraneous typedef, struct, and enum keywords | Chris Robinson | 2018-12-24 | 1 | -14/+6 |
| | |||||
* | Clean up some math stuff | Chris Robinson | 2018-12-22 | 3 | -3/+9 |
| | |||||
* | Avoid another DECL_TEMPLATE macro | Chris Robinson | 2018-11-25 | 5 | -31/+58 |
| | |||||
* | Remove unused headers and checks | Chris Robinson | 2018-11-17 | 1 | -1/+0 |
| | |||||
* | Convert the mixers to C++ | Chris Robinson | 2018-11-17 | 7 | -3/+3 |
| | |||||
* | Remove ASSUME_ALIGNED | Chris Robinson | 2018-11-17 | 4 | -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 Robinson | 2018-11-16 | 1 | -0/+8 |
| | | | | Required changes to bsincgen to generate C++-friendly structures. | ||||
* | Replace restrict with RESTRICT | Chris Robinson | 2018-10-29 | 7 | -70/+70 |
| | |||||
* | Improve the gain stepping difference check | Chris Robinson | 2018-09-22 | 3 | -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 position | Chris Robinson | 2018-09-18 | 4 | -7/+4 |
| | |||||
* | Handle the bsinc C resampler like the others | Chris Robinson | 2018-09-17 | 3 | -47/+36 |
| | |||||
* | Slightly restructure some loops | Chris Robinson | 2018-09-03 | 3 | -39/+34 |
| | |||||
* | Extract SIMD values right before using them | Chris Robinson | 2018-09-03 | 3 | -21/+21 |
| | |||||
* | Use shuffle+cvt to extract SIMD values instead of storing to memory | Chris Robinson | 2018-08-26 | 1 | -2/+5 |
| | |||||
* | Simplify counting for the bsinc FIR loop | Chris Robinson | 2018-05-19 | 2 | -8/+16 |
| | |||||
* | Simplify counting for SIMD MixRow functions | Chris Robinson | 2018-05-15 | 2 | -16/+20 |
| | |||||
* | Use a step counter for gain stepping | Chris Robinson | 2018-05-14 | 4 | -76/+100 |
| | | | | | This should provide more stable stepping, preventing floating-point errors from accumulating on each step/sample. | ||||
* | Add some more ASSUME statements | Chris Robinson | 2018-04-21 | 3 | -0/+6 |
| | |||||
* | Remove unnecessary undefs | Chris Robinson | 2018-04-19 | 3 | -3/+0 |
| | |||||
* | Add some ASSUME statements that ensure mixing at least 1 sample | Chris Robinson | 2018-04-18 | 6 | -0/+25 |
| | |||||
* | Add an ASSUME macro that requires a true condition | Chris Robinson | 2018-04-17 | 3 | -0/+6 |
| | |||||
* | Move the filter implementation to a separate directory | Chris Robinson | 2018-03-22 | 1 | -39/+0 |
| | |||||
* | Rename mixer_inc.c to hrtf_inc.c | Chris Robinson | 2018-03-22 | 4 | -3/+3 |
| | |||||
* | Move mixer sources into a sub-directory | Chris Robinson | 2018-03-22 | 8 | -0/+1100 |