diff mbox series

[BlueZ] media: add Retransmissions in SelectProperties QoS

Message ID f1ac6b52c30e002400c2a0dcb20ead18899695b5.1699992657.git.pav@iki.fi
State New
Headers show
Series [BlueZ] media: add Retransmissions in SelectProperties QoS | expand

Commit Message

Pauli Virtanen Nov. 14, 2023, 8:11 p.m. UTC
The server preferred RTN is part of the server supported/preferred QoS
values, and should be passed on to SelectProperties.
---
 profiles/audio/media.c | 3 +++
 1 file changed, 3 insertions(+)

Comments

patchwork-bot+bluetooth@kernel.org Nov. 15, 2023, 12:30 a.m. UTC | #1
Hello:

This patch was applied to bluetooth/bluez.git (master)
by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>:

On Tue, 14 Nov 2023 22:11:52 +0200 you wrote:
> The server preferred RTN is part of the server supported/preferred QoS
> values, and should be passed on to SelectProperties.
> ---
>  profiles/audio/media.c | 3 +++
>  1 file changed, 3 insertions(+)

Here is the summary with links:
  - [BlueZ] media: add Retransmissions in SelectProperties QoS
    https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=14dd4a75ceb2

You are awesome, thank you!
diff mbox series

Patch

diff --git a/profiles/audio/media.c b/profiles/audio/media.c
index 4d9a6aa03..62f53defa 100644
--- a/profiles/audio/media.c
+++ b/profiles/audio/media.c
@@ -995,6 +995,9 @@  static int pac_select(struct bt_bap_pac *lpac, struct bt_bap_pac *rpac,
 		g_dbus_dict_append_entry(&qos_dict, "PHY", DBUS_TYPE_BYTE,
 							&qos->phy);
 
+		g_dbus_dict_append_entry(&qos_dict, "Retransmissions",
+					DBUS_TYPE_BYTE, &qos->rtn);
+
 		g_dbus_dict_append_entry(&qos_dict, "MaximumLatency",
 					DBUS_TYPE_UINT16, &qos->latency);