mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
bfb9071081
Wrapper on the iSAC reference encoder and decoder from webrtc, see https://en.wikipedia.org/wiki/Internet_Speech_Audio_Codec Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1124>
20 lines
577 B
Meson
20 lines
577 B
Meson
webrtc_audio_coding_dep = dependency('webrtc-audio-coding-1', required: get_option('isac'))
|
|
|
|
if webrtc_audio_coding_dep.found()
|
|
isac_sources = [
|
|
'gstisac.c',
|
|
'gstisacenc.c',
|
|
'gstisacdec.c',
|
|
'gstisacutils.c',
|
|
]
|
|
|
|
gstisac = library('gstisac', isac_sources,
|
|
c_args : gst_plugins_bad_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstaudio_dep, webrtc_audio_coding_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstisac, install_dir : plugins_pkgconfig_install_dir)
|
|
plugins += [gstisac]
|
|
endif
|