mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
160 lines
4.5 KiB
C
160 lines
4.5 KiB
C
|
|
/***
|
||
|
|
This file is part of PulseAudio.
|
||
|
|
|
||
|
|
Copyright 2004-2009 Lennart Poettering
|
||
|
|
Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
|
||
|
|
|
||
|
|
PulseAudio is free software; you can redistribute it and/or modify
|
||
|
|
it under the terms of the GNU Lesser General Public License as published
|
||
|
|
by the Free Software Foundation; either version 2.1 of the License,
|
||
|
|
or (at your option) any later version.
|
||
|
|
|
||
|
|
PulseAudio is distributed in the hope that it will be useful, but
|
||
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
|
|
General Public License for more details.
|
||
|
|
|
||
|
|
You should have received a copy of the GNU Lesser General Public License
|
||
|
|
along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||
|
|
***/
|
||
|
|
|
||
|
|
#include "compat.h"
|
||
|
|
#include "device-port.h"
|
||
|
|
#include "alsa-mixer.h"
|
||
|
|
|
||
|
|
pa_device_port_new_data *pa_device_port_new_data_init(pa_device_port_new_data *data)
|
||
|
|
{
|
||
|
|
pa_assert(data);
|
||
|
|
pa_zero(*data);
|
||
|
|
data->type = PA_DEVICE_PORT_TYPE_UNKNOWN;
|
||
|
|
data->available = PA_AVAILABLE_UNKNOWN;
|
||
|
|
return data;
|
||
|
|
}
|
||
|
|
|
||
|
|
void pa_device_port_new_data_set_name(pa_device_port_new_data *data, const char *name)
|
||
|
|
{
|
||
|
|
pa_assert(data);
|
||
|
|
pa_xfree(data->name);
|
||
|
|
data->name = pa_xstrdup(name);
|
||
|
|
}
|
||
|
|
|
||
|
|
void pa_device_port_new_data_set_description(pa_device_port_new_data *data, const char *description)
|
||
|
|
{
|
||
|
|
pa_assert(data);
|
||
|
|
pa_xfree(data->description);
|
||
|
|
data->description = pa_xstrdup(description);
|
||
|
|
}
|
||
|
|
|
||
|
|
void pa_device_port_new_data_set_available(pa_device_port_new_data *data, pa_available_t available)
|
||
|
|
{
|
||
|
|
pa_assert(data);
|
||
|
|
data->available = available;
|
||
|
|
}
|
||
|
|
|
||
|
|
void pa_device_port_new_data_set_available_group(pa_device_port_new_data *data, const char *group)
|
||
|
|
{
|
||
|
|
pa_assert(data);
|
||
|
|
pa_xfree(data->available_group);
|
||
|
|
data->available_group = pa_xstrdup(group);
|
||
|
|
}
|
||
|
|
|
||
|
|
void pa_device_port_new_data_set_direction(pa_device_port_new_data *data, pa_direction_t direction)
|
||
|
|
{
|
||
|
|
pa_assert(data);
|
||
|
|
data->direction = direction;
|
||
|
|
}
|
||
|
|
|
||
|
|
void pa_device_port_new_data_set_type(pa_device_port_new_data *data, pa_device_port_type_t type)
|
||
|
|
{
|
||
|
|
pa_assert(data);
|
||
|
|
data->type = type;
|
||
|
|
}
|
||
|
|
|
||
|
|
void pa_device_port_new_data_done(pa_device_port_new_data *data)
|
||
|
|
{
|
||
|
|
pa_assert(data);
|
||
|
|
pa_xfree(data->name);
|
||
|
|
pa_xfree(data->description);
|
||
|
|
pa_xfree(data->available_group);
|
||
|
|
}
|
||
|
|
|
||
|
|
pa_device_port *pa_device_port_new(pa_core *c, pa_device_port_new_data *data, size_t extra)
|
||
|
|
{
|
||
|
|
pa_device_port *p;
|
||
|
|
|
||
|
|
pa_assert(data);
|
||
|
|
pa_assert(data->name);
|
||
|
|
pa_assert(data->description);
|
||
|
|
pa_assert(data->direction == PA_DIRECTION_OUTPUT || data->direction == PA_DIRECTION_INPUT);
|
||
|
|
|
||
|
|
p = calloc(1, sizeof(pa_device_port) + extra);
|
||
|
|
|
||
|
|
p->port.name = data->name;
|
||
|
|
data->name = NULL;
|
||
|
|
p->port.description = data->description;
|
||
|
|
data->description = NULL;
|
||
|
|
p->port.priority = 0;
|
||
|
|
p->port.available = (enum acp_available) data->available;
|
||
|
|
p->port.available_group = data->available_group;
|
||
|
|
data->available_group = NULL;
|
||
|
|
p->profiles = pa_hashmap_new(pa_idxset_string_hash_func, pa_idxset_string_compare_func);
|
||
|
|
p->port.direction = data->direction == PA_DIRECTION_OUTPUT ?
|
||
|
|
ACP_DIRECTION_PLAYBACK : ACP_DIRECTION_CAPTURE;
|
||
|
|
p->port.type = (enum acp_port_type) data->type;
|
||
|
|
|
||
|
|
p->proplist = pa_proplist_new();
|
||
|
|
p->user_data = (void*)((uint8_t*)p + sizeof(pa_device_port));
|
||
|
|
|
||
|
|
return p;
|
||
|
|
}
|
||
|
|
|
||
|
|
void pa_device_port_set_available(pa_device_port *p, pa_available_t status)
|
||
|
|
{
|
||
|
|
enum acp_available old = p->port.available;
|
||
|
|
|
||
|
|
if (old == (enum acp_available) status)
|
||
|
|
return;
|
||
|
|
p->port.available = (enum acp_available) status;
|
||
|
|
|
||
|
|
if (p->card && p->card->events && p->card->events->port_available)
|
||
|
|
p->card->events->port_available(p->card->user_data, p->port.index,
|
||
|
|
old, (enum acp_available) status);
|
||
|
|
}
|
||
|
|
|
||
|
|
bool pa_alsa_device_init_description(pa_proplist *p, pa_card *card) {
|
||
|
|
const char *s, *d = NULL, *k;
|
||
|
|
pa_assert(p);
|
||
|
|
|
||
|
|
if (pa_proplist_contains(p, PA_PROP_DEVICE_DESCRIPTION))
|
||
|
|
return true;
|
||
|
|
|
||
|
|
if (card)
|
||
|
|
if ((s = pa_proplist_gets(card->proplist, PA_PROP_DEVICE_DESCRIPTION)))
|
||
|
|
d = s;
|
||
|
|
|
||
|
|
if (!d)
|
||
|
|
if ((s = pa_proplist_gets(p, PA_PROP_DEVICE_FORM_FACTOR)))
|
||
|
|
if (pa_streq(s, "internal"))
|
||
|
|
d = _("Built-in Audio");
|
||
|
|
|
||
|
|
if (!d)
|
||
|
|
if ((s = pa_proplist_gets(p, PA_PROP_DEVICE_CLASS)))
|
||
|
|
if (pa_streq(s, "modem"))
|
||
|
|
d = _("Modem");
|
||
|
|
|
||
|
|
if (!d)
|
||
|
|
d = pa_proplist_gets(p, PA_PROP_DEVICE_PRODUCT_NAME);
|
||
|
|
|
||
|
|
if (!d)
|
||
|
|
return false;
|
||
|
|
|
||
|
|
k = pa_proplist_gets(p, PA_PROP_DEVICE_PROFILE_DESCRIPTION);
|
||
|
|
|
||
|
|
if (d && k)
|
||
|
|
pa_proplist_setf(p, PA_PROP_DEVICE_DESCRIPTION, "%s %s", d, k);
|
||
|
|
else if (d)
|
||
|
|
pa_proplist_sets(p, PA_PROP_DEVICE_DESCRIPTION, d);
|
||
|
|
|
||
|
|
return true;
|
||
|
|
}
|