From 89edba837fee3ee4607fb7176688e04afcc0ac2c Mon Sep 17 00:00:00 2001 From: Eric Stutz Date: Tue, 23 Apr 2024 13:43:05 +0200 Subject: [PATCH] Increased soundstream buffer size --- Sources/kinc/audio1/soundstream.c.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/kinc/audio1/soundstream.c.h b/Sources/kinc/audio1/soundstream.c.h index 70399f8cd..c30e7219b 100644 --- a/Sources/kinc/audio1/soundstream.c.h +++ b/Sources/kinc/audio1/soundstream.c.h @@ -10,7 +10,7 @@ static kinc_a1_sound_stream_t streams[256]; static int nextStream = 0; -static uint8_t buffer[1024 * 10]; +static uint8_t buffer[1024 * 1024 * 10]; static int bufferIndex; kinc_a1_sound_stream_t *kinc_a1_sound_stream_create(const char *filename, bool looping) {