mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 10:41:04 +00:00
a576814553
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>
19 lines
485 B
Meson
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
|