summaryrefslogtreecommitdiffstats
path: root/audio/out/ao.c
diff options
context:
space:
mode:
authorDiogo Franco (Kovensky) <diogomfranco@gmail.com>2013-07-20 14:13:39 -0300
committerwm4 <wm4@nowhere>2013-07-22 02:42:38 +0200
commitd5adaed9d84317aff546c71c28a338944a68a770 (patch)
treefa58afa3189fa1c3083f9884582cac67dfbc41ec /audio/out/ao.c
parent553ed6b32fd6eb6659ba7081cdcab3ad8b82646c (diff)
downloadmpv-d5adaed9d84317aff546c71c28a338944a68a770.tar.bz2
mpv-d5adaed9d84317aff546c71c28a338944a68a770.tar.xz
ao_wasapi0: Rename to ao_wasapi
Nobody knows what the 0 was for. There's no "WASAPI version 0". Just take it out.
Diffstat (limited to 'audio/out/ao.c')
-rw-r--r--audio/out/ao.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/out/ao.c b/audio/out/ao.c
index 6227891d57..d6cebb2d0d 100644
--- a/audio/out/ao.c
+++ b/audio/out/ao.c
@@ -44,7 +44,7 @@ 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_wasapi0;
+extern const struct ao_driver audio_out_wasapi;
extern const struct ao_driver audio_out_pcm;
extern const struct ao_driver audio_out_pss;
extern const struct ao_driver audio_out_lavc;
@@ -68,8 +68,8 @@ static const struct ao_driver * const audio_out_drivers[] = {
#ifdef CONFIG_DSOUND
&audio_out_dsound,
#endif
-#ifdef CONFIG_WASAPI0
- &audio_out_wasapi0,
+#ifdef CONFIG_WASAPI
+ &audio_out_wasapi,
#endif
#ifdef CONFIG_PORTAUDIO
&audio_out_portaudio,