2005-06-02 14:16:43 -04:00
|
|
|
//
|
|
|
|
// VorbisFile.h
|
|
|
|
// zyVorbis
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 1/22/05.
|
2005-07-02 17:02:06 -04:00
|
|
|
// Copyright 2005 Vincent Spader All rights reserved.
|
2005-06-02 14:16:43 -04:00
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import "SoundFile.h"
|
|
|
|
#import <Vorbis/vorbisfile.h>
|
|
|
|
#import <Vorbis/codec.h>
|
|
|
|
|
|
|
|
@interface VorbisFile : SoundFile {
|
|
|
|
FILE *inFd;
|
|
|
|
OggVorbis_File vorbisRef;
|
|
|
|
int currentSection;
|
|
|
|
}
|
|
|
|
- (BOOL)readInfo;
|
|
|
|
@end
|