mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-06 13:29:56 -05:00
bluetooth: Avoid duplicating profile argument twice
The module module-bluetooth-device should never be given parameter 'profile' twice, even if both HFGW and A2DP are playing. This patch proposed to consider HFGW first.
This commit is contained in:
parent
5c7672f79e
commit
00cc8af995
1 changed files with 2 additions and 3 deletions
|
|
@ -107,11 +107,10 @@ static pa_hook_result_t load_module_for_device(pa_bluetooth_discovery *y, const
|
||||||
args = tmp;
|
args = tmp;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (d->audio_source_state >= PA_BT_AUDIO_STATE_CONNECTED)
|
|
||||||
args = pa_sprintf_malloc("%s profile=\"a2dp_source\" auto_connect=no", args);
|
|
||||||
|
|
||||||
if (d->hfgw_state >= PA_BT_AUDIO_STATE_CONNECTED)
|
if (d->hfgw_state >= PA_BT_AUDIO_STATE_CONNECTED)
|
||||||
args = pa_sprintf_malloc("%s profile=\"hfgw\"", args);
|
args = pa_sprintf_malloc("%s profile=\"hfgw\"", args);
|
||||||
|
else if (d->audio_source_state >= PA_BT_AUDIO_STATE_CONNECTED)
|
||||||
|
args = pa_sprintf_malloc("%s profile=\"a2dp_source\" auto_connect=no", args);
|
||||||
|
|
||||||
pa_log_debug("Loading module-bluetooth-device %s", args);
|
pa_log_debug("Loading module-bluetooth-device %s", args);
|
||||||
m = pa_module_load(u->module->core, "module-bluetooth-device", args);
|
m = pa_module_load(u->module->core, "module-bluetooth-device", args);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue