bluez5: add aptX and aptX HD codecs

They need the libopenaptx libraries from
https://github.com/pali/libopenaptx
This commit is contained in:
Wim Taymans 2020-12-04 11:34:38 +01:00
parent af8bb55762
commit 106d597305
11 changed files with 474 additions and 68 deletions

View file

@ -18,6 +18,11 @@ if ldac_dep.found()
bluez5_args += [ '-DENABLE_LDAC' ]
bluez5_deps += ldac_dep
endif
if aptx_dep.found()
bluez5_sources += [ 'a2dp-codec-aptx.c' ]
bluez5_args += [ '-DENABLE_APTX' ]
bluez5_deps += aptx_dep
endif
if get_option('bluez5-backend-native')
bluez5_sources += ['backend-hsp-native.c']