From 545a1e9632e73d930d19e4dc5b953cf9d1e7c23b Mon Sep 17 00:00:00 2001 From: Christopher Snowhill Date: Sat, 29 Jul 2023 01:31:26 -0700 Subject: [PATCH] Reduce inter-thread buffering a bit This isn't needed so much now that the output buffers more. Should reduce the problems of #370 Signed-off-by: Christopher Snowhill --- Audio/Chain/Node.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Audio/Chain/Node.m b/Audio/Chain/Node.m index 7da2c88e6..6af52ceb3 100644 --- a/Audio/Chain/Node.m +++ b/Audio/Chain/Node.m @@ -22,7 +22,7 @@ - (id)initWithController:(id)c previous:(id)p { self = [super init]; if(self) { - buffer = [[ChunkList alloc] initWithMaximumDuration:3.0]; + buffer = [[ChunkList alloc] initWithMaximumDuration:1.0]; semaphore = [[Semaphore alloc] init]; accessLock = [[NSLock alloc] init];