cog/Plugins/FFMPEG/FFMPEGDecoder.h

42 lines
699 B
C
Raw Normal View History

//
// FFMPEGDecoder.h
// FFMPEG
//
// Created by Andre Reffhaug on 2/26/08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "Plugin.h"
#define __FRAMEWORK__
#import <FFMPEG/avcodec.h>
#import <FFMPEG/avformat.h>
#undef __FRAMEWORK__
@interface FFMPEGDecoder : NSObject <CogDecoder>
{
id<CogSource> source;
void *sampleBuffer;
int sampleBufferSize;
2008-03-01 14:11:30 +00:00
int numFrames;
int samplePos;
int streamIndex;
AVFormatContext *ic;
AVCodecContext *c;
AVCodec *codec;
BOOL seekable;
BOOL floatingPoint;
int bitsPerSample;
int bitrate;
int channels;
float frequency;
long totalFrames;
long framesPlayed;
long framesToSkip;
}
@end