bluetooth: Add support for automatic switch between hsp and a2dp profiles also for bluez5

Bluez5 uses different profile names as bluez4, so we need to check for
a2dp_sink and headset_head_unit too for bluez5 support.

Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
This commit is contained in:
Pali Rohár 2016-09-11 17:16:38 +02:00 committed by Arun Raghavan
parent 768e57c8a0
commit e32a462cc4

View file

@ -144,23 +144,29 @@ static pa_hook_result_t sink_put_hook_callback(pa_core *c, pa_sink *sink, void *
return PA_HOOK_OK; return PA_HOOK_OK;
} }
static void card_set_profile(struct userdata *u, pa_card *card, const char *to_profile, bool revert_to_a2dp) static void card_set_profile(struct userdata *u, pa_card *card, bool revert_to_a2dp)
{ {
pa_card_profile *profile; pa_card_profile *profile;
void *state; void *state;
/* Find available to_profile and activate it */ /* Find available profile and activate it */
PA_HASHMAP_FOREACH(profile, card->profiles, state) { PA_HASHMAP_FOREACH(profile, card->profiles, state) {
if (!pa_streq(profile->name, to_profile))
continue;
if (profile->available == PA_AVAILABLE_NO) if (profile->available == PA_AVAILABLE_NO)
continue; continue;
pa_log_debug("Setting card '%s' to profile '%s'", card->name, to_profile); /* Check for correct profile based on revert_to_a2dp */
if (revert_to_a2dp) {
if (!pa_streq(profile->name, "a2dp") && !pa_streq(profile->name, "a2dp_sink"))
continue;
} else {
if (!pa_streq(profile->name, "hsp") && !pa_streq(profile->name, "headset_head_unit"))
continue;
}
pa_log_debug("Setting card '%s' to profile '%s'", card->name, profile->name);
if (pa_card_set_profile(card, profile, false) != 0) { if (pa_card_set_profile(card, profile, false) != 0) {
pa_log_warn("Could not set profile '%s'", to_profile); pa_log_warn("Could not set profile '%s'", profile->name);
continue; continue;
} }
@ -175,18 +181,8 @@ static void card_set_profile(struct userdata *u, pa_card *card, const char *to_p
/* Switch profile for one card */ /* Switch profile for one card */
static void switch_profile(pa_card *card, bool revert_to_a2dp, void *userdata) { static void switch_profile(pa_card *card, bool revert_to_a2dp, void *userdata) {
struct userdata *u = userdata; struct userdata *u = userdata;
const char *from_profile;
const char *to_profile;
const char *s; const char *s;
if (revert_to_a2dp) {
from_profile = "hsp";
to_profile = "a2dp";
} else {
from_profile = "a2dp";
to_profile = "hsp";
}
/* Only consider bluetooth cards */ /* Only consider bluetooth cards */
s = pa_proplist_gets(card->proplist, PA_PROP_DEVICE_BUS); s = pa_proplist_gets(card->proplist, PA_PROP_DEVICE_BUS);
if (!s || !pa_streq(s, "bluetooth")) if (!s || !pa_streq(s, "bluetooth"))
@ -196,17 +192,25 @@ static void switch_profile(pa_card *card, bool revert_to_a2dp, void *userdata) {
/* In revert_to_a2dp phase only consider cards with will_need_revert flag and remove it */ /* In revert_to_a2dp phase only consider cards with will_need_revert flag and remove it */
if (!pa_hashmap_remove(u->will_need_revert_card_map, card)) if (!pa_hashmap_remove(u->will_need_revert_card_map, card))
return; return;
/* Skip card if does not have active hsp profile */
if (!pa_streq(card->active_profile->name, "hsp") && !pa_streq(card->active_profile->name, "headset_head_unit"))
return;
/* Skip card if already has active a2dp profile */
if (pa_streq(card->active_profile->name, "a2dp") || pa_streq(card->active_profile->name, "a2dp_sink"))
return;
} else {
/* Skip card if does not have active a2dp profile */
if (!pa_streq(card->active_profile->name, "a2dp") && !pa_streq(card->active_profile->name, "a2dp_sink"))
return;
/* Skip card if already has active hsp profile */
if (pa_streq(card->active_profile->name, "hsp") || pa_streq(card->active_profile->name, "headset_head_unit"))
return;
} }
/* Skip card if does not have active from_profile */ card_set_profile(u, card, revert_to_a2dp);
if (!pa_streq(card->active_profile->name, from_profile))
return;
/* Skip card if already has active profile to_profile */
if (pa_streq(card->active_profile->name, to_profile))
return;
card_set_profile(u, card, to_profile, revert_to_a2dp);
} }
/* Return true if we should ignore this source output */ /* Return true if we should ignore this source output */
@ -287,11 +291,13 @@ static pa_hook_result_t card_init_profile_hook_callback(pa_core *c, pa_card *car
return PA_HOOK_OK; return PA_HOOK_OK;
/* Ignore card if has already set other initial profile than a2dp */ /* Ignore card if has already set other initial profile than a2dp */
if (card->active_profile && !pa_streq(card->active_profile->name, "a2dp")) if (card->active_profile &&
!pa_streq(card->active_profile->name, "a2dp") &&
!pa_streq(card->active_profile->name, "a2dp_sink"))
return PA_HOOK_OK; return PA_HOOK_OK;
/* Set initial profile to hsp */ /* Set initial profile to hsp */
card_set_profile(u, card, "hsp", false); card_set_profile(u, card, false);
/* Flag this card for will_need_revert */ /* Flag this card for will_need_revert */
pa_hashmap_put(u->will_need_revert_card_map, card, PA_INT_TO_PTR(1)); pa_hashmap_put(u->will_need_revert_card_map, card, PA_INT_TO_PTR(1));