From 9c9a5ac4351926e9ebfefdc07f2fe40801846c5e Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Wed, 22 Apr 2026 16:10:21 +0200 Subject: [PATCH] convolver: returned processed samples --- spa/plugins/filter-graph/convolver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spa/plugins/filter-graph/convolver.c b/spa/plugins/filter-graph/convolver.c index dc66a2794..18c70db2a 100644 --- a/spa/plugins/filter-graph/convolver.c +++ b/spa/plugins/filter-graph/convolver.c @@ -429,7 +429,7 @@ int convolver_run_many(struct convolver *conv, const float *input, float *output } processed += processing; } - return 0; + return processed; } int convolver_run(struct convolver *conv, const float *input, float *output, int length)