From 73252a8928d9bd7282b937d1f4369184c98f077f Mon Sep 17 00:00:00 2001 From: Christopher Snowhill Date: Tue, 3 Oct 2023 19:46:11 -0700 Subject: [PATCH] Reduce audio buffering slightly again 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 ead30e7c2..9fac2158d 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:20.0]; + buffer = [[ChunkList alloc] initWithMaximumDuration:10.0]; semaphore = [[Semaphore alloc] init]; accessLock = [[NSLock alloc] init];