From 886cfbc0e958760eeff9d5df59a54d956de80d90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomas=20H=C3=A4rdin?= Date: Wed, 19 Jun 2024 11:17:47 +0200 Subject: [PATCH] src/modules/core/transition_mix.c: Increase MAX_CHANNELS to 32 This matches filter_audiomap.c --- src/modules/core/transition_mix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/core/transition_mix.c b/src/modules/core/transition_mix.c index 453257b71..1807701bf 100644 --- a/src/modules/core/transition_mix.c +++ b/src/modules/core/transition_mix.c @@ -26,7 +26,7 @@ #include #include -#define MAX_CHANNELS (6) +#define MAX_CHANNELS (32) #define MAX_SAMPLES (192000) #define SAMPLE_BYTES(samples, channels) ((samples) * (channels) * sizeof(float)) #define MAX_BYTES SAMPLE_BYTES(MAX_SAMPLES, MAX_CHANNELS)