2005-06-02 18:16:43 +00:00
|
|
|
//
|
|
|
|
// MonkeysFile.h
|
|
|
|
// zyVorbis
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 1/30/05.
|
2005-07-02 21:02:06 +00:00
|
|
|
// Copyright 2005 Vincent Spader All rights reserved.
|
2005-06-02 18:16:43 +00:00
|
|
|
//
|
|
|
|
|
2007-11-24 20:16:27 +00:00
|
|
|
#import "Plugin.h"
|
|
|
|
|
2005-06-02 18:16:43 +00:00
|
|
|
#import <Cocoa/Cocoa.h>
|
2007-02-24 20:36:27 +00:00
|
|
|
#import "MAC/All.h"
|
|
|
|
#import "MAC/MACLib.h"
|
2005-06-02 18:16:43 +00:00
|
|
|
|
2007-03-04 18:20:23 +00:00
|
|
|
#import "SourceIO.h"
|
|
|
|
|
2007-02-24 20:36:27 +00:00
|
|
|
@interface MonkeysAudioDecoder : NSObject <CogDecoder>
|
|
|
|
{
|
2007-03-04 18:20:23 +00:00
|
|
|
IAPEDecompress *decompress;
|
|
|
|
|
|
|
|
id<CogSource> source;
|
|
|
|
SourceIO *sourceIO;
|
2007-02-24 20:36:27 +00:00
|
|
|
|
|
|
|
int channels;
|
|
|
|
int bitsPerSample;
|
|
|
|
float frequency;
|
2007-11-24 20:16:27 +00:00
|
|
|
long totalFrames;
|
2005-06-02 18:16:43 +00:00
|
|
|
}
|
|
|
|
|
2007-03-04 18:41:43 +00:00
|
|
|
- (void)setSource:(id<CogSource>)s;
|
|
|
|
- (id<CogSource>)source;
|
|
|
|
|
2005-06-02 18:16:43 +00:00
|
|
|
@end
|