Cog/Plugins/vgmstream/vgmstream/VGMDecoder.h
2018-06-28 04:03:37 -07:00

27 lines
482 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 <libvgmstream/vgmstream.h>
#import <libvgmstream/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