Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Avoid unnecessary extra buffers for filter chains | Chris Robinson | 2019-01-01 | 3 | -44/+46 |
| | |||||
* | Don't make BiquadFilter's src and dst restrict | Chris Robinson | 2019-01-01 | 2 | -11/+10 |
| | | | | | There's no technical reason they can't be the same since IIR filters can't be auto-vectorized anyway. | ||||
* | Handle all input channels in MixDirectHrtf | Chris Robinson | 2018-12-31 | 3 | -35/+37 |
| | |||||
* | Further improve HRTF methods to avoid masking in the inner loops | Chris Robinson | 2018-12-31 | 3 | -96/+159 |
| | |||||
* | Use an atomic bool on things that only take true or false | Chris Robinson | 2018-12-30 | 10 | -35/+35 |
| | |||||
* | Rename BackendLock to StateLock | Chris Robinson | 2018-12-30 | 9 | -73/+28 |
| | |||||
* | Don't make the backend's lock/unlock methods noexcept | Chris Robinson | 2018-12-29 | 4 | -20/+14 |
| | |||||
* | Get rid of ALCdevice_Lock/Unlock | Chris Robinson | 2018-12-29 | 2 | -9/+0 |
| | |||||
* | Clean up a member name | Chris Robinson | 2018-12-29 | 2 | -10/+10 |
| | |||||
* | Use member functions for the sample and channel converters | Chris Robinson | 2018-12-29 | 4 | -66/+55 |
| | |||||
* | Add missing includes for mem_fn | Chris Robinson | 2018-12-29 | 11 | -0/+11 |
| | |||||
* | Don't bother with an explicit Loopback backend type | Chris Robinson | 2018-12-29 | 3 | -11/+6 |
| | |||||
* | Return a unique_ptr for the backend | Chris Robinson | 2018-12-29 | 37 | -67/+67 |
| | |||||
* | Make the backend type an enum class | Chris Robinson | 2018-12-29 | 36 | -140/+135 |
| | |||||
* | Get CoreAudio capture samples in one call | Chris Robinson | 2018-12-28 | 1 | -22/+21 |
| | |||||
* | Convert the backends to use proper inheritence | Chris Robinson | 2018-12-28 | 38 | -2853/+1901 |
| | |||||
* | Use static_cast instead of reinterpret_cast where possible | Chris Robinson | 2018-12-28 | 3 | -20/+20 |
| | |||||
* | Finish turning ancillary backend methods into member functions | Chris Robinson | 2018-12-28 | 2 | -305/+301 |
| | |||||
* | Turn even more methods into member functions | Chris Robinson | 2018-12-28 | 5 | -271/+278 |
| | |||||
* | Turn some more methods into member functions | Chris Robinson | 2018-12-28 | 1 | -93/+118 |
| | |||||
* | Add a method to prefix logged function names | Chris Robinson | 2018-12-28 | 2 | -15/+9 |
| | |||||
* | Make more methods into member functions | Chris Robinson | 2018-12-27 | 3 | -351/+316 |
| | |||||
* | Turn more methods into member functions | Chris Robinson | 2018-12-27 | 3 | -167/+169 |
| | |||||
* | Turn more methods into member functions | Chris Robinson | 2018-12-27 | 3 | -85/+94 |
| | |||||
* | Make some ancillary methods into member functions | Chris Robinson | 2018-12-27 | 2 | -117/+131 |
| | |||||
* | Use vectors instead of malloc'd buffers | Chris Robinson | 2018-12-27 | 2 | -42/+32 |
| | |||||
* | Finish renaming backend struct fields | Chris Robinson | 2018-12-27 | 5 | -255/+246 |
| | |||||
* | Rename some more struct members for consistency | Chris Robinson | 2018-12-27 | 3 | -289/+285 |
| | |||||
* | Fix ring buffer vector methods | Chris Robinson | 2018-12-27 | 1 | -3/+3 |
| | |||||
* | Get rid of the unnecessary STATIC_(UP)CAST macros | Chris Robinson | 2018-12-27 | 19 | -272/+204 |
| | |||||
* | Use a proper constructor/destructor for the ALCbackend base | Chris Robinson | 2018-12-27 | 19 | -102/+96 |
| | |||||
* | Rename DSound class members for consistency | Chris Robinson | 2018-12-27 | 1 | -95/+95 |
| | |||||
* | Return unique_ptrs instead of raw pointers | Chris Robinson | 2018-12-27 | 15 | -83/+55 |
| | | | | For the ring buffer, channel converter, and sample converter. | ||||
* | Simplify resampling with CoreAudio capture | Chris Robinson | 2018-12-27 | 1 | -181/+136 |
| | | | | | The ringbuffer holds the samples from the device, and we use our own converter for resampling, calling it on demand with data from the ring buffer. | ||||
* | Use a unique_ptr for the AsyncEvents ringbuffer | Chris Robinson | 2018-12-27 | 4 | -15/+12 |
| | |||||
* | Rename some ALSA class members for consistency | Chris Robinson | 2018-12-27 | 1 | -108/+108 |
| | |||||
* | Recognize ambix as an alias for acn+sn3d | Chris Robinson | 2018-12-27 | 1 | -1/+1 |
| | |||||
* | Use std::array for appropriate source and listener properties | Chris Robinson | 2018-12-26 | 1 | -6/+4 |
| | |||||
* | Avoid a lambda to find a not-null entry in an array | Chris Robinson | 2018-12-26 | 1 | -3/+4 |
| | |||||
* | Clean up the ring buffer struct and use member functions | Chris Robinson | 2018-12-26 | 16 | -259/+272 |
| | |||||
* | Handle HRTF coefficients and values by reference where possible | Chris Robinson | 2018-12-26 | 7 | -41/+40 |
| | |||||
* | Avoid masking in ApplyCoeffs's inner loop | Chris Robinson | 2018-12-26 | 3 | -35/+62 |
| | | | | | This unfortunately does not apply to NEON, which would need a bit more reworking of its method. | ||||
* | Improve UHJ2 encoding | Chris Robinson | 2018-12-26 | 3 | -53/+51 |
| | |||||
* | Improve some post-process handlers | Chris Robinson | 2018-12-26 | 1 | -26/+26 |
| | |||||
* | More aggressively try to decrement an effect's refcount in-place | Chris Robinson | 2018-12-26 | 1 | -13/+17 |
| | |||||
* | Avoid using a local for a temporary | Chris Robinson | 2018-12-25 | 1 | -3/+3 |
| | |||||
* | Do some pre-mixing fading checks once before preparing to mix | Chris Robinson | 2018-12-25 | 1 | -73/+88 |
| | |||||
* | Add a couple more ASSUMEs for number of channels and sends | Chris Robinson | 2018-12-25 | 1 | -0/+2 |
| | |||||
* | Rework the pulseaudio backend to avoid an explicit mixer thread | Chris Robinson | 2018-12-25 | 1 | -122/+59 |
| | |||||
* | Cache the process binary path and name | Chris Robinson | 2018-12-25 | 4 | -18/+22 |
| |