This will no longer be in the output implementation. Signed-off-by: Christopher Snowhill <kode54@gmail.com>
28 lines
460 B
Objective-C
28 lines
460 B
Objective-C
//
|
|
// DSPFSurroundNode.h
|
|
// CogAudio
|
|
//
|
|
// Created by Christopher Snowhill on 2/11/25.
|
|
//
|
|
|
|
#ifndef DSPFSurroundNode_h
|
|
#define DSPFSurroundNode_h
|
|
|
|
#import "DSPNode.h"
|
|
|
|
@interface DSPFSurroundNode : DSPNode {
|
|
}
|
|
|
|
- (id _Nullable)initWithController:(id _Nonnull)c previous:(id _Nullable)p latency:(double)latency;
|
|
|
|
- (BOOL)setup;
|
|
- (void)cleanUp;
|
|
|
|
- (void)resetBuffer;
|
|
|
|
- (void)process;
|
|
- (AudioChunk * _Nullable)convert;
|
|
|
|
@end
|
|
|
|
#endif /* DSPFSurroundNode_h */
|