cog/Plugins/MonkeysAudio/MonkeysAudioDecoder.h

31 lines
459 B
C
Raw Normal View History

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
//
#import <Cocoa/Cocoa.h>
#import "MAC/All.h"
#import "MAC/MACLib.h"
2005-06-02 18:16:43 +00:00
#import "Plugin.h"
2005-06-02 18:16:43 +00:00
#import "SourceIO.h"
@interface MonkeysAudioDecoder : NSObject <CogDecoder>
{
IAPEDecompress *decompress;
id<CogSource> source;
SourceIO *sourceIO;
int channels;
int bitsPerSample;
float frequency;
double length;
2005-06-02 18:16:43 +00:00
}
@end