Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | Move a variable declaration to a more appropriate place | Chris Robinson | 2018-11-30 | 1 | -1/+1 |
| | |||||
* | Avoid hard-coding a couple sizes | Chris Robinson | 2018-11-29 | 1 | -6/+6 |
| | |||||
* | Store the source ID with the voice instead of the source pointer | Chris Robinson | 2018-11-29 | 4 | -20/+22 |
| | |||||
* | Rename a function for consistency | Chris Robinson | 2018-11-29 | 2 | -4/+4 |
| | |||||
* | Reorganize some device members | Chris Robinson | 2018-11-29 | 1 | -29/+30 |
| | |||||
* | Pass the desired resampler to CreateSampleConverter | Chris Robinson | 2018-11-28 | 3 | -6/+12 |
| | |||||
* | Clean up the converter a bit | Chris Robinson | 2018-11-28 | 2 | -64/+61 |
| | |||||
* | Remove an improper Connected check | Chris Robinson | 2018-11-28 | 1 | -1/+1 |
| | |||||
* | Avoid the update size going to 0 with a relatively large device period | Chris Robinson | 2018-11-28 | 1 | -1/+1 |
| | |||||
* | Don't bother with (really) old pulseaudio headers | Chris Robinson | 2018-11-28 | 1 | -19/+0 |
| | |||||
* | Don't sever a paused source from its voice on disconnect | Chris Robinson | 2018-11-28 | 1 | -9/+10 |
| | |||||
* | Attempt to reconnect lost devices with alcResetDeviceSOFT | Chris Robinson | 2018-11-28 | 1 | -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 indentation | Chris Robinson | 2018-11-28 | 1 | -31/+26 |
| | |||||
* | Avoid some explicit loops | Chris Robinson | 2018-11-28 | 1 | -12/+17 |
| | |||||
* | Avoid an unnecessary lambda | Chris Robinson | 2018-11-28 | 1 | -3/+1 |
| | |||||
* | Small cleanup for ~ALCcontext_struct | Chris Robinson | 2018-11-27 | 3 | -19/+19 |
| | |||||
* | Clean up the JACK backend | Chris Robinson | 2018-11-27 | 1 | -169/+186 |
| | |||||
* | Add a unique_ptr alias for the ringbuffer | Chris Robinson | 2018-11-27 | 1 | -0/+8 |
| | |||||
* | Remove unneeded mutex checks | Chris Robinson | 2018-11-27 | 2 | -10/+0 |
| | |||||
* | Avoid alsem* wrappers for al::semaphore | Chris Robinson | 2018-11-27 | 2 | -146/+54 |
| | |||||
* | Replace last uses of alsem_t with al::semaphore | Chris Robinson | 2018-11-27 | 3 | -30/+16 |
| | |||||
* | Make and use a semaphore class | Chris Robinson | 2018-11-27 | 8 | -30/+59 |
| | |||||
* | Return a signed integer from altime_get | Chris Robinson | 2018-11-27 | 3 | -10/+10 |
| | |||||
* | Add the appropriate include for the _POSIX_TIMERS macro | Chris Robinson | 2018-11-27 | 1 | -0/+1 |
| | |||||
* | Swap context references in the move assignment | Chris Robinson | 2018-11-27 | 1 | -6/+1 |
| | |||||
* | Disable MSVC warning C4065 | Chris Robinson | 2018-11-27 | 1 | -1/+1 |
| | | | | "switch statement contains 'default' but no 'case' labels" | ||||
* | Fix use of clock_gettime | Chris Robinson | 2018-11-27 | 1 | -2/+2 |
| | |||||
* | Avoid relying on struct timespec | Chris Robinson | 2018-11-26 | 4 | -55/+37 |
| | |||||
* | Avoid including threads.h in the example helpers | Chris Robinson | 2018-11-26 | 3 | -5/+7 |
| | |||||
* | Remove althrd_yield | Chris Robinson | 2018-11-26 | 7 | -24/+15 |
| | |||||
* | Remove unused almtx stuff | Chris Robinson | 2018-11-26 | 2 | -157/+2 |
| | |||||
* | Use a standard mutex for the remaining locks | Chris Robinson | 2018-11-26 | 7 | -77/+56 |
| | |||||
* | Use a standard mutex for the source and effect slot locks | Chris Robinson | 2018-11-26 | 4 | -54/+49 |
| | |||||
* | Use a standard mutex for the proplock | Chris Robinson | 2018-11-26 | 7 | -46/+43 |
| | |||||
* | Use a standard mutex for the backend lock | Chris Robinson | 2018-11-26 | 4 | -28/+24 |
| | |||||
* | Remove the last remaining uses of althrd_t | Chris Robinson | 2018-11-26 | 5 | -143/+67 |
| | |||||
* | Merge pull request #249 from wangwenx190/patch-win10-sdk | kcat | 2018-11-26 | 1 | -0/+4 |
|\ | | | | | Support build with latest Win10 SDK | ||||
| * | Update FindWindowsSDK.cmake | wangwenx190 | 2018-11-27 | 1 | -4/+4 |
| | | |||||
| * | Update FindWindowsSDK.cmake | wangwenx190 | 2018-11-27 | 1 | -0/+4 |
|/ | | | Support latest Win10 SDK. |