a2dp: add aac encoder

This commit is contained in:
Gabriel Ebner 2020-12-22 12:39:56 +01:00 committed by Wim Taymans
parent d466cffe23
commit 392fcda01f
3 changed files with 302 additions and 31 deletions

View file

@ -1,7 +1,6 @@
bluez5_sources = ['plugin.c',
'a2dp-codecs.c',
'a2dp-codec-aac.c',
'a2dp-codec-sbc.c',
'a2dp-sink.c',
'a2dp-source.c',
@ -27,6 +26,11 @@ if aptx_dep.found()
bluez5_args += [ '-DENABLE_APTX' ]
bluez5_deps += aptx_dep
endif
if fdk_aac_dep.found()
bluez5_sources += [ 'a2dp-codec-aac.c' ]
bluez5_args += [ '-DENABLE_AAC' ]
bluez5_deps += fdk_aac_dep
endif
if get_option('bluez5-backend-native')
bluez5_sources += ['backend-hsp-native.c']