From 2e3347e850d47de7f804524ba8c7882c0c26cbca Mon Sep 17 00:00:00 2001 From: Pauli Virtanen Date: Sat, 24 Sep 2022 13:24:10 +0300 Subject: [PATCH] bluez5: use HFP HF as default, not HSP HS E.g. iphones don't support HSP, only HFP, so change the default to use HFP HF instead of HSP. HFP is now old, and most devices should support it now. --- spa/plugins/bluez5/backend-native.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spa/plugins/bluez5/backend-native.c b/spa/plugins/bluez5/backend-native.c index a65fecbba..a47f60ebf 100644 --- a/spa/plugins/bluez5/backend-native.c +++ b/spa/plugins/bluez5/backend-native.c @@ -78,7 +78,7 @@ struct impl { struct spa_dbus *dbus; DBusConnection *conn; -#define DEFAULT_ENABLED_PROFILES (SPA_BT_PROFILE_HSP_HS | SPA_BT_PROFILE_HFP_AG) +#define DEFAULT_ENABLED_PROFILES (SPA_BT_PROFILE_HFP_HF | SPA_BT_PROFILE_HFP_AG) enum spa_bt_profile enabled_profiles; struct spa_source sco;