mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-02 09:01:50 -05:00
pulse-server: use name if description not set
This commit is contained in:
parent
98b1b8090d
commit
4bb859fb82
1 changed files with 4 additions and 0 deletions
|
|
@ -244,6 +244,8 @@ static uint32_t collect_profile_info(struct pw_manager_object *card, struct card
|
|||
SPA_PARAM_PROFILE_classes, SPA_POD_OPT_Pod(&classes)) < 0) {
|
||||
continue;
|
||||
}
|
||||
if (pi->description == NULL)
|
||||
pi->description = pi->name;
|
||||
if (pi->id == card_info->active_profile)
|
||||
card_info->active_profile_name = pi->name;
|
||||
|
||||
|
|
@ -443,6 +445,8 @@ static uint32_t collect_port_info(struct pw_manager_object *card, struct card_in
|
|||
SPA_PARAM_ROUTE_profiles, SPA_POD_OPT_Pod(&profiles)) < 0)
|
||||
continue;
|
||||
|
||||
if (pi->description == NULL)
|
||||
pi->description = pi->name;
|
||||
if (devices)
|
||||
pi->devices = spa_pod_get_array(devices, &pi->n_devices);
|
||||
if (profiles)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue