summaryrefslogtreecommitdiffstats
path: root/audio/out/ao.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-12-29 18:53:12 +0100
committerwm4 <wm4@nowhere>2014-12-29 18:53:12 +0100
commit40755180113ac58cd98fb0f6758c1466e56d5f94 (patch)
tree1920c6bfd404c57d05c97f11f1e2bfb0efba994c /audio/out/ao.c
parentadeada149b8692a29c2814f186fadb4d8313be41 (diff)
downloadmpv-40755180113ac58cd98fb0f6758c1466e56d5f94.tar.bz2
mpv-40755180113ac58cd98fb0f6758c1466e56d5f94.tar.xz
ao_portaudio: remove this audio output
It's just completely useless. We have good native support for all 3 desktop platforms, and ao_sdl or ao_openal as fallbacks.
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 10ed6c939f..1590066c83 100644
--- a/audio/out/ao.c
+++ b/audio/out/ao.c
@@ -50,7 +50,6 @@ 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;
-extern const struct ao_driver audio_out_portaudio;
extern const struct ao_driver audio_out_sdl;
static const struct ao_driver * const audio_out_drivers[] = {
@@ -73,9 +72,6 @@ static const struct ao_driver * const audio_out_drivers[] = {
#if HAVE_OSS_AUDIO
&audio_out_oss,
#endif
-#if HAVE_PORTAUDIO
- &audio_out_portaudio,
-#endif
// wrappers:
#if HAVE_JACK
&audio_out_jack,