Cog/Plugins/APL/APLDecoder.h
Christopher Snowhill 85c7073649 Reformat my own source code with clang-format
Signed-off-by: Christopher Snowhill <kode54@gmail.com>
2022-02-06 21:49:27 -08:00

24 lines
443 B
Objective-C

//
// APLDecoder.h
#import <Cocoa/Cocoa.h>
#import "Plugin.h"
@class APLFile;
@interface APLDecoder : NSObject <CogDecoder> {
id<CogSource> source;
id<CogDecoder> decoder;
int bytesPerFrame; // Number of bytes per frame, ie channels * (bitsPerSample/8)
long framePosition; // current position in frames
long trackStart;
long trackEnd; // frames until end of track.
long trackLength; // track len in frames
APLFile *apl;
}
@end