aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/backends/jack.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Specify the buffer size as itself instead of the period countChris Robinson2019-04-261-5/+5
| | | | | | | 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.
* Remove the backend factory deinit methodChris Robinson2019-04-141-9/+0
| | | | | | It was never actually called anywhere, and there's no safe place where it can be called. It's probably better to let the individual backends worry about cleaning themselves up anyway.
* Rename DevProbe enum namesChris Robinson2019-03-191-2/+2
|
* Remove redundant void argument list in function defFilip Gawin2019-01-091-1/+1
|
* Use c++ headersFilip Gawin2019-01-091-2/+2
|
* Rename BackendLock to StateLockChris Robinson2018-12-301-2/+1
|
* Add missing includes for mem_fnChris Robinson2018-12-291-0/+1
|
* Return a unique_ptr for the backendChris Robinson2018-12-291-2/+2
|
* Make the backend type an enum classChris Robinson2018-12-291-4/+4
|
* Convert the backends to use proper inheritenceChris Robinson2018-12-281-112/+87
|
* Turn more methods into member functionsChris Robinson2018-12-271-63/+65
|
* Get rid of the unnecessary STATIC_(UP)CAST macrosChris Robinson2018-12-271-3/+2
|
* Use a proper constructor/destructor for the ALCbackend baseChris Robinson2018-12-271-3/+3
|
* Return unique_ptrs instead of raw pointersChris Robinson2018-12-271-2/+2
| | | | For the ring buffer, channel converter, and sample converter.
* Clean up the ring buffer struct and use member functionsChris Robinson2018-12-261-7/+10
|
* Remove extraneous typedef, struct, and enum keywordsChris Robinson2018-12-241-1/+1
|
* Use inline methods for the device format sizesChris Robinson2018-12-191-9/+3
|
* Clean up the JACK backendChris Robinson2018-11-271-169/+186
|
* Replace last uses of alsem_t with al::semaphoreChris Robinson2018-11-271-8/+4
|
* Replace some uses of althrd_t with std::threadChris Robinson2018-11-261-15/+18
|
* Avoid using ATOMIC_LOAD on ALCdevice::ConnectedChris Robinson2018-11-261-1/+1
|
* Rename some struct membersChris Robinson2018-11-261-4/+4
|
* Avoid using the ATOMIC() macroChris Robinson2018-11-261-1/+1
|
* Avoid using ATOMIC_INITChris Robinson2018-11-261-11/+4
|
* Use proper time types for the device clock time and latencyChris Robinson2018-11-221-2/+2
|
* Return the ringbuffer data pointers as a pairChris Robinson2018-11-191-14/+12
|
* Remove the atomic exchange macrosChris Robinson2018-11-191-1/+1
|
* Use a std::string for the device nameChris Robinson2018-11-181-5/+3
|
* Avoid more cases of an enum variable and type name clashChris Robinson2018-11-181-3/+3
|
* Don't pass the current thread to althrd_setnameChris Robinson2018-11-171-1/+1
|
* Convert the JACK backend factoryChris Robinson2018-11-151-33/+18
|
* Use a regular char* for the device's nameChris Robinson2018-11-151-3/+4
|
* Avoid some more uses of al_stringChris Robinson2018-11-151-4/+3
|
* Use std::string instead of al_string for enumeratingChris Robinson2018-11-151-2/+3
|
* Convert the JACK backend to C++Chris Robinson2018-11-131-0/+608