aboutsummaryrefslogtreecommitdiffstats
path: root/alc/backends/jack.cpp
Commit message (Expand)AuthorAgeFilesLines
* Avoid some const_castsChris Robinson2024-01-031-2/+2
* Avoid using bit_cast for pointer typesChris Robinson2024-01-031-13/+7
* Use string_views for querying config parametersChris Robinson2023-12-211-5/+5
* Remove DEF_NEWDELChris Robinson2023-12-161-2/+0
* Mostly finish cleanup for backendsChris Robinson2023-12-111-1/+2
* Clean up some more clang-tidy warningsChris Robinson2023-12-081-3/+3
* Replace a global function with a member functionChris Robinson2023-12-031-1/+1
* Use a string_view for the backend open methodChris Robinson2023-08-061-9/+9
* Rename threads.cpp/h to alsem.cpp/hChris Robinson2023-06-011-1/+1
* Move althrd_setname to its own sourceChris Robinson2023-06-011-0/+1
* Avoid using al::vector unnecessarilyChris Robinson2023-05-121-2/+3
* Clean up some more includesChris Robinson2023-05-121-2/+2
* Remove custom stuff for standardChris Robinson2023-05-041-1/+1
* Make and use a bit_cast functionChris Robinson2023-05-041-2/+3
* Use macros for the likely/unlikely attributesChris Robinson2023-03-011-2/+2
* clang-tidy cleanups (#800)Rosen Penev2023-01-151-1/+1
* Don't explicitly try to spawn servers by defaultChris Robinson2023-01-141-1/+1
* Avoid extraneous temporaries when filling vectorsChris Robinson2022-12-151-4/+9
* Avoid using a macro to wrap standard attributesChris Robinson2022-12-061-2/+2
* Avoid LIKELY/UNLIKELY macrosChris Robinson2022-12-051-2/+2
* Simplify connecting JACK portsChris Robinson2021-07-251-13/+11
* Use a unique_ptr to auto-free the jack ports listChris Robinson2021-06-121-20/+24
* Set the JACK output ports as terminalChris Robinson2021-06-121-1/+1
* Give a name to a lambdaChris Robinson2021-06-111-7/+7
* Improve name duplication handling with JACKChris Robinson2021-06-101-26/+63
* Add an option to mix directly in the JACK callbackChris Robinson2021-06-081-31/+80
* Update include headersChris Robinson2021-04-271-4/+4
* Use the DeviceBase for the backendChris Robinson2021-04-241-2/+2
* Move helpers.cpp to coreChris Robinson2021-04-221-1/+1
* Allow calling BackendBase::open multiple times on playback devicesChris Robinson2021-03-081-15/+16
* Add enumeration to the JACK backendChris Robinson2021-02-131-35/+84
* Remove an unnecessary semicolonChris Robinson2021-01-221-1/+1
* Move alexcpt to coreChris Robinson2020-12-241-1/+0
* Avoid AL/ALC types in the backendsChris Robinson2020-12-171-10/+10
* Don't use ALC error enums for the backend error codeChris Robinson2020-12-171-7/+9
* Move logging to coreChris Robinson2020-12-171-1/+1
* Allow JACK to enumerate custom devicesChris Robinson2020-09-101-4/+75
* Change a couple functions into member functionsChris Robinson2020-08-071-2/+2
* Add an option to auto-connect JACK portsChris Robinson2020-08-051-11/+14
* Use std::array instead of some C-style arraysChris Robinson2020-08-051-23/+22
* Move a couple related functions to the backend baseChris Robinson2020-06-121-1/+1
* Don't return a bool from the backend start methodChris Robinson2020-04-281-15/+8
* Use standard attribute declarationsChris Robinson2020-04-131-0/+1
* Clean up some more unnecessary uses of AL typesChris Robinson2020-04-081-1/+1
* Get rid of a redundant enumChris Robinson2020-03-301-3/+3
* Return the enumerated device names from the backendChris Robinson2020-03-301-8/+9
* Remove the mutex from the backend baseChris Robinson2020-03-291-2/+4
* Avoid AL[C]boolean for internal useChris Robinson2020-03-281-5/+5
* Remove unnecessary locks now that the mixer doesn't require oneChris Robinson2020-02-261-4/+2
* Fix JACK process callback handlingChris Robinson2020-01-121-50/+48