// // HCDecoder.h // HighlyComplete // // Created by Christopher Snowhill on 9/30/13. // Copyright 2013 __NoWork, Inc__. All rights reserved. // #import "Plugin.h" #include "circular_buffer.h" #import @interface HCDecoder : NSObject { id currentSource; BOOL hintAdded; NSString *currentUrl; uint8_t *emulatorCore; void *emulatorExtra; circular_buffer silence_test_buffer; NSDictionary *metadataList; int tagLengthMs; int tagFadeMs; int type; int sampleRate; long totalFrames; long framesRead; long framesLength; BOOL usfRemoveSilence; } @end