aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/alu.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Avoid making static local copies of constexpr valuesChris Robinson2018-12-251-7/+7
|
* Construct AsyncEvent objects directly in the ringbufferChris Robinson2018-12-251-16/+28
|
* Remove extraneous typedef, struct, and enum keywordsChris Robinson2018-12-241-15/+15
|
* Propagate an effectslot target propertyChris Robinson2018-12-241-0/+1
|
* Provide effect target parameters through a common structChris Robinson2018-12-241-2/+20
|
* Make the Compressor more class-likeChris Robinson2018-12-241-2/+2
|
* Apply the limiter before distance compensationChris Robinson2018-12-241-9/+10
|
* Assume alignment for some buffersChris Robinson2018-12-231-8/+9
|
* Add some more ASSUMEsChris Robinson2018-12-231-6/+13
|
* Dynamically sort the effect slots when mixingChris Robinson2018-12-221-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 stuffChris Robinson2018-12-221-32/+33
|
* Fix for C++11 compatibilityChris Robinson2018-12-221-4/+4
| | | | std::array::operator[] isn't constexpr until C++14.
* A bit of cleanup for CalcPanningAndFiltersChris Robinson2018-12-221-24/+30
|
* Rename a couple HRTF structsChris Robinson2018-12-221-4/+3
|
* Pass RealMixParams by reference instead of pointerChris Robinson2018-12-201-12/+12
|
* Use proper classes for Vector and Matrix typesChris Robinson2018-12-121-98/+64
|
* Cleanup alu.cpp someChris Robinson2018-12-121-301/+237
|
* Avoid static global initialization functionsChris Robinson2018-12-081-3/+34
|
* Use member functions for BFormatDec and AmbiUpsamplerChris Robinson2018-12-081-12/+8
|
* Use a constructor instead of a macro to initialize AsyncEventChris Robinson2018-12-061-3/+3
|
* Use class methods for BandSplitter and SplitterAllpass filtersChris Robinson2018-12-051-3/+3
|
* Use class methods for the NFC filtersChris Robinson2018-12-051-4/+4
|
* Use class methods for the biquad filterChris Robinson2018-12-041-16/+8
|
* Avoid a few more explicit loopsChris Robinson2018-12-041-19/+22
|
* Read atomic variables in the reverse order they're setChris Robinson2018-12-041-6/+5
|
* Handle source state changed events uniquely in the event loopChris Robinson2018-11-301-23/+4
| | | | | To avoid the need of constructing the string in the mixer thread, which is commonly formatted anyway.
* Improve construction and destruction of ALvoicesChris Robinson2018-11-301-9/+9
|
* Don't bother making ALvoiceProps dynamically sizedChris Robinson2018-11-301-8/+6
|
* Store the source ID with the voice instead of the source pointerChris Robinson2018-11-291-11/+11
|
* Don't sever a paused source from its voice on disconnectChris Robinson2018-11-281-9/+10
|
* Small cleanup for ~ALCcontext_structChris Robinson2018-11-271-1/+1
|
* Make and use a semaphore classChris Robinson2018-11-271-3/+3
|
* Make the context VoiceCount atomicChris Robinson2018-11-231-3/+3
|
* Restructure and clean up alu.cpp a bitChris Robinson2018-11-231-151/+166
|
* Use standard types for the device clock timesChris Robinson2018-11-221-1/+1
|
* Use unique_ptr for DirectHrtfStateChris Robinson2018-11-221-1/+1
|
* Clean up some unnecessary specifiersChris Robinson2018-11-221-8/+4
|
* Use unique_ptr for bs2bChris Robinson2018-11-221-1/+1
|
* Use unique_ptr for BFormatDec and AmbiUpsamplerChris Robinson2018-11-221-4/+4
|
* Use a unique_ptr for the FrontStablizerChris Robinson2018-11-221-1/+1
|
* Use a unique_ptr for the CompressorChris Robinson2018-11-211-1/+1
|
* Use a unique_ptr for Uhj2EncoderChris Robinson2018-11-211-1/+1
|
* Use RAII when handling the mixer's FPU stateChris Robinson2018-11-211-2/+1
|
* Use a normal vector for the distance buffer storageChris Robinson2018-11-211-19/+18
|
* Use a unique_ptr for the default effect slotChris Robinson2018-11-201-2/+2
|
* Use C++ templates instead of macro-defined variationsChris Robinson2018-11-201-174/+175
|
* Avoid another case of a variable named the same as a typeChris Robinson2018-11-191-5/+5
|
* Use proper inheritence for the effect state objectsChris Robinson2018-11-191-9/+9
|
* Clean up the biquad filter a bitChris Robinson2018-11-191-4/+4
|
* Make ll_ringbuffer_write/read take void*/const void*Chris Robinson2018-11-191-3/+3
|