From c3be7e258586c40ea2bb7b4c5f71dba71ca5d485 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Wei=C3=9Fschuh?= Date: Mon, 10 Oct 2022 17:40:28 +0200 Subject: [PATCH] ao: promote ao_pipewire The AO is feature-complete now. As PipeWire also provides compatibility with PulseAudio, ALSA and Jack we should put it before those for the autodetection to work. --- audio/out/ao.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/audio/out/ao.c b/audio/out/ao.c index 397af50a78..e797ad3f9c 100644 --- a/audio/out/ao.c +++ b/audio/out/ao.c @@ -65,6 +65,9 @@ static const struct ao_driver * const audio_out_drivers[] = { #if HAVE_COREAUDIO &audio_out_coreaudio, #endif +#if HAVE_PIPEWIRE + &audio_out_pipewire, +#endif #if HAVE_PULSE &audio_out_pulse, #endif @@ -90,9 +93,6 @@ static const struct ao_driver * const audio_out_drivers[] = { #if HAVE_SDL2_AUDIO &audio_out_sdl, #endif -#if HAVE_PIPEWIRE - &audio_out_pipewire, -#endif #if HAVE_SNDIO &audio_out_sndio, #endif