diff options
author | Chris Robinson <[email protected]> | 2021-12-25 19:47:09 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2021-12-25 19:47:09 -0800 |
commit | bcd40861f7d4bad7014d1e00ab5ebd252eee0c23 (patch) | |
tree | 7ca5b5e5765fee7ed601ffab10d1cdd1b7c5a9d8 /alc/alc.cpp | |
parent | 305201252e0a6818192e6e226bfe7ba57f137eb8 (diff) |
Increase the priority of the PipeWire backend
Diffstat (limited to 'alc/alc.cpp')
-rw-r--r-- | alc/alc.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/alc/alc.cpp b/alc/alc.cpp index bbcd6d01..a508fdca 100644 --- a/alc/alc.cpp +++ b/alc/alc.cpp @@ -200,6 +200,9 @@ struct BackendInfo { }; BackendInfo BackendList[] = { +#ifdef HAVE_PIPEWIRE + { "pipewire", PipeWireBackendFactory::getFactory }, +#endif #ifdef HAVE_PULSEAUDIO { "pulse", PulseBackendFactory::getFactory }, #endif @@ -221,15 +224,15 @@ BackendInfo BackendList[] = { #ifdef HAVE_SNDIO { "sndio", SndIOBackendFactory::getFactory }, #endif -#ifdef HAVE_JACK - { "jack", JackBackendFactory::getFactory }, -#endif #ifdef HAVE_ALSA { "alsa", AlsaBackendFactory::getFactory }, #endif #ifdef HAVE_OSS { "oss", OSSBackendFactory::getFactory }, #endif +#ifdef HAVE_JACK + { "jack", JackBackendFactory::getFactory }, +#endif #ifdef HAVE_DSOUND { "dsound", DSoundBackendFactory::getFactory }, #endif @@ -244,9 +247,6 @@ BackendInfo BackendList[] = { #endif { "null", NullBackendFactory::getFactory }, -#ifdef HAVE_PIPEWIRE - { "pipewire", PipeWireBackendFactory::getFactory }, -#endif #ifdef HAVE_WAVE { "wave", WaveBackendFactory::getFactory }, #endif |