mirror of https://github.com/mpv-player/mpv
ao/audiounit: fix building for iOS
This commit is contained in:
parent
e855836ed1
commit
578b9dade2
|
@ -21,7 +21,7 @@
|
|||
#include "config.h"
|
||||
#include <AudioToolbox/AudioToolbox.h>
|
||||
|
||||
#if HAVE_AVFOUNDATION || HAVE_AUDIOUNIT
|
||||
#if HAVE_AVFOUNDATION
|
||||
#undef HAVE_COREAUDIO
|
||||
#define HAVE_COREAUDIO 1
|
||||
#endif
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
|
||||
#include "internal.h"
|
||||
|
||||
#if HAVE_AVFOUNDATION || HAVE_AUDIOUNIT
|
||||
#if HAVE_AVFOUNDATION
|
||||
#undef HAVE_COREAUDIO
|
||||
#define HAVE_COREAUDIO 1
|
||||
#endif
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#include "internal.h"
|
||||
#include "osdep/utils-mac.h"
|
||||
|
||||
#if HAVE_AVFOUNDATION || HAVE_AUDIOUNIT
|
||||
#if HAVE_AVFOUNDATION
|
||||
#undef HAVE_COREAUDIO
|
||||
#define HAVE_COREAUDIO 1
|
||||
#endif
|
||||
|
|
|
@ -819,8 +819,11 @@ endif
|
|||
|
||||
if features['audiounit'] or features['coreaudio'] or features['avfoundation']
|
||||
sources += files('audio/out/ao_coreaudio_chmap.c',
|
||||
'audio/out/ao_coreaudio_utils.c',
|
||||
'audio/out/ao_coreaudio_properties.c')
|
||||
'audio/out/ao_coreaudio_utils.c')
|
||||
endif
|
||||
|
||||
if features['avfoundation']
|
||||
sources += files('audio/out/ao_coreaudio_properties.c')
|
||||
endif
|
||||
|
||||
jack_opt = get_option('jack').require(
|
||||
|
|
Loading…
Reference in New Issue