bluez5: add FastStream codec

A2DP codec that uses SBC.  Has a duplex channel, which sends an SBC
stream back.
This commit is contained in:
Pauli Virtanen 2021-08-20 01:18:50 +03:00 committed by Wim Taymans
parent c628975a75
commit e08cdf27d5
7 changed files with 624 additions and 1 deletions

View file

@ -120,6 +120,8 @@ const a2dp_mpeg_t bluez_a2dp_mpeg = {
extern struct a2dp_codec a2dp_codec_sbc;
extern struct a2dp_codec a2dp_codec_sbc_xq;
extern struct a2dp_codec a2dp_codec_faststream;
extern struct a2dp_codec a2dp_codec_faststream_duplex;
#if ENABLE_LDAC
extern struct a2dp_codec a2dp_codec_ldac;
#endif
@ -154,6 +156,8 @@ static const struct a2dp_codec * const a2dp_codec_list[] = {
#endif
&a2dp_codec_sbc,
&a2dp_codec_sbc_xq,
&a2dp_codec_faststream,
&a2dp_codec_faststream_duplex,
#if ENABLE_APTX
&a2dp_codec_aptx_ll_0,
&a2dp_codec_aptx_ll_1,