aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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-065-10/+12
|
* 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-056-142/+141
|
* 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-043-18/+24
|
* 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
|
* Avoid a few more explicit loopsChris Robinson2018-12-031-44/+58
|
* Use a std::string for the source state change messageChris Robinson2018-12-021-8/+5
|
* Improve some checks for compiler analysisChris Robinson2018-12-023-10/+12
|
* Add a couple missing source lock guardsChris Robinson2018-12-021-0/+3
|
* Avoid a few more explicit loopsChris Robinson2018-12-022-44/+42
|
* 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
|
* Add a missing includeChris Robinson2018-12-011-0/+2
|
* Handle source state changed events uniquely in the event loopChris Robinson2018-11-304-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 PrevSamplesChris Robinson2018-11-303-7/+9
|
* Improve construction and destruction of ALvoicesChris Robinson2018-11-303-30/+65
|
* Don't bother making ALvoiceProps dynamically sizedChris Robinson2018-11-305-47/+26
|
* Move a variable declaration to a more appropriate placeChris Robinson2018-11-301-1/+1
|
* Avoid hard-coding a couple sizesChris Robinson2018-11-291-6/+6
|
* Store the source ID with the voice instead of the source pointerChris Robinson2018-11-294-20/+22
|
* Rename a function for consistencyChris Robinson2018-11-292-4/+4
|
* Reorganize some device membersChris Robinson2018-11-291-29/+30
|
* Pass the desired resampler to CreateSampleConverterChris Robinson2018-11-283-6/+12
|
* Clean up the converter a bitChris Robinson2018-11-282-64/+61
|
* Remove an improper Connected checkChris Robinson2018-11-281-1/+1
|
* Avoid the update size going to 0 with a relatively large device periodChris Robinson2018-11-281-1/+1
|
* Don't bother with (really) old pulseaudio headersChris Robinson2018-11-281-19/+0
|
* Don't sever a paused source from its voice on disconnectChris Robinson2018-11-281-9/+10
|
* Attempt to reconnect lost devices with alcResetDeviceSOFTChris Robinson2018-11-281-7/+19
| | | | | | | | | | | Be aware there's currently possible race conditions with PulseAudio's callbacks (the state callbacks need to be cleared while not playing). Also paused sources will assert/crash if attempted to play again without being explicitly stopped or rewound first. Both of these will eventually be fixed (though a paused source's offset will be lost regardless).
* Reduce some indentationChris Robinson2018-11-281-31/+26
|
* Avoid some explicit loopsChris Robinson2018-11-281-12/+17
|
* Avoid an unnecessary lambdaChris Robinson2018-11-281-3/+1
|
* Small cleanup for ~ALCcontext_structChris Robinson2018-11-273-19/+19
|
* Clean up the JACK backendChris Robinson2018-11-271-169/+186
|
* Add a unique_ptr alias for the ringbufferChris Robinson2018-11-271-0/+8
|
* Remove unneeded mutex checksChris Robinson2018-11-272-10/+0
|
* Avoid alsem* wrappers for al::semaphoreChris Robinson2018-11-272-146/+54
|
* Replace last uses of alsem_t with al::semaphoreChris Robinson2018-11-273-30/+16
|
* Make and use a semaphore classChris Robinson2018-11-278-30/+59
|