From e7f17e1523e3996f01c567593d74e4e6cc8b833c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Danis?= Date: Mon, 4 Jul 2022 10:54:14 +0200 Subject: [PATCH] bluez5: use lower case for UUIDs BlueZ uses lower case version for the UUIDs in its DBus interface. This will simplify future UUID tests. --- spa/plugins/bluez5/defs.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/spa/plugins/bluez5/defs.h b/spa/plugins/bluez5/defs.h index c27faffa7..90348afa0 100644 --- a/spa/plugins/bluez5/defs.h +++ b/spa/plugins/bluez5/defs.h @@ -134,13 +134,13 @@ extern "C" { #define BLUEZ_ERROR_NOT_SUPPORTED "org.bluez.Error.NotSupported" -#define SPA_BT_UUID_A2DP_SOURCE "0000110A-0000-1000-8000-00805F9B34FB" -#define SPA_BT_UUID_A2DP_SINK "0000110B-0000-1000-8000-00805F9B34FB" -#define SPA_BT_UUID_HSP_HS "00001108-0000-1000-8000-00805F9B34FB" -#define SPA_BT_UUID_HSP_HS_ALT "00001131-0000-1000-8000-00805F9B34FB" -#define SPA_BT_UUID_HSP_AG "00001112-0000-1000-8000-00805F9B34FB" -#define SPA_BT_UUID_HFP_HF "0000111E-0000-1000-8000-00805F9B34FB" -#define SPA_BT_UUID_HFP_AG "0000111F-0000-1000-8000-00805F9B34FB" +#define SPA_BT_UUID_A2DP_SOURCE "0000110a-0000-1000-8000-00805f9b34fb" +#define SPA_BT_UUID_A2DP_SINK "0000110b-0000-1000-8000-00805f9b34fb" +#define SPA_BT_UUID_HSP_HS "00001108-0000-1000-8000-00805f9b34fb" +#define SPA_BT_UUID_HSP_HS_ALT "00001131-0000-1000-8000-00805f9b34fb" +#define SPA_BT_UUID_HSP_AG "00001112-0000-1000-8000-00805f9b34fb" +#define SPA_BT_UUID_HFP_HF "0000111e-0000-1000-8000-00805f9b34fb" +#define SPA_BT_UUID_HFP_AG "0000111f-0000-1000-8000-00805f9b34fb" #define PROFILE_HSP_AG "/Profile/HSPAG" #define PROFILE_HSP_HS "/Profile/HSPHS"