// // FFMPEGDecoder.h // FFMPEG // // Created by Andre Reffhaug on 2/26/08. // Copyright 2008 __MyCompanyName__. All rights reserved. // #import #import "Plugin.h" #include #include @interface FFMPEGDecoder : NSObject { id source; BOOL seekable; int channels; int bitsPerSample; BOOL floatingPoint; BOOL lossy; float frequency; long totalFrames; long framesRead; int bitrate; @private unsigned char *buffer; AVIOContext *ioCtx; int streamIndex; AVFormatContext *formatCtx; AVCodecContext *codecCtx; AVFrame *lastDecodedFrame; AVPacket *lastReadPacket; int bytesConsumedFromDecodedFrame; BOOL readNextPacket; int64_t seekFrame; int64_t skipSamples; BOOL endOfStream; BOOL endOfAudio; } @end