Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Store buffer info in the queue entry | Chris Robinson | 2021-01-24 | 18 | -73/+81 |
| | |||||
* | Set the correct default buffer bits/format | Chris Robinson | 2021-01-22 | 1 | -2/+2 |
| | |||||
* | Remove an unnecessary semicolon | Chris Robinson | 2021-01-22 | 1 | -1/+1 |
| | |||||
* | Use if constexpr when possible | Chris Robinson | 2021-01-22 | 3 | -4/+6 |
| | |||||
* | Make PopCount and CountTrailingZeros more standard-like | Chris Robinson | 2021-01-22 | 4 | -10/+14 |
| | |||||
* | Use a standard bitset for bitfield flags | Chris Robinson | 2021-01-22 | 8 | -53/+56 |
| | |||||
* | Make the endian test more C++-like | Chris Robinson | 2021-01-21 | 3 | -15/+19 |
| | |||||
* | Fix handling paused devices with the wave writer backend | Chris Robinson | 2021-01-21 | 1 | -10/+14 |
| | |||||
* | Simplify a division | Chris Robinson | 2021-01-21 | 1 | -1/+1 |
| | | | | | The division opcode typically also generates the remainder, making the result of x%y free with x/y. | ||||
* | Avoid declaring some variables multiple times | Chris Robinson | 2021-01-21 | 1 | -6/+7 |
| | |||||
* | Avoid global constexpr arrays | Chris Robinson | 2021-01-21 | 6 | -56/+54 |
| | |||||
* | Avoid extra copies/work when reading HRTF data | Chris Robinson | 2021-01-20 | 1 | -8/+12 |
| | |||||
* | Avoid calling readAdvance in a loop | Chris Robinson | 2021-01-17 | 1 | -3/+5 |
| | |||||
* | Don't assume the ring buffer's read vector is the next writable space | Chris Robinson | 2021-01-15 | 1 | -30/+36 |
| | | | | | This is untrue since the ring buffer leaves one element unwritten, so there's one extra element to be written once a readable element is read. | ||||
* | Use a span instead of passing a vector by reference | Chris Robinson | 2021-01-11 | 1 | -5/+5 |
| | |||||
* | Make sure proper names are used for querying PulseAudio info | Chris Robinson | 2021-01-10 | 1 | -5/+5 |
| | |||||
* | Pass nullptr to pulse for default device | Ilya Fedin | 2021-01-10 | 1 | -42/+13 |
| | |||||
* | Quickly fade out samples of a stopping voice | Chris Robinson | 2021-01-08 | 1 | -0/+20 |
| | | | | | Rather than linearly fading out the mix over the mixing update, logarithmically fade out the post-resampled samples by approx -60dB per millisecond. | ||||
* | Avoid duplicating an inline template function | Chris Robinson | 2021-01-06 | 1 | -21/+4 |
| | |||||
* | Properly trace the new HRTF delay for the B-Format decoder | Chris Robinson | 2021-01-06 | 1 | -2/+2 |
| | |||||
* | Use a template to read integers with endian awareness | Chris Robinson | 2021-01-06 | 1 | -70/+83 |
| | |||||
* | Return non-const from the resampler function | Chris Robinson | 2021-01-02 | 1 | -14/+4 |
| | |||||
* | Move cpu_caps and fpu_ctrl to core | Chris Robinson | 2020-12-31 | 8 | -253/+6 |
| | |||||
* | Remove an unnecessary include | Chris Robinson | 2020-12-31 | 1 | -2/+0 |
| | |||||
* | Add NEON-enhanced FIR loops for convolution and UHJ | Chris Robinson | 2020-12-31 | 1 | -0/+15 |
| | |||||
* | Assume run-time NEON support if detected by cmake | Chris Robinson | 2020-12-31 | 1 | -45/+2 |
| | |||||
* | Combine multiple functions into one | Chris Robinson | 2020-12-28 | 1 | -8/+2 |
| | |||||
* | Return an intrusive_ptr from EffectStateFactory::create | Chris Robinson | 2020-12-28 | 15 | -19/+34 |
| | |||||
* | Remove extraneous semicolor | Chris Robinson | 2020-12-28 | 1 | -1/+1 |
| | |||||
* | Avoid including voice.h in alcontext.h | Chris Robinson | 2020-12-27 | 5 | -1/+8 |
| | |||||
* | Reduce a few lines | Chris Robinson | 2020-12-27 | 1 | -4/+1 |
| | |||||
* | Reorder some device fields | Chris Robinson | 2020-12-27 | 1 | -25/+26 |
| | |||||
* | Use a unique_ptr to hold DistanceComp data | Chris Robinson | 2020-12-27 | 4 | -48/+49 |
| | |||||
* | Use smaller types for enums | Chris Robinson | 2020-12-27 | 3 | -4/+4 |
| | |||||
* | Reorder some context properties | Chris Robinson | 2020-12-27 | 1 | -39/+42 |
| | |||||
* | Use a uint for a bitfield | Chris Robinson | 2020-12-27 | 2 | -3/+3 |
| | |||||
* | Move the WetBuffer reference to EffectSlot | Chris Robinson | 2020-12-27 | 5 | -11/+23 |
| | |||||
* | Combine EffectState::deviceUpdate with setBuffer | Chris Robinson | 2020-12-26 | 16 | -41/+31 |
| | |||||
* | Avoid AL enums for the EffectSlot type | Chris Robinson | 2020-12-26 | 3 | -7/+27 |
| | |||||
* | 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 | 7 | -7/+12 |
| | | | | | | 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 | 7 | -96/+96 |
| | |||||
* | Return an optional for an error | Chris Robinson | 2020-12-25 | 1 | -3/+6 |
| | |||||
* | Avoid dynamic vectors in AmbDecConf | Chris Robinson | 2020-12-25 | 2 | -17/+18 |
| | | | | Also add a bit more sanity checking | ||||
* | Update a comment and type used in the convolution effect | Chris Robinson | 2020-12-25 | 1 | -11/+11 |
| | |||||
* | Rename From2D to FromACN2D | Chris Robinson | 2020-12-25 | 4 | -6/+6 |
| | |||||
* | Move the ambdec loader to core | Chris Robinson | 2020-12-25 | 4 | -484/+2 |
| | |||||
* | Remove unnecessary includes | Chris Robinson | 2020-12-24 | 4 | -8/+0 |
| | |||||
* | Avoid AL types and enums in the effect processors | Chris Robinson | 2020-12-24 | 12 | -142/+147 |
| | |||||
* | Move alexcpt to core | Chris Robinson | 2020-12-24 | 18 | -18/+2 |
| |