From 34122b4bf303a4a1c775ac9aa964dc3b4ad1be0a 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 534416f5b..2f696d3cf 100644 --- a/spa/plugins/audioconvert/audioconvert.c +++ b/spa/plugins/audioconvert/audioconvert.c @@ -2588,6 +2588,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;