Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Cleanup alu.cpp some | Chris Robinson | 2018-12-12 | 1 | -301/+237 |
| | |||||
* | Use helpers to get the Ambisonic scales and layout maps | Chris Robinson | 2018-12-10 | 2 | -14/+32 |
| | |||||
* | A bit more cleanup | Chris Robinson | 2018-12-10 | 4 | -132/+113 |
| | |||||
* | Clean up a few more loops | Chris Robinson | 2018-12-10 | 2 | -85/+97 |
| | |||||
* | Add missing header | Chris Robinson | 2018-12-10 | 1 | -0/+1 |
| | |||||
* | Put static methods into an anonymous namespace | Chris Robinson | 2018-12-10 | 1 | -131/+128 |
| | |||||
* | Avoid some more explicit loops | Chris Robinson | 2018-12-10 | 2 | -55/+42 |
| | |||||
* | Use std::accumulate to find the max channel count | Chris Robinson | 2018-12-09 | 1 | -15/+12 |
| | |||||
* | Avoid some more explicit loops | Chris Robinson | 2018-12-09 | 1 | -13/+21 |
| | |||||
* | Pass a reference to an array for a function parameter | Chris Robinson | 2018-12-09 | 2 | -4/+4 |
| | |||||
* | Rename a couple global variables | Chris Robinson | 2018-12-09 | 3 | -17/+17 |
| | | | | Avoid clashing with an enum name | ||||
* | Add default construction to HrtfEntry | Chris Robinson | 2018-12-09 | 1 | -3/+1 |
| | |||||
* | Use a vector for LoadedHrtfs | Chris Robinson | 2018-12-09 | 1 | -67/+65 |
| | |||||
* | Avoid static global initialization functions | Chris Robinson | 2018-12-08 | 7 | -163/+53 |
| | |||||
* | Add a cmake option to specify prebuilt native tools | Chris Robinson | 2018-12-08 | 1 | -17/+25 |
| | | | | | | This should only be used with automated build systems that guarantee the native tools' binaries are up-to-date. Otherwise it's best to leave it alone so it can automatically rebuild them as needed. | ||||
* | Rename a member variable and inline a function | Chris Robinson | 2018-12-08 | 2 | -9/+6 |
| | |||||
* | Avoid several uses of memset | Chris Robinson | 2018-12-08 | 13 | -46/+38 |
| | |||||
* | Add missing include | Chris Robinson | 2018-12-08 | 1 | -0/+1 |
| | |||||
* | Increase GAIN_MIX_MAX | Chris Robinson | 2018-12-08 | 1 | -1/+1 |
| | |||||
* | A bit more cleanup | Chris Robinson | 2018-12-08 | 1 | -21/+15 |
| | |||||
* | Use member functions for BFormatDec and AmbiUpsampler | Chris Robinson | 2018-12-08 | 5 | -131/+124 |
| | |||||
* | Clean up some more loops | Chris Robinson | 2018-12-08 | 3 | -53/+55 |
| | |||||
* | Inline a simple method | Chris Robinson | 2018-12-08 | 2 | -8/+1 |
| | |||||
* | Avoid using the deprecated mem_fun_ref method | Chris Robinson | 2018-12-07 | 1 | -1/+1 |
| | |||||
* | Add fourth-order methods to the NFC filter | Chris Robinson | 2018-12-07 | 2 | -118/+119 |
| | | | | Unused, but it finishes out the currently possible implementations. | ||||
* | Use a constructor instead of a macro to initialize AsyncEvent | Chris Robinson | 2018-12-06 | 5 | -10/+12 |
| | |||||
* | Remove some more explicit loops | Chris Robinson | 2018-12-05 | 1 | -19/+21 |
| | |||||
* | Use class methods for BandSplitter and SplitterAllpass filters | Chris Robinson | 2018-12-05 | 6 | -65/+60 |
| | |||||
* | Use class methods for the NFC filters | Chris Robinson | 2018-12-05 | 6 | -142/+141 |
| | |||||
* | Use class methods for the biquad filter | Chris Robinson | 2018-12-04 | 9 | -153/+146 |
| | |||||
* | Avoid using AL types with the filters | Chris Robinson | 2018-12-04 | 4 | -48/+48 |
| | |||||
* | Avoid some more explicit loops in the filters | Chris Robinson | 2018-12-04 | 3 | -61/+53 |
| | |||||
* | Avoid more explicit loops | Chris Robinson | 2018-12-04 | 1 | -20/+21 |
| | |||||
* | Increase the async event queue size | Chris Robinson | 2018-12-04 | 1 | -1/+1 |
| | |||||
* | Handle EventType_BufferCompleted uniquely | Chris Robinson | 2018-12-04 | 3 | -18/+24 |
| | |||||
* | 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 |
| | |||||
* | Avoid a few more explicit loops | Chris Robinson | 2018-12-03 | 1 | -44/+58 |
| | |||||
* | Use a std::string for the source state change message | Chris Robinson | 2018-12-02 | 1 | -8/+5 |
| | |||||
* | Improve some checks for compiler analysis | Chris Robinson | 2018-12-02 | 3 | -10/+12 |
| | |||||
* | Add a couple missing source lock guards | Chris Robinson | 2018-12-02 | 1 | -0/+3 |
| | |||||
* | Avoid a few more explicit loops | Chris Robinson | 2018-12-02 | 2 | -44/+42 |
| | |||||
* | Use a lambda to apply the NFC mixes | Chris Robinson | 2018-12-01 | 1 | -19/+18 |
| | |||||
* | Rework source sample counting for mixing a bit | Chris Robinson | 2018-12-01 | 1 | -19/+27 |
| | |||||
* | Try to pacify MSVC's missing a suitable default constructor | Chris Robinson | 2018-12-01 | 2 | -24/+22 |
| | |||||
* | Add a missing include | Chris Robinson | 2018-12-01 | 1 | -0/+2 |
| | |||||
* | Handle source state changed events uniquely in the event loop | Chris Robinson | 2018-11-30 | 4 | -40/+36 |
| | | | | | To avoid the need of constructing the string in the mixer thread, which is commonly formatted anyway. | ||||
* | Use std::array for the voice's PrevSamples | Chris Robinson | 2018-11-30 | 3 | -7/+9 |
| | |||||
* | Improve construction and destruction of ALvoices | Chris Robinson | 2018-11-30 | 3 | -30/+65 |
| | |||||
* | Don't bother making ALvoiceProps dynamically sized | Chris Robinson | 2018-11-30 | 5 | -47/+26 |
| |