summaryrefslogtreecommitdiffstats
path: root/audio/out/ao.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2020-03-28 20:58:03 +0100
committerwm4 <wm4@nowhere>2020-03-28 20:59:31 +0100
commitbca917f6d2c50d9df3a4140b7be7beb6d567aa5b (patch)
tree6bda396bd723d29f0423d720db21fd279fdb2406 /audio/out/ao.c
parent4583bd8cc7bf538bce424983d49729c934d13a53 (diff)
downloadmpv-bca917f6d2c50d9df3a4140b7be7beb6d567aa5b.tar.bz2
mpv-bca917f6d2c50d9df3a4140b7be7beb6d567aa5b.tar.xz
ao_oss: remove this audio output
Ancient Linux audio output. Apparently it survived until now, because some BSDs (but not all) had use of this. But these should work with ao_sdl or ao_openal too (that's why these AOs exist after all). ao_oss itself has the problem that it's virtually unmaintainable from my point of view due to all the subtle (or non-subtle) difference. Look at the ifdef mess and the multiple code paths (that shouldn't exist) in the removed source code.
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 10717d466e..480dad69e0 100644
--- a/audio/out/ao.c
+++ b/audio/out/ao.c
@@ -35,7 +35,6 @@
#include "common/common.h"
#include "common/global.h"
-extern const struct ao_driver audio_out_oss;
extern const struct ao_driver audio_out_audiotrack;
extern const struct ao_driver audio_out_audiounit;
extern const struct ao_driver audio_out_coreaudio;
@@ -72,9 +71,6 @@ static const struct ao_driver * const audio_out_drivers[] = {
#if HAVE_WASAPI
&audio_out_wasapi,
#endif
-#if HAVE_OSS_AUDIO
- &audio_out_oss,
-#endif
// wrappers:
#if HAVE_JACK
&audio_out_jack,