summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-01-07 22:31:34 +0100
committerwm4 <wm4@nowhere>2015-01-07 22:31:34 +0100
commit5a7719594e8d14c7362ced85e3220b63130251e3 (patch)
treeaf9ebd2acc95298c80ed52e5c018e80e74648d81
parentdc2d0539c78dea5d4a21f6bf79846c1bbedbb055 (diff)
downloadmpv-5a7719594e8d14c7362ced85e3220b63130251e3.tar.bz2
mpv-5a7719594e8d14c7362ced85e3220b63130251e3.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 1590066c83..26cfde212e 100644
--- a/audio/out/ao.c
+++ b/audio/out/ao.c
@@ -85,11 +85,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,