mirror of https://github.com/mpv-player/mpv
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:
parent
b9a9e0a6f1
commit
c3be7e2585
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue