mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-31 22:25:38 -04:00
media-session: destroy errored links
When a link we create is in error, destroy it.
This commit is contained in:
parent
8dcf76f661
commit
30dfe16c52
1 changed files with 10 additions and 0 deletions
|
|
@ -1486,6 +1486,15 @@ static void check_endpoint_link(struct endpoint_link *link)
|
|||
}
|
||||
}
|
||||
|
||||
static void proxy_link_error(void *data, int seq, int res, const char *message)
|
||||
{
|
||||
struct link *l = data;
|
||||
pw_log_warn("can't link %d:%d -> %d:%d: %s",
|
||||
l->output_node, l->output_port,
|
||||
l->input_node, l->input_port, message);
|
||||
pw_proxy_destroy(l->proxy);
|
||||
}
|
||||
|
||||
static void proxy_link_removed(void *data)
|
||||
{
|
||||
struct link *l = data;
|
||||
|
|
@ -1506,6 +1515,7 @@ static void proxy_link_destroy(void *data)
|
|||
|
||||
static const struct pw_proxy_events proxy_link_events = {
|
||||
PW_VERSION_PROXY_EVENTS,
|
||||
.error = proxy_link_error,
|
||||
.removed = proxy_link_removed,
|
||||
.destroy = proxy_link_destroy
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue