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
|
#if HAVE_COREAUDIO
|
||||||
&audio_out_coreaudio,
|
&audio_out_coreaudio,
|
||||||
#endif
|
#endif
|
||||||
|
#if HAVE_PIPEWIRE
|
||||||
|
&audio_out_pipewire,
|
||||||
|
#endif
|
||||||
#if HAVE_PULSE
|
#if HAVE_PULSE
|
||||||
&audio_out_pulse,
|
&audio_out_pulse,
|
||||||
#endif
|
#endif
|
||||||
|
@ -90,9 +93,6 @@ static const struct ao_driver * const audio_out_drivers[] = {
|
||||||
#if HAVE_SDL2_AUDIO
|
#if HAVE_SDL2_AUDIO
|
||||||
&audio_out_sdl,
|
&audio_out_sdl,
|
||||||
#endif
|
#endif
|
||||||
#if HAVE_PIPEWIRE
|
|
||||||
&audio_out_pipewire,
|
|
||||||
#endif
|
|
||||||
#if HAVE_SNDIO
|
#if HAVE_SNDIO
|
||||||
&audio_out_sndio,
|
&audio_out_sndio,
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue