Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use a unique_ptr to hold DistanceComp data | Chris Robinson | 2020-12-27 | 1 | -28/+34 |
| | |||||
* | Move the WetBuffer reference to EffectSlot | Chris Robinson | 2020-12-27 | 1 | -6/+5 |
| | |||||
* | Combine variable terms separate from the scaling weights | Chris Robinson | 2020-12-26 | 1 | -7/+7 |
| | |||||
* | Add a crossover frequency field for the device | Chris Robinson | 2020-12-26 | 1 | -1/+4 |
| | | | | | | Used when upsampling low-order ambisonic signals to higher order. Rather than a hardcoded 400hz, it ensures a consistent crossover point when an ambdec configuration is used. It can also allow for an alsoft config option. | ||||
* | Use more constexpr variables instead of macros | Chris Robinson | 2020-12-25 | 1 | -1/+1 |
| | |||||
* | Return an optional for an error | Chris Robinson | 2020-12-25 | 1 | -3/+6 |
| | |||||
* | Avoid dynamic vectors in AmbDecConf | Chris Robinson | 2020-12-25 | 1 | -14/+15 |
| | | | | Also add a bit more sanity checking | ||||
* | Rename From2D to FromACN2D | Chris Robinson | 2020-12-25 | 1 | -2/+2 |
| | |||||
* | Move the ambdec loader to core | Chris Robinson | 2020-12-25 | 1 | -1/+1 |
| | |||||
* | Move logging to core | Chris Robinson | 2020-12-17 | 1 | -1/+1 |
| | |||||
* | Move ambidefs.h to core | Chris Robinson | 2020-12-12 | 1 | -12/+1 |
| | |||||
* | Don't modify the IR size of loaded HRTFs | Chris Robinson | 2020-12-11 | 1 | -6/+14 |
| | |||||
* | Change some macros into constexpr variables | Chris Robinson | 2020-12-04 | 1 | -38/+38 |
| | |||||
* | Move a couple more things to core | Chris Robinson | 2020-12-04 | 1 | -2/+2 |
| | |||||
* | Move some sources to a separate directory | Chris Robinson | 2020-11-27 | 1 | -1/+1 |
| | | | | To begin separating the ALC interfaces from internal ones. | ||||
* | Use clearer variable names | Chris Robinson | 2020-11-20 | 1 | -38/+41 |
| | |||||
* | Use a separate structure for the active effect slot properties | Chris Robinson | 2020-11-07 | 1 | -4/+5 |
| | |||||
* | Use a range-for loop instead of for_each | Chris Robinson | 2020-11-06 | 1 | -8/+8 |
| | |||||
* | Avoid a full wipe and reallocation of wet buffers | Chris Robinson | 2020-11-02 | 1 | -11/+34 |
| | |||||
* | Store the wet buffers in the context | Chris Robinson | 2020-11-02 | 1 | -6/+21 |
| | | | | | | This is rather ugly, but we need the wet buffers to remain allocated after its effect slot is deleted, because a voice can still use it for its final fade-out mix. | ||||
* | Replace some more macros with constexpr variables | Chris Robinson | 2020-10-21 | 1 | -2/+2 |
| | |||||
* | Silence warning about unused return values | Jan Niklas Hasse | 2020-10-20 | 1 | -1/+1 |
| | | | | | warning C4834: discarding return value of function with 'nodiscard' attribute | ||||
* | Use enum class for a couple enums | Chris Robinson | 2020-09-01 | 1 | -11/+11 |
| | |||||
* | Use a separate structure for buffer storage | Chris Robinson | 2020-08-28 | 1 | -5/+5 |
| | |||||
* | Avoid an unnecessary local variable | Chris Robinson | 2020-06-16 | 1 | -6/+4 |
| | |||||
* | Remove the Lower channel labels and rename the Upper labels | Chris Robinson | 2020-06-15 | 1 | -8/+7 |
| | |||||
* | Don't bother with otherwise unused Aux channels | Chris Robinson | 2020-06-15 | 1 | -28/+2 |
| | |||||
* | Handle the front stablizer with the B-Format decoder | Chris Robinson | 2020-06-15 | 1 | -10/+92 |
| | |||||
* | Use dual-band for the internal quad and 7.1 decoders | Chris Robinson | 2020-05-07 | 1 | -14/+45 |
| | |||||
* | Allow declaring internal dual-band decoders | Chris Robinson | 2020-05-07 | 1 | -12/+45 |
| | |||||
* | Update the quad and 7.1 decoders | Chris Robinson | 2020-05-06 | 1 | -17/+17 |
| | |||||
* | Make the built-in decoders more flexible | Chris Robinson | 2020-05-06 | 1 | -103/+154 |
| | |||||
* | Make BuildBFormatHrtf a member of DirectHrtfState | Chris Robinson | 2020-05-01 | 1 | -3/+3 |
| | |||||
* | Avoid an unnecessary out parameter | Chris Robinson | 2020-04-21 | 1 | -2/+6 |
| | |||||
* | Clean up some more unnecessary uses of AL types | Chris Robinson | 2020-04-08 | 1 | -1/+2 |
| | |||||
* | Avoid ALfloat in some places | Chris Robinson | 2020-04-08 | 1 | -9/+9 |
| | |||||
* | Avoid AL[C]boolean for internal use | Chris Robinson | 2020-03-28 | 1 | -1/+1 |
| | |||||
* | Avoid some pre-C++14 workarounds | Chris Robinson | 2020-03-22 | 1 | -2/+2 |
| | |||||
* | Use an intrusive_ptr for the device's HrtfStore | Chris Robinson | 2020-03-01 | 1 | -14/+7 |
| | |||||
* | Fix the output channel count for the B-Format decoder | Chris Robinson | 2020-01-19 | 1 | -3/+3 |
| | |||||
* | Avoid an extraneous index map | Chris Robinson | 2020-01-15 | 1 | -5/+5 |
| | |||||
* | Make a couple helper methods to create BFormatDec | Chris Robinson | 2020-01-15 | 1 | -6/+5 |
| | |||||
* | Repack B-Format decoder fields | Chris Robinson | 2020-01-15 | 1 | -4/+4 |
| | | | | This should better provide sequential access. | ||||
* | Use a span for a fixed-size array reference | Chris Robinson | 2020-01-13 | 1 | -9/+3 |
| | |||||
* | Use temporaries for repeated values | Chris Robinson | 2020-01-05 | 1 | -12/+13 |
| | |||||
* | Avoid more duplicate arrays | Chris Robinson | 2020-01-04 | 1 | -14/+10 |
| | |||||
* | Combine identical arrays | Chris Robinson | 2020-01-04 | 1 | -0/+2 |
| | |||||
* | Use a span instead of an array+size | Chris Robinson | 2020-01-04 | 1 | -4/+3 |
| | |||||
* | Avoid a duplicate array | Chris Robinson | 2020-01-04 | 1 | -5/+4 |
| | |||||
* | Rename a couple structs for clarity | Chris Robinson | 2019-12-06 | 1 | -28/+28 |
| |