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.
This commit is contained in:
Thomas Weißschuh 2022-10-10 17:40:28 +02:00 committed by Philip Langdale
parent b9a9e0a6f1
commit c3be7e2585
1 changed files with 3 additions and 3 deletions

View File

@ -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