From b0d85abfa68eb1ae893f78bc26be8e06889a6df5 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sun, 22 Sep 2019 10:20:30 -0700 Subject: [PATCH] Increase audio circular buffer size to reduce glitching --- Limelight/Stream/Connection.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Limelight/Stream/Connection.m b/Limelight/Stream/Connection.m index 8a60127..1442ae9 100644 --- a/Limelight/Stream/Connection.m +++ b/Limelight/Stream/Connection.m @@ -32,7 +32,7 @@ static id _callbacks; #define OUTPUT_BUS 0 -#define CIRCULAR_BUFFER_SIZE 8 +#define CIRCULAR_BUFFER_SIZE 16 static int audioBufferWriteIndex; static int audioBufferReadIndex;