Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Avoid making static local copies of constexpr values | Chris Robinson | 2018-12-25 | 1 | -7/+7 |
| | |||||
* | Construct AsyncEvent objects directly in the ringbuffer | Chris Robinson | 2018-12-25 | 1 | -16/+28 |
| | |||||
* | Remove extraneous typedef, struct, and enum keywords | Chris Robinson | 2018-12-24 | 1 | -15/+15 |
| | |||||
* | Propagate an effectslot target property | Chris Robinson | 2018-12-24 | 1 | -0/+1 |
| | |||||
* | Provide effect target parameters through a common struct | Chris Robinson | 2018-12-24 | 1 | -2/+20 |
| | |||||
* | Make the Compressor more class-like | Chris Robinson | 2018-12-24 | 1 | -2/+2 |
| | |||||
* | Apply the limiter before distance compensation | Chris Robinson | 2018-12-24 | 1 | -9/+10 |
| | |||||
* | Assume alignment for some buffers | Chris Robinson | 2018-12-23 | 1 | -8/+9 |
| | |||||
* | Add some more ASSUMEs | Chris Robinson | 2018-12-23 | 1 | -6/+13 |
| | |||||
* | Dynamically sort the effect slots when mixing | Chris Robinson | 2018-12-22 | 1 | -2/+39 |
| | | | | | | | | | This is to be able to support effects that output to other effects. When an effect outputs to another effect, the former needs to process first, so the former mixes to the latter's buffer before the latter is processed. This sorting needs to happen in the mixer because the effect slot's "Target" property changes asynchronously. | ||||
* | Clean up some math stuff | Chris Robinson | 2018-12-22 | 1 | -32/+33 |
| | |||||
* | Fix for C++11 compatibility | Chris Robinson | 2018-12-22 | 1 | -4/+4 |
| | | | | std::array::operator[] isn't constexpr until C++14. | ||||
* | A bit of cleanup for CalcPanningAndFilters | Chris Robinson | 2018-12-22 | 1 | -24/+30 |
| | |||||
* | Rename a couple HRTF structs | Chris Robinson | 2018-12-22 | 1 | -4/+3 |
| | |||||
* | Pass RealMixParams by reference instead of pointer | Chris Robinson | 2018-12-20 | 1 | -12/+12 |
| | |||||
* | Use proper classes for Vector and Matrix types | Chris Robinson | 2018-12-12 | 1 | -98/+64 |
| | |||||
* | Cleanup alu.cpp some | Chris Robinson | 2018-12-12 | 1 | -301/+237 |
| | |||||
* | Avoid static global initialization functions | Chris Robinson | 2018-12-08 | 1 | -3/+34 |
| | |||||
* | Use member functions for BFormatDec and AmbiUpsampler | Chris Robinson | 2018-12-08 | 1 | -12/+8 |
| | |||||
* | Use a constructor instead of a macro to initialize AsyncEvent | Chris Robinson | 2018-12-06 | 1 | -3/+3 |
| | |||||
* | Use class methods for BandSplitter and SplitterAllpass filters | Chris Robinson | 2018-12-05 | 1 | -3/+3 |
| | |||||
* | Use class methods for the NFC filters | Chris Robinson | 2018-12-05 | 1 | -4/+4 |
| | |||||
* | Use class methods for the biquad filter | Chris Robinson | 2018-12-04 | 1 | -16/+8 |
| | |||||
* | Avoid a few more explicit loops | Chris Robinson | 2018-12-04 | 1 | -19/+22 |
| | |||||
* | Read atomic variables in the reverse order they're set | Chris Robinson | 2018-12-04 | 1 | -6/+5 |
| | |||||
* | Handle source state changed events uniquely in the event loop | Chris Robinson | 2018-11-30 | 1 | -23/+4 |
| | | | | | To avoid the need of constructing the string in the mixer thread, which is commonly formatted anyway. | ||||
* | Improve construction and destruction of ALvoices | Chris Robinson | 2018-11-30 | 1 | -9/+9 |
| | |||||
* | Don't bother making ALvoiceProps dynamically sized | Chris Robinson | 2018-11-30 | 1 | -8/+6 |
| | |||||
* | Store the source ID with the voice instead of the source pointer | Chris Robinson | 2018-11-29 | 1 | -11/+11 |
| | |||||
* | Don't sever a paused source from its voice on disconnect | Chris Robinson | 2018-11-28 | 1 | -9/+10 |
| | |||||
* | Small cleanup for ~ALCcontext_struct | Chris Robinson | 2018-11-27 | 1 | -1/+1 |
| | |||||
* | Make and use a semaphore class | Chris Robinson | 2018-11-27 | 1 | -3/+3 |
| | |||||
* | Make the context VoiceCount atomic | Chris Robinson | 2018-11-23 | 1 | -3/+3 |
| | |||||
* | Restructure and clean up alu.cpp a bit | Chris Robinson | 2018-11-23 | 1 | -151/+166 |
| | |||||
* | Use standard types for the device clock times | Chris Robinson | 2018-11-22 | 1 | -1/+1 |
| | |||||
* | Use unique_ptr for DirectHrtfState | Chris Robinson | 2018-11-22 | 1 | -1/+1 |
| | |||||
* | Clean up some unnecessary specifiers | Chris Robinson | 2018-11-22 | 1 | -8/+4 |
| | |||||
* | Use unique_ptr for bs2b | Chris Robinson | 2018-11-22 | 1 | -1/+1 |
| | |||||
* | Use unique_ptr for BFormatDec and AmbiUpsampler | Chris Robinson | 2018-11-22 | 1 | -4/+4 |
| | |||||
* | Use a unique_ptr for the FrontStablizer | Chris Robinson | 2018-11-22 | 1 | -1/+1 |
| | |||||
* | Use a unique_ptr for the Compressor | Chris Robinson | 2018-11-21 | 1 | -1/+1 |
| | |||||
* | Use a unique_ptr for Uhj2Encoder | Chris Robinson | 2018-11-21 | 1 | -1/+1 |
| | |||||
* | Use RAII when handling the mixer's FPU state | Chris Robinson | 2018-11-21 | 1 | -2/+1 |
| | |||||
* | Use a normal vector for the distance buffer storage | Chris Robinson | 2018-11-21 | 1 | -19/+18 |
| | |||||
* | Use a unique_ptr for the default effect slot | Chris Robinson | 2018-11-20 | 1 | -2/+2 |
| | |||||
* | Use C++ templates instead of macro-defined variations | Chris Robinson | 2018-11-20 | 1 | -174/+175 |
| | |||||
* | Avoid another case of a variable named the same as a type | Chris Robinson | 2018-11-19 | 1 | -5/+5 |
| | |||||
* | Use proper inheritence for the effect state objects | Chris Robinson | 2018-11-19 | 1 | -9/+9 |
| | |||||
* | Clean up the biquad filter a bit | Chris Robinson | 2018-11-19 | 1 | -4/+4 |
| | |||||
* | Make ll_ringbuffer_write/read take void*/const void* | Chris Robinson | 2018-11-19 | 1 | -3/+3 |
| |