34 lines
576 B
C
34 lines
576 B
C
|
//
|
||
|
// DSPHRTFNode.h
|
||
|
// CogAudio
|
||
|
//
|
||
|
// Created by Christopher Snowhill on 2/11/25.
|
||
|
//
|
||
|
|
||
|
#ifndef DSPHRTFNode_h
|
||
|
#define DSPHRTFNode_h
|
||
|
|
||
|
#import <simd/types.h>
|
||
|
|
||
|
#import "DSPNode.h"
|
||
|
|
||
|
@interface DSPHRTFNode : 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;
|
||
|
|
||
|
- (void)reportMotion:(simd_float4x4)matrix;
|
||
|
- (void)resetReferencePosition:(NSNotification *_Nullable)notification;
|
||
|
|
||
|
@end
|
||
|
|
||
|
#endif /* DSPHRTFNode_h */
|