summaryrefslogtreecommitdiffstats
path: root/audio/out/ao.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2020-03-28 20:51:43 +0100
committerwm4 <wm4@nowhere>2020-03-28 20:58:56 +0100
commit71d218eae4b4d93ada34ff74906f71ad359c84bc (patch)
tree2e270dcca472df808892b22fce60d2347b952ff1 /audio/out/ao.c
parent27b4bdfe4c802ef5267b2f40838bdf53ad569032 (diff)
downloadmpv-71d218eae4b4d93ada34ff74906f71ad359c84bc.tar.bz2
mpv-71d218eae4b4d93ada34ff74906f71ad359c84bc.tar.xz
ao_sndio: remove this audio output
It was always marked as "experimental", and had inherent problems that were never fixed. It was disabled by default, and I don't think anyone is using it.
Diffstat (limited to 'audio/out/ao.c')
-rw-r--r--audio/out/ao.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/audio/out/ao.c b/audio/out/ao.c
index 42e2cf63d5..a414b1b6b9 100644
--- a/audio/out/ao.c
+++ b/audio/out/ao.c
@@ -41,7 +41,6 @@ extern const struct ao_driver audio_out_audiounit;
extern const struct ao_driver audio_out_coreaudio;
extern const struct ao_driver audio_out_coreaudio_exclusive;
extern const struct ao_driver audio_out_rsound;
-extern const struct ao_driver audio_out_sndio;
extern const struct ao_driver audio_out_pulse;
extern const struct ao_driver audio_out_jack;
extern const struct ao_driver audio_out_openal;
@@ -89,9 +88,6 @@ static const struct ao_driver * const audio_out_drivers[] = {
#if HAVE_SDL2_AUDIO
&audio_out_sdl,
#endif
-#if HAVE_SNDIO
- &audio_out_sndio,
-#endif
&audio_out_null,
#if HAVE_COREAUDIO
&audio_out_coreaudio_exclusive,