summaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
authorMichael Hoang <enzime@users.noreply.github.com>2018-08-16 11:30:02 +1000
committerJan Ekström <jeebjp@gmail.com>2018-08-26 15:49:22 +0300
commit91786fa99c15dc64d3bce4be413326ba2dbe59f7 (patch)
treec75f95055b79cb8cbb00dc8e56d8e4e7631dd410 /audio
parent1890ca024e541e1d07bdee242b75b24391b4434a (diff)
downloadmpv-91786fa99c15dc64d3bce4be413326ba2dbe59f7.tar.bz2
mpv-91786fa99c15dc64d3bce4be413326ba2dbe59f7.tar.xz
Revert "ao_openal: enable building on OSX"
This reverts commit af6126adbe61fb2b6cc780025246d33df93072e6. Apple's OpenAL support is ridiculously out of date, revert back to just using OpenAL Soft on macOS (fixes #4645).
Diffstat (limited to 'audio')
-rw-r--r--audio/out/ao_openal.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/audio/out/ao_openal.c b/audio/out/ao_openal.c
index c1f405bf12..53571b6d6e 100644
--- a/audio/out/ao_openal.c
+++ b/audio/out/ao_openal.c
@@ -24,19 +24,6 @@
#include <stdlib.h>
#include <stdio.h>
#include <inttypes.h>
-
-#ifdef __APPLE__
-#ifndef AL_FORMAT_MONO_FLOAT32
-#define AL_FORMAT_MONO_FLOAT32 0x10010
-#endif
-#ifndef AL_FORMAT_STEREO_FLOAT32
-#define AL_FORMAT_STEREO_FLOAT32 0x10011
-#endif
-#ifndef AL_FORMAT_MONO_DOUBLE_EXT
-#define AL_FORMAT_MONO_DOUBLE_EXT 0x10012
-#endif
-#include <OpenAL/MacOSX_OALExtensions.h>
-#else
#ifdef OPENAL_AL_H
#include <OpenAL/alc.h>
#include <OpenAL/al.h>
@@ -46,7 +33,6 @@
#include <AL/al.h>
#include <AL/alext.h>
#endif
-#endif // __APPLE__
#include "common/msg.h"