mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-03 09:01:54 -05:00
bluez5: add ldac codec
This commit is contained in:
parent
3363544d05
commit
dd8573a5c2
6 changed files with 340 additions and 15 deletions
|
|
@ -69,6 +69,9 @@ const a2dp_aptx_t bluez_a2dp_aptx = {
|
|||
#endif
|
||||
|
||||
extern struct a2dp_codec a2dp_codec_sbc;
|
||||
#if ENABLE_LDAC
|
||||
extern struct a2dp_codec a2dp_codec_ldac;
|
||||
#endif
|
||||
#if ENABLE_AAC
|
||||
extern struct a2dp_codec a2dp_codec_aac;
|
||||
#endif
|
||||
|
|
@ -81,6 +84,9 @@ extern struct a2dp_codec a2dp_codec_aptx;
|
|||
|
||||
const struct a2dp_codec *a2dp_codec_list[] = {
|
||||
&a2dp_codec_sbc,
|
||||
#if ENABLE_LDAC
|
||||
&a2dp_codec_ldac,
|
||||
#endif
|
||||
#if ENABLE_AAC
|
||||
&a2dp_codec_aac,
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue