aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
Commit message (Collapse)AuthorAgeFilesLines
* Cleanup bformatdec.cpp a bitChris Robinson2018-12-131-81/+30
|
* Add more casts for MSVCChris Robinson2018-12-125-12/+20
|
* Fix some MSVC conversion warningsChris Robinson2018-12-127-38/+37
|
* Use proper classes for Vector and Matrix typesChris Robinson2018-12-127-148/+109
|
* Cleanup alu.cpp someChris Robinson2018-12-121-301/+237
|
* Use helpers to get the Ambisonic scales and layout mapsChris Robinson2018-12-102-14/+32
|
* A bit more cleanupChris Robinson2018-12-103-130/+111
|
* Clean up a few more loopsChris Robinson2018-12-101-83/+84
|
* Add missing headerChris Robinson2018-12-101-0/+1
|
* Put static methods into an anonymous namespaceChris Robinson2018-12-101-131/+128
|
* Avoid some more explicit loopsChris Robinson2018-12-102-55/+42
|
* Use std::accumulate to find the max channel countChris Robinson2018-12-091-15/+12
|
* Avoid some more explicit loopsChris Robinson2018-12-091-13/+21
|
* Pass a reference to an array for a function parameterChris Robinson2018-12-091-1/+1
|
* Rename a couple global variablesChris Robinson2018-12-093-17/+17
| | | | Avoid clashing with an enum name
* Add default construction to HrtfEntryChris Robinson2018-12-091-3/+1
|
* Use a vector for LoadedHrtfsChris Robinson2018-12-091-67/+65
|
* Avoid static global initialization functionsChris Robinson2018-12-086-160/+50
|
* Rename a member variable and inline a functionChris Robinson2018-12-082-9/+6
|
* Avoid several uses of memsetChris Robinson2018-12-0810-39/+33
|
* Add missing includeChris Robinson2018-12-081-0/+1
|
* A bit more cleanupChris Robinson2018-12-081-21/+15
|
* Use member functions for BFormatDec and AmbiUpsamplerChris Robinson2018-12-084-129/+122
|
* Clean up some more loopsChris Robinson2018-12-083-53/+55
|
* Inline a simple methodChris Robinson2018-12-082-8/+1
|
* Avoid using the deprecated mem_fun_ref methodChris Robinson2018-12-071-1/+1
|
* Add fourth-order methods to the NFC filterChris Robinson2018-12-072-118/+119
| | | | Unused, but it finishes out the currently possible implementations.
* Use a constructor instead of a macro to initialize AsyncEventChris Robinson2018-12-062-4/+4
|
* Remove some more explicit loopsChris Robinson2018-12-051-19/+21
|
* Use class methods for BandSplitter and SplitterAllpass filtersChris Robinson2018-12-056-65/+60
|
* Use class methods for the NFC filtersChris Robinson2018-12-055-140/+139
|
* Use class methods for the biquad filterChris Robinson2018-12-049-153/+146
|
* Avoid using AL types with the filtersChris Robinson2018-12-044-48/+48
|
* Avoid some more explicit loops in the filtersChris Robinson2018-12-043-61/+53
|
* Avoid more explicit loopsChris Robinson2018-12-041-20/+21
|
* Increase the async event queue sizeChris Robinson2018-12-041-1/+1
|
* Handle EventType_BufferCompleted uniquelyChris Robinson2018-12-041-18/+9
|
* 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
|
* Improve some checks for compiler analysisChris Robinson2018-12-021-1/+2
|
* Avoid a few more explicit loopsChris Robinson2018-12-021-43/+41
|
* Use a lambda to apply the NFC mixesChris Robinson2018-12-011-19/+18
|
* Rework source sample counting for mixing a bitChris Robinson2018-12-011-19/+27
|
* Try to pacify MSVC's missing a suitable default constructorChris Robinson2018-12-012-24/+22
|
* 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.
* Use std::array for the voice's PrevSamplesChris Robinson2018-11-302-6/+8
|
* Improve construction and destruction of ALvoicesChris Robinson2018-11-302-21/+54
|
* Don't bother making ALvoiceProps dynamically sizedChris Robinson2018-11-302-29/+15
|
* Store the source ID with the voice instead of the source pointerChris Robinson2018-11-292-12/+12
|
* Pass the desired resampler to CreateSampleConverterChris Robinson2018-11-283-6/+12
|