aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
Commit message (Expand)AuthorAgeFilesLines
* Handle source state changed events uniquely in the event loopChris Robinson2018-11-301-23/+4
* Use std::array for the voice's PrevSamplesChris Robinson2018-11-302-6/+8
* Improve construction and destruction of ALvoicesChris Robinson2018-11-302-21/+54
* Don't bother making ALvoiceProps dynamically sizedChris Robinson2018-11-302-29/+15
* Store the source ID with the voice instead of the source pointerChris Robinson2018-11-292-12/+12
* 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
* 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-272-18/+18
* Clean up the JACK backendChris Robinson2018-11-271-169/+186
* Add a unique_ptr alias for the ringbufferChris Robinson2018-11-271-0/+8
* Replace last uses of alsem_t with al::semaphoreChris Robinson2018-11-273-30/+16
* Make and use a semaphore classChris Robinson2018-11-274-8/+5
* Swap context references in the move assignmentChris Robinson2018-11-271-6/+1
* Remove althrd_yieldChris Robinson2018-11-263-4/+6
* Use a standard mutex for the remaining locksChris Robinson2018-11-261-7/+0
* Use a standard mutex for the source and effect slot locksChris Robinson2018-11-262-9/+4
* Use a standard mutex for the proplockChris Robinson2018-11-262-6/+3
* Use a standard mutex for the backend lockChris Robinson2018-11-261-24/+20
* Remove the last remaining uses of althrd_tChris Robinson2018-11-263-51/+67
* Remove althrd_t from WindowsChris Robinson2018-11-261-1/+0
* Replace some uses of althrd_t with std::threadChris Robinson2018-11-262-29/+35
* Get rid of the last ATOMIC macro usesChris Robinson2018-11-262-2/+2
* Avoid using ATOMIC_LOAD on ALCdevice::ConnectedChris Robinson2018-11-2611-18/+17
* Use a unique_ptr for the QSA backend dataChris Robinson2018-11-261-53/+28
* Rename some struct membersChris Robinson2018-11-2613-383/+378
* Avoid using the ATOMIC() macroChris Robinson2018-11-268-19/+19
* Avoid using ATOMIC_INITChris Robinson2018-11-269-92/+45
* Don't explicitly clear vector objects in the destructorChris Robinson2018-11-251-10/+6
* Automatically clean up filters and effects with their sublistsChris Robinson2018-11-251-10/+10
* Automatically clean up buffers with ther sublistChris Robinson2018-11-251-5/+5
* Clean up MixSourceChris Robinson2018-11-251-104/+93
* Avoid another DECL_TEMPLATE macroChris Robinson2018-11-255-31/+58
* Avoid a separate function to clean up effect slotsChris Robinson2018-11-251-1/+5
* Atuomatically clean up sources with its sublist's destructionChris Robinson2018-11-252-5/+15
* Properly initialize the sublists' freemaskChris Robinson2018-11-251-1/+1
* Move bs2b.h to a more appropriate placeChris Robinson2018-11-241-0/+90
* Use C++ methods a bit moreChris Robinson2018-11-242-21/+14
* Replace remaining uses of std::vector with al::vectorChris Robinson2018-11-2411-57/+57
* Avoid an extraneous booleanChris Robinson2018-11-241-9/+4
* Make GetContextRef return a ContextRefChris Robinson2018-11-242-6/+5
* Use a normal vector to store buffer dataChris Robinson2018-11-241-4/+4
* Use a unique_ptr while opening a deviceChris Robinson2018-11-231-21/+22