Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Handle source state changed events uniquely in the event loop | Chris Robinson | 2018-11-30 | 1 | -23/+4 |
| | | | | | 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 | 2 | -6/+8 |
| | |||||
* | Improve construction and destruction of ALvoices | Chris Robinson | 2018-11-30 | 2 | -21/+54 |
| | |||||
* | Don't bother making ALvoiceProps dynamically sized | Chris Robinson | 2018-11-30 | 2 | -29/+15 |
| | |||||
* | Store the source ID with the voice instead of the source pointer | Chris Robinson | 2018-11-29 | 2 | -12/+12 |
| | |||||
* | 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 | 2 | -18/+18 |
| | |||||
* | 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 |
| | |||||
* | 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 | 4 | -8/+5 |
| | |||||
* | Swap context references in the move assignment | Chris Robinson | 2018-11-27 | 1 | -6/+1 |
| | |||||
* | Remove althrd_yield | Chris Robinson | 2018-11-26 | 3 | -4/+6 |
| | |||||
* | Use a standard mutex for the remaining locks | Chris Robinson | 2018-11-26 | 1 | -7/+0 |
| | |||||
* | Use a standard mutex for the source and effect slot locks | Chris Robinson | 2018-11-26 | 2 | -9/+4 |
| | |||||
* | Use a standard mutex for the proplock | Chris Robinson | 2018-11-26 | 2 | -6/+3 |
| | |||||
* | Use a standard mutex for the backend lock | Chris Robinson | 2018-11-26 | 1 | -24/+20 |
| | |||||
* | Remove the last remaining uses of althrd_t | Chris Robinson | 2018-11-26 | 3 | -51/+67 |
| | |||||
* | Remove althrd_t from Windows | Chris Robinson | 2018-11-26 | 1 | -1/+0 |
| | |||||
* | Replace some uses of althrd_t with std::thread | Chris Robinson | 2018-11-26 | 2 | -29/+35 |
| | |||||
* | Get rid of the last ATOMIC macro uses | Chris Robinson | 2018-11-26 | 2 | -2/+2 |
| | |||||
* | Avoid using ATOMIC_LOAD on ALCdevice::Connected | Chris Robinson | 2018-11-26 | 11 | -18/+17 |
| | |||||
* | Use a unique_ptr for the QSA backend data | Chris Robinson | 2018-11-26 | 1 | -53/+28 |
| | |||||
* | Rename some struct members | Chris Robinson | 2018-11-26 | 13 | -383/+378 |
| | |||||
* | Avoid using the ATOMIC() macro | Chris Robinson | 2018-11-26 | 8 | -19/+19 |
| | |||||
* | Avoid using ATOMIC_INIT | Chris Robinson | 2018-11-26 | 9 | -92/+45 |
| | |||||
* | Don't explicitly clear vector objects in the destructor | Chris Robinson | 2018-11-25 | 1 | -10/+6 |
| | |||||
* | Automatically clean up filters and effects with their sublists | Chris Robinson | 2018-11-25 | 1 | -10/+10 |
| | |||||
* | Automatically clean up buffers with ther sublist | Chris Robinson | 2018-11-25 | 1 | -5/+5 |
| | |||||
* | Clean up MixSource | Chris Robinson | 2018-11-25 | 1 | -104/+93 |
| | |||||
* | Avoid another DECL_TEMPLATE macro | Chris Robinson | 2018-11-25 | 5 | -31/+58 |
| | |||||
* | Avoid a separate function to clean up effect slots | Chris Robinson | 2018-11-25 | 1 | -1/+5 |
| | |||||
* | Atuomatically clean up sources with its sublist's destruction | Chris Robinson | 2018-11-25 | 2 | -5/+15 |
| | |||||
* | Properly initialize the sublists' freemask | Chris Robinson | 2018-11-25 | 1 | -1/+1 |
| | |||||
* | Move bs2b.h to a more appropriate place | Chris Robinson | 2018-11-24 | 1 | -0/+90 |
| | |||||
* | Use C++ methods a bit more | Chris Robinson | 2018-11-24 | 2 | -21/+14 |
| | |||||
* | Replace remaining uses of std::vector with al::vector | Chris Robinson | 2018-11-24 | 11 | -57/+57 |
| | | | | Which uses a custom allocator that uses our allocation functions. | ||||
* | Avoid an extraneous boolean | Chris Robinson | 2018-11-24 | 1 | -9/+4 |
| | |||||
* | Make GetContextRef return a ContextRef | Chris Robinson | 2018-11-24 | 2 | -6/+5 |
| | |||||
* | Use a normal vector to store buffer data | Chris Robinson | 2018-11-24 | 1 | -4/+4 |
| | |||||
* | Use a unique_ptr while opening a device | Chris Robinson | 2018-11-23 | 1 | -21/+22 |
| |