Cog/Sound/SoundFile/ShnFile.h

25 lines
408 B
C
Raw Normal View History

2005-06-06 13:47:29 -04:00
//
// ShnFile.h
// Cog
//
2005-07-02 17:02:06 -04:00
// Created by Vincent Spader on 6/6/05.
// Copyright 2005 Vincent Spader All rights reserved.
2005-06-06 13:47:29 -04:00
//
#import <Cocoa/Cocoa.h>
2006-06-03 16:25:44 -04:00
#import <Shorten/shn_reader.h>
2005-06-06 13:47:29 -04:00
2006-06-03 16:25:44 -04:00
#import "SoundFile.h"
2005-06-06 13:47:29 -04:00
@interface ShnFile : SoundFile {
2006-06-03 16:25:44 -04:00
//shn_file *handle;
shn_reader *decoder;
2005-06-06 13:47:29 -04:00
2006-06-03 16:25:44 -04:00
long bufferSize; //total size
2005-06-06 13:47:29 -04:00
void *buffer;
2006-06-03 16:25:44 -04:00
void *inputBuffer;//derek
long bufferAmount; //amount currently in
2005-06-06 13:47:29 -04:00
}
@end