From 43ddc2967be7617082411a4a19d49ee7f527d171 Mon Sep 17 00:00:00 2001 From: Torkel Niklasson Date: Tue, 9 Dec 2025 08:57:28 +0100 Subject: [PATCH] audioconvert: Set this->setup to false on flush command If flush is called, the active graphs are deactivated but this->setup remains true. --- spa/plugins/audioconvert/audioconvert.c | 1 + 1 file changed, 1 insertion(+) diff --git a/spa/plugins/audioconvert/audioconvert.c b/spa/plugins/audioconvert/audioconvert.c index e37abe1b0..1924f401d 100644 --- a/spa/plugins/audioconvert/audioconvert.c +++ b/spa/plugins/audioconvert/audioconvert.c @@ -2432,6 +2432,7 @@ static int impl_node_send_command(void *object, const struct spa_command *comman break; case SPA_NODE_COMMAND_Flush: reset_node(this); + this->setup = false; break; default: return -ENOTSUP;