summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-01-07 22:31:34 +0100
committerDiogo Franco (Kovensky) <diogomfranco@gmail.com>2015-01-25 17:00:07 +0900
commit99dc774dbbee5628ae43da5c9227424e9951e5e0 (patch)
treeb64c8027673f5e73496a2504b34d12b7a71eeeeb
parent83d44a4f6afc584ce2c7cfcda964575add7d5fbe (diff)
downloadmpv-99dc774dbbee5628ae43da5c9227424e9951e5e0.tar.bz2
mpv-99dc774dbbee5628ae43da5c9227424e9951e5e0.tar.xz
ao: remove coreaudio_exclusive from autoprobing list
Apparently this was a mistake.
-rw-r--r--audio/out/ao.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/out/ao.c b/audio/out/ao.c
index 893699e2f5..0dd8fd3a15 100644
--- a/audio/out/ao.c
+++ b/audio/out/ao.c
@@ -89,11 +89,11 @@ static const struct ao_driver * const audio_out_drivers[] = {
#if HAVE_SNDIO
&audio_out_sndio,
#endif
+ &audio_out_null,
+ // should not be auto-selected:
#if HAVE_COREAUDIO
&audio_out_coreaudio_exclusive,
#endif
- &audio_out_null,
- // should not be auto-selected:
&audio_out_pcm,
#if HAVE_ENCODING
&audio_out_lavc,