aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/backends/sndio.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Specify the buffer size as itself instead of the period countChris Robinson2019-04-261-9/+7
| | | | | | | Certain backends don't need a buffer size to be a strict multiple of the period count, which allows a little more flexibility. The period/update size simply acts as the minimum request, which helps control CPU load by determining how often parameter and other pre-mixing updates are processed.
* Rename DevProbe enum namesChris Robinson2019-03-191-2/+2
|
* Rename BackendLock to StateLockChris Robinson2018-12-301-4/+0
|
* Add missing includes for mem_fnChris Robinson2018-12-291-0/+1
|
* Return a unique_ptr for the backendChris Robinson2018-12-291-3/+3
|
* Make the backend type an enum classChris Robinson2018-12-291-5/+5
|
* Convert the backends to use proper inheritenceChris Robinson2018-12-281-156/+102
|
* Turn even more methods into member functionsChris Robinson2018-12-281-94/+90
|
* Use vectors instead of malloc'd buffersChris Robinson2018-12-271-27/+19
|
* Finish renaming backend struct fieldsChris Robinson2018-12-271-40/+40
|
* Get rid of the unnecessary STATIC_(UP)CAST macrosChris Robinson2018-12-271-9/+7
|
* Use a proper constructor/destructor for the ALCbackend baseChris Robinson2018-12-271-6/+6
|
* Return unique_ptrs instead of raw pointersChris Robinson2018-12-271-2/+1
| | | | For the ring buffer, channel converter, and sample converter.
* Clean up the ring buffer struct and use member functionsChris Robinson2018-12-261-7/+9
|
* Remove extraneous typedef, struct, and enum keywordsChris Robinson2018-12-241-5/+5
|
* Use a normal delete instead of ll_ringbuffer_freeChris Robinson2018-12-221-9/+7
| | | | And use RingBufferPtr in more places
* Use inline methods for the device format sizesChris Robinson2018-12-191-7/+5
|
* Remove the last remaining uses of althrd_tChris Robinson2018-11-261-30/+34
|
* Avoid using ATOMIC_LOAD on ALCdevice::ConnectedChris Robinson2018-11-261-2/+2
|
* Rename some struct membersChris Robinson2018-11-261-9/+9
|
* Avoid using the ATOMIC() macroChris Robinson2018-11-261-2/+2
|
* Avoid using ATOMIC_INITChris Robinson2018-11-261-15/+7
|
* Return the ringbuffer data pointers as a pairChris Robinson2018-11-191-10/+9
|
* Remove the atomic exchange macrosChris Robinson2018-11-191-2/+2
|
* Use a std::string for the device nameChris Robinson2018-11-181-6/+2
|
* Avoid more cases of an enum variable and type name clashChris Robinson2018-11-181-5/+5
|
* Don't pass the current thread to althrd_setnameChris Robinson2018-11-171-2/+2
|
* Convert the SndIO backend factoryChris Robinson2018-11-151-35/+11
|
* Use a regular char* for the device's nameChris Robinson2018-11-151-2/+4
|
* Use std::string instead of al_string for enumeratingChris Robinson2018-11-151-3/+4
|
* Avoid calling through the vtable in the backendsChris Robinson2018-11-131-2/+2
|
* Convert the SoundIO backend to C++Chris Robinson2018-11-121-0/+603