2018-08-17 13:26:54 +00:00
|
|
|
osxaudio_sources = [
|
|
|
|
'gstosxaudioringbuffer.c',
|
|
|
|
'gstosxaudioelement.c',
|
|
|
|
'gstosxaudiosink.c',
|
|
|
|
'gstosxaudiosrc.c',
|
|
|
|
'gstosxcoreaudiocommon.c',
|
|
|
|
'gstosxcoreaudio.c',
|
|
|
|
'gstosxaudio.c'
|
|
|
|
]
|
|
|
|
|
|
|
|
have_osxaudio = false
|
|
|
|
osxaudio_option = get_option('osxaudio')
|
|
|
|
if osxaudio_option.disabled() or not ['darwin', 'ios'].contains(host_system)
|
|
|
|
subdir_done()
|
|
|
|
endif
|
|
|
|
|
|
|
|
if host_system == 'darwin'
|
|
|
|
# TODO: https://github.com/mesonbuild/meson/issues/3940
|
|
|
|
have_osxaudio = cc.has_header('CoreAudio/CoreAudio.h')
|
|
|
|
osxaudio_sources += ['gstosxaudiodeviceprovider.c']
|
|
|
|
elif host_system == 'ios'
|
|
|
|
have_osxaudio = cc.has_header('CoreAudio/CoreAudioTypes.h')
|
|
|
|
endif
|
|
|
|
|
|
|
|
if not have_osxaudio and osxaudio_option.enabled()
|
|
|
|
error('osxaudio plugin was enabled but CoreAudio headers not found')
|
|
|
|
endif
|
|
|
|
|
|
|
|
if have_osxaudio
|
2018-09-01 04:00:23 +00:00
|
|
|
modules = ['CoreAudio', 'AudioToolBox']
|
2018-08-17 13:26:54 +00:00
|
|
|
if host_system == 'darwin'
|
2018-09-01 04:00:23 +00:00
|
|
|
modules += ['AudioUnit', 'CoreServices']
|
2018-08-17 13:26:54 +00:00
|
|
|
endif
|
2018-09-01 04:00:23 +00:00
|
|
|
osxaudio_dep = dependency('appleframeworks', modules : modules)
|
2018-08-17 13:26:54 +00:00
|
|
|
|
|
|
|
gstosxaudio = library('gstosxaudio',
|
|
|
|
osxaudio_sources,
|
|
|
|
c_args : gst_plugins_good_args,
|
|
|
|
include_directories : [configinc, libsinc],
|
2018-09-01 04:00:23 +00:00
|
|
|
dependencies : [gstaudio_dep, osxaudio_dep],
|
2018-08-17 13:26:54 +00:00
|
|
|
install : true,
|
|
|
|
install_dir : plugins_install_dir)
|
|
|
|
pkgconfig.generate(gstosxaudio, install_dir : plugins_pkgconfig_install_dir)
|
|
|
|
endif
|