bluez5: Add LC3 codec support to LE Audio BAP

By default this codec is disabled as the BlueZ support for LE Audio is
still experimental.
This commit is contained in:
Frédéric Danis 2022-06-16 09:56:52 +02:00 committed by Wim Taymans
parent fd0bcb1699
commit 201fd7755d
9 changed files with 820 additions and 3 deletions

View file

@ -131,3 +131,13 @@ if get_option('bluez5-codec-opus').allowed() and opus_dep.found()
install : true,
install_dir : spa_plugindir / 'bluez5')
endif
if get_option('bluez5-codec-lc3').allowed() and lc3_dep.found()
bluez_codec_lc3 = shared_library('spa-codec-bluez5-lc3',
[ 'bap-codec-lc3.c', 'media-codecs.c' ],
include_directories : [ configinc ],
c_args : codec_args,
dependencies : [ spa_dep, lc3_dep, mathlib ],
install : true,
install_dir : spa_plugindir / 'bluez5')
endif