mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-02 09:01:46 -05:00
bluetooth: Fix wrongly set "phone" role for HFGW
The HFGW source should be consistent with the sink by not setting the "phone" intended role. Even though setting this role seems to make sense strictly speaking, the rest of the codebase doesn't handle this well. Therefore, the audio coming from a Bluetooth phone can be routed back to the same device.
This commit is contained in:
parent
38de0af64e
commit
9a5330e601
1 changed files with 1 additions and 1 deletions
|
|
@ -1593,7 +1593,7 @@ static int add_source(struct userdata *u) {
|
|||
data.module = u->module;
|
||||
pa_source_new_data_set_sample_spec(&data, &u->sample_spec);
|
||||
pa_proplist_sets(data.proplist, "bluetooth.protocol", profile_to_string(u->profile));
|
||||
if ((u->profile == PROFILE_HSP) || (u->profile == PROFILE_HFGW))
|
||||
if (u->profile == PROFILE_HSP)
|
||||
pa_proplist_sets(data.proplist, PA_PROP_DEVICE_INTENDED_ROLES, "phone");
|
||||
|
||||
data.card = u->card;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue