summaryrefslogtreecommitdiffstats
path: root/audio/out/ao.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-01-06 13:48:43 +0100
committerwm4 <wm4@nowhere>2016-01-06 13:52:15 +0100
commit3e90a5fe81229e4c0acd8e5afa8d59efaf942fa9 (patch)
treeb5c3db4b30c550a7dbab3df394b4e9e6b7bf9b87 /audio/out/ao.c
parent27ccad541ab4a7b1331ff60a41165ffd324c341c (diff)
downloadmpv-3e90a5fe81229e4c0acd8e5afa8d59efaf942fa9.tar.bz2
mpv-3e90a5fe81229e4c0acd8e5afa8d59efaf942fa9.tar.xz
ao_dsound: remove this audio output
It existed for XP-compatibility only. There was also a time where ao_wasapi caused issues, but we're relatively confident that ao_wasapi works better or at least as good as ao_dsound on Windows Vista and later.
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 daa9c306b5..c950b9e773 100644
--- a/audio/out/ao.c
+++ b/audio/out/ao.c
@@ -45,7 +45,6 @@ extern const struct ao_driver audio_out_jack;
extern const struct ao_driver audio_out_openal;
extern const struct ao_driver audio_out_null;
extern const struct ao_driver audio_out_alsa;
-extern const struct ao_driver audio_out_dsound;
extern const struct ao_driver audio_out_wasapi;
extern const struct ao_driver audio_out_pcm;
extern const struct ao_driver audio_out_lavc;
@@ -65,9 +64,6 @@ static const struct ao_driver * const audio_out_drivers[] = {
#if HAVE_WASAPI
&audio_out_wasapi,
#endif
-#if HAVE_DSOUND
- &audio_out_dsound,
-#endif
#if HAVE_OSS_AUDIO
&audio_out_oss,
#endif