25 lines
405 B
Objective-C
25 lines
405 B
Objective-C
//
|
|
// AODecoder.h
|
|
// AudioOverload
|
|
//
|
|
// Created by Vincent Spader on 2/28/09.
|
|
// Copyright 2009 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "Plugin.h"
|
|
|
|
@interface AODecoder : NSObject<CogDecoder,CogMetadataReader> {
|
|
uint8_t *fileBuffer;
|
|
uint8_t *sampleBuffer;
|
|
int samplesInBuffer;
|
|
|
|
int type;
|
|
|
|
BOOL closed;
|
|
long long totalFrames;
|
|
long long framesRead;
|
|
}
|
|
|
|
@end
|