forked from mia/Aegisub
36aecac4c3
Originally committed to SVN as r1548.
115 lines
3.6 KiB
C++
115 lines
3.6 KiB
C++
#include <windows.h>
|
|
#include <stdio.h>
|
|
#include <vector>
|
|
#include <stdlib.h>
|
|
#include <errno.h>
|
|
#include <string.h>
|
|
#include <fcntl.h>
|
|
#include <io.h>
|
|
|
|
#include <stream_decoder.h>
|
|
#include <stream_encoder.h>
|
|
|
|
extern "C" {
|
|
#include <ffmpeg\avformat.h>
|
|
#include <ffmpeg\avcodec.h>
|
|
#include <ffmpeg\swscale.h>
|
|
#include <postproc\postprocess.h>
|
|
}
|
|
|
|
#include "MatroskaParser.h"
|
|
#include "avisynth.h"
|
|
|
|
enum AudioCacheFormat {acNone, acRaw, acFLAC};
|
|
|
|
int GetPPCPUFlags(IScriptEnvironment *Env);
|
|
int GetSWSCPUFlags(IScriptEnvironment *Env);
|
|
CodecID MatroskaToFFCodecID(TrackInfo *TI);
|
|
|
|
class FFPP : public GenericVideoFilter {
|
|
private:
|
|
pp_context_t *PPContext;
|
|
pp_mode_t *PPMode;
|
|
SwsContext *SWSTo422P;
|
|
SwsContext *SWSFrom422P;
|
|
AVPicture InputPicture;
|
|
AVPicture OutputPicture;
|
|
public:
|
|
FFPP(PClip AChild, const char *APPString, int AQuality, IScriptEnvironment *Env);
|
|
~FFPP();
|
|
PVideoFrame __stdcall GetFrame(int n, IScriptEnvironment* Env);
|
|
};
|
|
|
|
class FFBase : public IClip{
|
|
private:
|
|
pp_context_t *PPContext;
|
|
pp_mode_t *PPMode;
|
|
SwsContext *SWS;
|
|
int ConvertToFormat;
|
|
AVPicture PPPicture;
|
|
protected:
|
|
VideoInfo VI;
|
|
AVFrame *DecodeFrame;
|
|
FILE *RawAudioCache;
|
|
FLAC__StreamDecoder *FLACAudioCache;
|
|
AudioCacheFormat AudioCacheType;
|
|
|
|
uint8_t *DecodingBuffer;
|
|
FLAC__int32 *FLACBuffer;
|
|
|
|
struct FrameInfo {
|
|
int64_t DTS;
|
|
bool KeyFrame;
|
|
FrameInfo(int64_t ADTS, bool AKeyFrame) : DTS(ADTS), KeyFrame(AKeyFrame) {};
|
|
};
|
|
|
|
std::vector<FrameInfo> FrameToDTS;
|
|
|
|
int FindClosestKeyFrame(int AFrame);
|
|
int FrameFromDTS(int64_t ADTS);
|
|
int ClosestFrameFromDTS(int64_t ADTS);
|
|
bool LoadFrameInfoFromFile(const char *AVideoCacheFile, const char *ASource, int AVideoTrack);
|
|
bool SaveFrameInfoToFile(const char *AVideoCacheFile, const char *ASource, int AVideoTrack);
|
|
bool SaveTimecodesToFile(const char *ATimecodeFile, int64_t ScaleD, int64_t ScaleN);
|
|
|
|
bool OpenAudioCache(const char *AAudioCacheFile, const char *ASource, int AAudioTrack, IScriptEnvironment *Env);
|
|
FLAC__StreamEncoder *FFBase::NewFLACCacheWriter(const char *AAudioCacheFile, const char *ASource, int AAudioTrack, int ACompression, IScriptEnvironment *Env);
|
|
void FFBase::CloseFLACCacheWriter(FLAC__StreamEncoder *AFSE);
|
|
FILE *FFBase::NewRawCacheWriter(const char *AAudioCacheFile, const char *ASource, int AAudioTrack, IScriptEnvironment *Env);
|
|
void FFBase::CloseRawCacheWriter(FILE *ARawCache);
|
|
|
|
void InitPP(int AWidth, int AHeight, const char *APPString, int AQuality, int APixelFormat, IScriptEnvironment *Env);
|
|
void SetOutputFormat(int ACurrentFormat, IScriptEnvironment *Env);
|
|
PVideoFrame OutputFrame(AVFrame *AFrame, IScriptEnvironment *Env);
|
|
public:
|
|
// FLAC decoder variables, have to be public
|
|
FILE *FCFile;
|
|
__int64 FCCount;
|
|
void *FCBuffer;
|
|
bool FCError;
|
|
|
|
FFBase();
|
|
~FFBase();
|
|
|
|
bool __stdcall GetParity(int n) { return false; }
|
|
void __stdcall SetCacheHints(int cachehints, int frame_range) { }
|
|
const VideoInfo& __stdcall GetVideoInfo() { return VI; }
|
|
void __stdcall GetAudio(void* Buf, __int64 Start, __int64 Count, IScriptEnvironment* Env);
|
|
};
|
|
|
|
class FFmpegSource : public FFBase {
|
|
private:
|
|
AVFormatContext *FormatContext;
|
|
AVCodecContext *VideoCodecContext;
|
|
|
|
int VideoTrack;
|
|
int CurrentFrame;
|
|
int SeekMode;
|
|
|
|
int GetTrackIndex(int Index, CodecType ATrackType, IScriptEnvironment *Env);
|
|
int DecodeNextFrame(AVFrame *Frame, int64_t *DTS);
|
|
public:
|
|
FFmpegSource(const char *ASource, int AVideoTrack, int AAudioTrack, const char *ATimecodes, bool AVCache, const char *AVideoCache, const char *AAudioCache, int AACCompression, const char *APPString, int AQuality, int ASeekMode, IScriptEnvironment* Env);
|
|
~FFmpegSource();
|
|
PVideoFrame __stdcall GetFrame(int n, IScriptEnvironment* Env);
|
|
};
|