diff options
author | Chris Robinson <[email protected]> | 2021-08-06 21:34:17 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2021-08-06 21:38:23 -0700 |
commit | dc9b39f4192b0ab28bdfb2699fbcef591f4cf290 (patch) | |
tree | 56d82160ab861f1ef66a05bed4fb0c188044f4eb /alc/alc.cpp | |
parent | 4cc820bb5c4c3c93ec85fed5a5bf7978b6bd14b1 (diff) |
Implement PipeWire playback
Not yet an auto-selected backend. This doesn't yet support enumeration, or
matching the AL device format to the output.
Diffstat (limited to 'alc/alc.cpp')
-rw-r--r-- | alc/alc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/alc.cpp b/alc/alc.cpp index c3bbdf29..6c68a995 100644 --- a/alc/alc.cpp +++ b/alc/alc.cpp @@ -243,10 +243,10 @@ BackendInfo BackendList[] = { { "sdl2", SDL2BackendFactory::getFactory }, #endif + { "null", NullBackendFactory::getFactory }, #ifdef HAVE_PIPEWIRE { "pipewire", PipeWireBackendFactory::getFactory }, #endif - { "null", NullBackendFactory::getFactory }, #ifdef HAVE_WAVE { "wave", WaveBackendFactory::getFactory }, #endif |