Skip to content

Commit

Permalink
src/modules/core/transition_mix.c: Increase MAX_CHANNELS to 32
Browse files Browse the repository at this point in the history
This matches filter_audiomap.c
  • Loading branch information
Tjoppen committed Jun 19, 2024
1 parent 15a46c9 commit 886cfbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/core/transition_mix.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#include <stdlib.h>
#include <string.h>

#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)
Expand Down

0 comments on commit 886cfbc

Please sign in to comment.