summaryrefslogtreecommitdiff
path: root/src/modules/bluetooth/a2dp-codec-util.c
diff options
context:
space:
mode:
authorIgor V. Kovalenko <igor.v.kovalenko@gmail.com>2021-04-20 19:30:52 +0300
committerIgor V. Kovalenko <igor.v.kovalenko@gmail.com>2022-10-17 09:07:09 +0300
commitcddb9f144a71cc0f1f690898056737fb4402b2b9 (patch)
tree7bf8bb0776e93ca431e21d7d2944978dd2718d8e /src/modules/bluetooth/a2dp-codec-util.c
parent0498e7a3d05c8ccd4f0389778e04f964f8a0b2f8 (diff)
downloadpulseaudio-cddb9f144a71cc0f1f690898056737fb4402b2b9.tar.gz
bluetooth: Add faststream codec
Part-of: <https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/merge_requests/628>
Diffstat (limited to 'src/modules/bluetooth/a2dp-codec-util.c')
-rw-r--r--src/modules/bluetooth/a2dp-codec-util.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/modules/bluetooth/a2dp-codec-util.c b/src/modules/bluetooth/a2dp-codec-util.c
index 7db025164..43cf34b2d 100644
--- a/src/modules/bluetooth/a2dp-codec-util.c
+++ b/src/modules/bluetooth/a2dp-codec-util.c
@@ -52,6 +52,7 @@ extern const pa_a2dp_endpoint_conf pa_a2dp_endpoint_conf_ldac_eqmid_hq;
extern const pa_a2dp_endpoint_conf pa_a2dp_endpoint_conf_ldac_eqmid_sq;
extern const pa_a2dp_endpoint_conf pa_a2dp_endpoint_conf_ldac_eqmid_mq;
#endif
+extern const pa_a2dp_endpoint_conf pa_a2dp_endpoint_conf_faststream;
/* This is list of supported codecs. Their order is important.
* Codec with lower index has higher priority. */
@@ -69,6 +70,7 @@ static const pa_a2dp_endpoint_conf *pa_a2dp_endpoint_configurations[] = {
&pa_a2dp_endpoint_conf_sbc_xq_453,
&pa_a2dp_endpoint_conf_sbc_xq_512,
&pa_a2dp_endpoint_conf_sbc_xq_552,
+ &pa_a2dp_endpoint_conf_faststream,
};
unsigned int pa_bluetooth_a2dp_endpoint_conf_count(void) {