summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Weißschuh <thomas@t-8ch.de>2022-10-10 17:40:28 +0200
committerPhilip Langdale <github.philipl@overt.org>2022-10-24 11:09:34 -0700
commitc3be7e258586c40ea2bb7b4c5f71dba71ca5d485 (patch)
treed4143cfb7840eb1fd9602a01aee5e46f1513ac0d
parentb9a9e0a6f1c9995b2100d3b68d58f91bb0fc0b51 (diff)
downloadmpv-c3be7e258586c40ea2bb7b4c5f71dba71ca5d485.tar.bz2
mpv-c3be7e258586c40ea2bb7b4c5f71dba71ca5d485.tar.xz
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.
-rw-r--r--audio/out/ao.c6
1 files 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