mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-29 05:40:23 -04:00
bluetooth: policy: Remove BlueZ 4 related code
This removes hfpw option and profile which were only used by BlueZ 4.
This commit is contained in:
parent
3b1093c0ad
commit
493892434a
1 changed files with 4 additions and 13 deletions
|
|
@ -38,8 +38,7 @@ PA_MODULE_LOAD_ONCE(true);
|
|||
PA_MODULE_USAGE(
|
||||
"auto_switch=<Switch between hsp and a2dp profile? (0 - never, 1 - media.role=phone, 2 - heuristic> "
|
||||
"a2dp_source=<Handle a2dp_source card profile (sink role)?> "
|
||||
"ag=<Handle headset_audio_gateway card profile (headset role)?> "
|
||||
"hfgw=<Handle hfgw card profile (headset role)?> DEPRECATED");
|
||||
"ag=<Handle headset_audio_gateway card profile (headset role)?> ");
|
||||
|
||||
static const char* const valid_modargs[] = {
|
||||
"auto_switch",
|
||||
|
|
@ -88,8 +87,7 @@ static pa_hook_result_t source_put_hook_callback(pa_core *c, pa_source *source,
|
|||
|
||||
if (u->enable_a2dp_source && pa_streq(s, "a2dp_source"))
|
||||
role = "music";
|
||||
/* TODO: remove hfgw when we remove BlueZ 4 support */
|
||||
else if (u->enable_ag && (pa_streq(s, "hfgw") || pa_streq(s, "headset_audio_gateway")))
|
||||
else if (u->enable_ag && pa_streq(s, "headset_audio_gateway"))
|
||||
role = "phone";
|
||||
else {
|
||||
pa_log_debug("Profile %s cannot be selected for loopback", s);
|
||||
|
|
@ -128,8 +126,7 @@ static pa_hook_result_t sink_put_hook_callback(pa_core *c, pa_sink *sink, void *
|
|||
if (!s)
|
||||
return PA_HOOK_OK;
|
||||
|
||||
/* TODO: remove hfgw when we remove BlueZ 4 support */
|
||||
if (u->enable_ag && (pa_streq(s, "hfgw") || pa_streq(s, "headset_audio_gateway")))
|
||||
if (u->enable_ag && pa_streq(s, "headset_audio_gateway"))
|
||||
role = "phone";
|
||||
else {
|
||||
pa_log_debug("Profile %s cannot be selected for loopback", s);
|
||||
|
|
@ -363,9 +360,7 @@ 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 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"))
|
||||
if (pa_streq(profile->name, "a2dp_sink") || pa_streq(profile->name, "headset_head_unit"))
|
||||
return PA_HOOK_OK;
|
||||
|
||||
is_active_profile = card->active_profile == profile;
|
||||
|
|
@ -448,10 +443,6 @@ int pa__init(pa_module *m) {
|
|||
}
|
||||
|
||||
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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue