49 lines
898 B
Objective-C
49 lines
898 B
Objective-C
//
|
|
// RefillNode.m
|
|
// Cog
|
|
//
|
|
// Created by Christopher Snowhill on 1/13/22.
|
|
// Copyright 2022 __LoSnoCo__. All rights reserved.
|
|
//
|
|
|
|
#import "Plugin.h"
|
|
#import "RefillNode.h"
|
|
|
|
#import "Logging.h"
|
|
|
|
@implementation RefillNode
|
|
|
|
- (id)initWithController:(id)c previous:(id)p
|
|
{
|
|
self = [super init];
|
|
if (self)
|
|
{
|
|
// This special node should be able to handle up to four buffers
|
|
buffer = [[VirtualRingBuffer alloc] initWithLength:BUFFER_SIZE * 4];
|
|
semaphore = [[Semaphore alloc] init];
|
|
|
|
initialBufferFilled = NO;
|
|
|
|
controller = c;
|
|
endOfStream = NO;
|
|
shouldContinue = YES;
|
|
|
|
[self setPreviousNode:p];
|
|
}
|
|
|
|
return self;
|
|
}
|
|
|
|
- (void)writeData:(float *)data floatCount:(size_t)count
|
|
{
|
|
[self writeData:data amount:(int)(count * sizeof(float))];
|
|
}
|
|
|
|
|
|
- (void)dealloc
|
|
{
|
|
DLog(@"Refill Node dealloc");
|
|
}
|
|
|
|
@end
|