2025-02-11 05:55:29 -03:00
|
|
|
//
|
|
|
|
// DSPNode.h
|
|
|
|
// CogAudio
|
|
|
|
//
|
|
|
|
// Created by Christopher Snowhill on 2/10/25.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef DSPNode_h
|
|
|
|
#define DSPNode_h
|
|
|
|
|
2025-02-26 01:10:06 -03:00
|
|
|
#import <CogAudio/Node.h>
|
2025-02-11 05:55:29 -03:00
|
|
|
|
|
|
|
@interface DSPNode : Node {
|
|
|
|
}
|
|
|
|
|
|
|
|
- (id _Nullable)initWithController:(id _Nonnull)c previous:(id _Nullable)p latency:(double)latency;
|
|
|
|
|
2025-02-11 20:06:59 -03:00
|
|
|
- (void)threadEntry:(id _Nullable)arg;
|
|
|
|
|
2025-03-11 03:08:49 -03:00
|
|
|
- (void)setShouldContinue:(BOOL)s;
|
|
|
|
|
2025-02-13 06:12:53 -03:00
|
|
|
- (double)secondsBuffered;
|
|
|
|
|
2025-02-11 05:55:29 -03:00
|
|
|
@end
|
|
|
|
|
|
|
|
#endif /* DSPNode_h */
|