Message ID | f1ac6b52c30e002400c2a0dcb20ead18899695b5.1699992657.git.pav@iki.fi |
---|---|
State | New |
Headers | show |
Series | [BlueZ] media: add Retransmissions in SelectProperties QoS | expand |
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 --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);