gstreamer/ext/ldac/meson.build
Sanchayan Maity a576814553 ext: Add LDAC encoder
LDAC is an audio coding technology developed by Sony that enables the
transmission of High-Resolution (Hi-Res) audio contents over Bluetooth.

Currently Adaptive Bit Rate (ABR) as supported by libldac encoder is not
implemented.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1621>
2020-11-11 22:16:43 +05:30

19 lines
485 B
Meson

ldac_sources = [
'ldac-plugin.c',
'gstldacenc.c',
]
ldac_dep = cc.find_library('ldacBT_enc', required : get_option('ldac'))
if ldac_dep.found()
gstldac = library('gstldac',
ldac_sources,
c_args : gst_plugins_bad_args,
include_directories : [configinc],
dependencies : [gstaudio_dep, ldac_dep],
install : true,
install_dir : plugins_install_dir,
)
pkgconfig.generate(gstldac, install_dir : plugins_pkgconfig_install_dir)
plugins += [gstldac]
endif