handle Duplex media class

Audio/Duplex is both a source and a sink. Name the ports as input/output
and make sure we list them in the source and sink lists in pulse-server.
This commit is contained in:
Wim Taymans 2020-12-02 11:44:19 +01:00
parent b0a717c95e
commit d6127a4745
4 changed files with 18 additions and 7 deletions

View file

@ -89,7 +89,7 @@ static void node_port_init(void *data, struct pw_impl_port *port)
struct pw_properties *new;
const char *str, *path, *node_name, *media_class;
char position[8], *prefix;
bool is_monitor, is_device;
bool is_monitor, is_device, is_duplex;
direction = pw_impl_port_get_direction(port);
@ -111,9 +111,11 @@ static void node_port_init(void *data, struct pw_impl_port *port)
else
is_device = false;
is_duplex = media_class != NULL &&strstr(media_class, "Duplex") != NULL;
new = pw_properties_new(NULL, NULL);
if (is_monitor)
if (is_monitor && !is_duplex)
prefix = "monitor";
else if (is_device)
prefix = direction == PW_DIRECTION_INPUT ?