2025-02-11 05:55:29 -03:00
|
|
|
//
|
|
|
|
// DSPRubberbandNode.h
|
|
|
|
// CogAudio
|
|
|
|
//
|
|
|
|
// Created by Christopher Snowhill on 2/10/25.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef DSPRubberbandNode_h
|
|
|
|
#define DSPRubberbandNode_h
|
|
|
|
|
|
|
|
#import "DSPNode.h"
|
|
|
|
|
|
|
|
@interface DSPRubberbandNode : DSPNode {
|
|
|
|
}
|
|
|
|
|
|
|
|
- (id _Nullable)initWithController:(id _Nonnull)c previous:(id _Nullable)p latency:(double)latency;
|
|
|
|
|
|
|
|
- (BOOL)setup;
|
|
|
|
- (void)cleanUp;
|
|
|
|
|
|
|
|
- (void)resetBuffer;
|
|
|
|
|
2025-02-14 03:25:27 -03:00
|
|
|
- (BOOL)paused;
|
|
|
|
|
2025-02-11 05:55:29 -03:00
|
|
|
- (void)process;
|
|
|
|
- (AudioChunk * _Nullable)convert;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
#endif /* DSPRubberbandNode_h */
|