diff options
author | João Paulo Rechi Vita <jprvita@gmail.com> | 2014-08-22 11:07:13 +0300 |
---|---|---|
committer | Tanu Kaskinen <tanu.kaskinen@linux.intel.com> | 2014-08-22 12:24:39 +0300 |
commit | 2198048e5d0917c5bd57316858bbbb7064906884 (patch) | |
tree | 721abcbf6a9e51eaec55bce023d44303781aa30c /src | |
parent | bdef2dbd0a08f6e44c15ea8febb66b6d9088875b (diff) |
bluetooth: Add BlueZ 5 headset profile names in policy module
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/bluetooth/module-bluetooth-policy.c | 27 |
1 files changed, 18 insertions, 9 deletions
diff --git a/src/modules/bluetooth/module-bluetooth-policy.c b/src/modules/bluetooth/module-bluetooth-policy.c index 6837f0d6f..8bbda3d99 100644 --- a/src/modules/bluetooth/module-bluetooth-policy.c +++ b/src/modules/bluetooth/module-bluetooth-policy.c @@ -41,17 +41,19 @@ PA_MODULE_VERSION(PACKAGE_VERSION); PA_MODULE_LOAD_ONCE(true); PA_MODULE_USAGE( "a2dp_source=<Handle a2dp_source card profile (sink role)?> " - "hfgw=<Handle hfgw card profile (headset role)?>"); + "ag=<Handle headset_audio_gateway card profile (headset role)?> " + "hfgw=<Handle hfgw card profile (headset role)?> DEPRECATED"); static const char* const valid_modargs[] = { "a2dp_source", + "ag", "hfgw", NULL }; struct userdata { bool enable_a2dp_source; - bool enable_hfgw; + bool enable_ag; pa_hook_slot *source_put_slot; pa_hook_slot *sink_put_slot; pa_hook_slot *profile_available_changed_slot; @@ -79,9 +81,10 @@ static pa_hook_result_t source_put_hook_callback(pa_core *c, pa_source *source, if (!s) return PA_HOOK_OK; - if (u->enable_a2dp_source && pa_streq(s, "a2dp_source")) /* A2DP profile (we're doing sink role) */ + if (u->enable_a2dp_source && pa_streq(s, "a2dp_source")) role = "music"; - else if (u->enable_hfgw && pa_streq(s, "hfgw")) /* HFP profile (we're doing headset role) */ + /* TODO: remove hfgw when we remove BlueZ 4 support */ + else if (u->enable_ag && (pa_streq(s, "hfgw") || pa_streq(s, "headset_audio_gateway"))) role = "phone"; else { pa_log_debug("Profile %s cannot be selected for loopback", s); @@ -119,7 +122,8 @@ static pa_hook_result_t sink_put_hook_callback(pa_core *c, pa_sink *sink, void * if (!s) return PA_HOOK_OK; - if (u->enable_hfgw && pa_streq(s, "hfgw")) /* HFP profile (we're doing headset role) */ + /* TODO: remove hfgw when we remove BlueZ 4 support */ + if (u->enable_ag && (pa_streq(s, "hfgw") || pa_streq(s, "headset_audio_gateway"))) role = "phone"; else { pa_log_debug("Profile %s cannot be selected for loopback", s); @@ -172,8 +176,9 @@ static pa_hook_result_t profile_available_hook_callback(pa_core *c, pa_card_prof return PA_HOOK_OK; /* Do not automatically switch profiles for headsets, just in case */ - /* TODO: remove a2dp when we decide to remove support for BlueZ 4 */ - if (pa_streq(profile->name, "hsp") || pa_streq(profile->name, "a2dp") || pa_streq(profile->name, "a2dp_sink")) + /* TODO: remove a2dp and hsp when we remove BlueZ 4 support */ + if (pa_streq(profile->name, "hsp") || pa_streq(profile->name, "a2dp") || pa_streq(profile->name, "a2dp_sink") || + pa_streq(profile->name, "headset_head_unit")) return PA_HOOK_OK; is_active_profile = card->active_profile == profile; @@ -236,11 +241,15 @@ int pa__init(pa_module *m) { goto fail; } - u->enable_hfgw = true; - if (pa_modargs_get_value_boolean(ma, "hfgw", &u->enable_hfgw) < 0) { + u->enable_ag = true; + if (pa_modargs_get_value_boolean(ma, "hfgw", &u->enable_ag) < 0) { pa_log("Failed to parse hfgw argument."); goto fail; } + if (pa_modargs_get_value_boolean(ma, "ag", &u->enable_ag) < 0) { + pa_log("Failed to parse ag argument."); + goto fail; + } u->source_put_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SOURCE_PUT], PA_HOOK_NORMAL, (pa_hook_cb_t) source_put_hook_callback, u); |