From 67070762d0c5ab40275b546d00ec9b7ff254ba73 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Mon, 23 Mar 2026 12:14:27 +0100 Subject: [PATCH] mixer: only add input ports to mixer --- spa/plugins/control/mixer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spa/plugins/control/mixer.c b/spa/plugins/control/mixer.c index caf3a6b06..b9d57c1e6 100644 --- a/spa/plugins/control/mixer.c +++ b/spa/plugins/control/mixer.c @@ -589,7 +589,7 @@ static int do_port_set_io(struct spa_loop *loop, bool async, uint32_t seq, port->io[0] = info->data; port->io[1] = info->data; } - if (!port->active) { + if (port->direction == SPA_DIRECTION_INPUT && !port->active) { spa_list_append(&info->impl->mix_list, &port->mix_link); port->active = true; }