mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-16 07:00:00 -05:00
bluez5: default to FL,FR channels for BAP server
As server, it's not possible to expose all locations as supported because BlueZ only exposes two ASE. Default to just FL,FR
This commit is contained in:
parent
567d5181ca
commit
878dd7a0c9
1 changed files with 2 additions and 2 deletions
|
|
@ -6883,8 +6883,8 @@ static void parse_bap_locations(struct spa_bt_monitor *this, const struct spa_di
|
|||
|
||||
static void parse_bap_server(struct spa_bt_monitor *this, const struct spa_dict *info)
|
||||
{
|
||||
this->bap_sink_locations = BAP_CHANNEL_ALL;
|
||||
this->bap_source_locations = BAP_CHANNEL_ALL;
|
||||
this->bap_sink_locations = BAP_CHANNEL_FL | BAP_CHANNEL_FR;
|
||||
this->bap_source_locations = BAP_CHANNEL_FL | BAP_CHANNEL_FR;
|
||||
this->bap_sink_contexts = this->bap_sink_supported_contexts = BAP_CONTEXT_ALL;
|
||||
this->bap_source_contexts = this->bap_source_supported_contexts = (BAP_CONTEXT_UNSPECIFIED | BAP_CONTEXT_CONVERSATIONAL |
|
||||
BAP_CONTEXT_MEDIA | BAP_CONTEXT_GAME);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue