27 lines
446 B
Objective-C
Executable file
27 lines
446 B
Objective-C
Executable file
//
|
|
// MIDIDecoder.h
|
|
// MIDI
|
|
//
|
|
// Created by Christopher Snowhill on 10/15/13.
|
|
// Copyright 2013 __NoWork, Inc__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import "MIDIPlayer.h"
|
|
|
|
#import "Plugin.h"
|
|
|
|
@interface MIDIDecoder : NSObject <CogDecoder> {
|
|
MIDIPlayer* player;
|
|
midi_container midi_file;
|
|
|
|
BOOL soundFontsAssigned;
|
|
|
|
long totalFrames;
|
|
long framesLength;
|
|
long framesFade;
|
|
long framesRead;
|
|
}
|
|
|
|
@end
|