Cog/Plugins/vgmstream/vgmstream/VGMDecoder.h
Christopher Snowhill ed625bd63c Oops in VGMStream.
2017-12-16 20:25:18 -08:00

27 lines
476 B
Objective-C

//
// VGMDecoder.h
// vgmstream
//
// Created by Christopher Snowhill on 02/25/14.
// Copyright 2014 __NoWork, Inc__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import <vgmstream/vgmstream.h>
#import <vgmstream/streamfile.h>
#import "Plugin.h"
@interface VGMDecoder : NSObject <CogDecoder> {
VGMSTREAM *stream;
int sampleRate;
int channels;
int bitrate;
long totalFrames;
long framesLength;
long framesFade;
long framesRead;
}
@end