Skip to content

Commit

Permalink
Reduce inter-thread buffering a bit
Browse files Browse the repository at this point in the history
This isn't needed so much now that the output buffers more.

Should reduce the problems of #370

Signed-off-by: Christopher Snowhill <kode54@gmail.com>
  • Loading branch information
kode54 committed Jul 29, 2023
1 parent fc2d968 commit eae6c96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Audio/Chain/Node.m
Expand Up @@ -22,7 +22,7 @@ @implementation Node
- (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];
Expand Down

0 comments on commit eae6c96

Please sign in to comment.