mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-02 09:01:50 -05:00
bluez5: add FastStream codec
A2DP codec that uses SBC. Has a duplex channel, which sends an SBC stream back.
This commit is contained in:
parent
c628975a75
commit
e08cdf27d5
7 changed files with 624 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue