#include "ffmpegsource.h" int GetSWSCPUFlags(IScriptEnvironment *Env) { int Flags = 0; long CPUFlags = Env->GetCPUFlags(); if (CPUFlags & CPUF_MMX) CPUFlags |= SWS_CPU_CAPS_MMX; if (CPUFlags & CPUF_INTEGER_SSE) CPUFlags |= SWS_CPU_CAPS_MMX2; if (CPUFlags & CPUF_3DNOW) CPUFlags |= SWS_CPU_CAPS_3DNOW; return Flags; } int FFBase::FrameFromDTS(int64_t ADTS) { for (int i = 0; i < (int)FrameToDTS.size(); i++) if (FrameToDTS[i].DTS == ADTS) return i; return -1; } int FFBase::ClosestFrameFromDTS(int64_t ADTS) { int Frame = 0; int64_t BestDiff = 0xFFFFFFFFFFFFFF; for (int i = 0; i < (int)FrameToDTS.size(); i++) { int64_t CurrentDiff = FFABS(FrameToDTS[i].DTS - ADTS); if (CurrentDiff < BestDiff) { BestDiff = CurrentDiff; Frame = i; } } return Frame; } int FFBase::FindClosestKeyFrame(int AFrame) { for (int i = AFrame; i > 0; i--) if (FrameToDTS[i].KeyFrame) return i; return 0; } bool FFBase::LoadFrameInfoFromFile(const char *AVideoCacheFile, const char *ASource, int AVideoTrack) { char DefaultCacheFilename[1024]; sprintf(DefaultCacheFilename, "%s.ffv%dcache", ASource, AVideoTrack); if (!strcmp(AVideoCacheFile, "")) AVideoCacheFile = DefaultCacheFilename; FILE *CacheFile = fopen(AVideoCacheFile, "r"); if (!CacheFile) return false; if (fscanf(CacheFile, "%d\r\n", &VI.num_frames) <= 0) { fclose(CacheFile); return false; } for (int i = 0; i < VI.num_frames; i++) { int64_t DTSTemp; int KFTemp; fscanf(CacheFile, "%lld %d\r\n", &DTSTemp, &KFTemp); FrameToDTS.push_back(FrameInfo(DTSTemp, KFTemp != 0)); } fclose(CacheFile); return true; } bool FFBase::SaveFrameInfoToFile(const char *AVideoCacheFile, const char *ASource, int AVideoTrack) { char DefaultCacheFilename[1024]; sprintf(DefaultCacheFilename, "%s.ffv%dcache", ASource, AVideoTrack); if (!strcmp(AVideoCacheFile, "")) AVideoCacheFile = DefaultCacheFilename; FILE *CacheFile = fopen(AVideoCacheFile, "wb"); if (!CacheFile) return false; fprintf(CacheFile, "%d\r\n", VI.num_frames); for (int i = 0; i < VI.num_frames; i++) fprintf(CacheFile, "%lld %d\r\n", FrameToDTS[i].DTS, (int)(FrameToDTS[i].KeyFrame ? 1 : 0)); fclose(CacheFile); return true; } bool FFBase::SaveTimecodesToFile(const char *ATimecodeFile, int64_t ScaleD, int64_t ScaleN) { if (!strcmp(ATimecodeFile, "")) return true; FILE *TimecodeFile = fopen(ATimecodeFile, "wb"); if (!TimecodeFile) return false; for (int i = 0; i < VI.num_frames; i++) fprintf(TimecodeFile, "%f\r\n", (FrameToDTS[i].DTS * ScaleD) / (double)ScaleN); fclose(TimecodeFile); return true; } bool FFBase::PrepareAudioCache(const char *AAudioCacheFile, const char *ASource, int AAudioTrack, IScriptEnvironment *Env) { char DefaultCacheFilename[1024]; sprintf(DefaultCacheFilename, "%s.ffa%dcache", ASource, AAudioTrack); if (!strcmp(AAudioCacheFile, "")) AAudioCacheFile = DefaultCacheFilename; AudioCache = fopen(AAudioCacheFile, "rb"); if (!AudioCache) { AudioCache = fopen(AAudioCacheFile, "wb+"); if (!AudioCache) Env->ThrowError("FFmpegSource: Failed to open the audio cache file for writing"); return false; } _fseeki64(AudioCache, 0, SEEK_END); int64_t CacheSize = _ftelli64(AudioCache); if (CacheSize > 0) { VI.num_audio_samples = VI.AudioSamplesFromBytes(CacheSize); return true; } AudioCache = freopen(AAudioCacheFile, "wb", AudioCache); if (!AudioCache) Env->ThrowError("FFmpegSource: Failed to open the audio cache file for writing"); return false; } void FFBase::InitPP(int AWidth, int AHeight, const char *APPString, int AQuality, int APixelFormat, IScriptEnvironment *Env) { if (!strcmp(APPString, "")) return; if (AQuality < 0 || AQuality > PP_QUALITY_MAX) Env->ThrowError("FFmpegSource: Quality is out of range"); PPMode = pp_get_mode_by_name_and_quality((char *)APPString, AQuality); if (!PPMode) Env->ThrowError("FFmpegSource: Invalid postprocesing settings"); int Flags = GetPPCPUFlags(Env); switch (APixelFormat) { case PIX_FMT_YUV420P: Flags |= PP_FORMAT_420; break; case PIX_FMT_YUV422P: Flags |= PP_FORMAT_422; break; case PIX_FMT_YUV411P: Flags |= PP_FORMAT_411; break; case PIX_FMT_YUV444P: Flags |= PP_FORMAT_444; break; default: Env->ThrowError("FFmpegSource: Input format is not supported for postprocessing"); } PPContext = pp_get_context(VI.width, VI.height, Flags); if (avpicture_alloc(&PPPicture, APixelFormat, AWidth, AHeight) < 0) Env->ThrowError("FFmpegSource: Failed to allocate picture"); } void FFBase::SetOutputFormat(int ACurrentFormat, IScriptEnvironment *Env) { int Loss; int BestFormat = avcodec_find_best_pix_fmt((1 << PIX_FMT_YUV420P) | (1 << PIX_FMT_YUYV422) | (1 << PIX_FMT_RGB32) | (1 << PIX_FMT_BGR24), ACurrentFormat, 1 /* Required to prevent pointless RGB32 => RGB24 conversion */, &Loss); switch (BestFormat) { case PIX_FMT_YUV420P: VI.pixel_type = VideoInfo::CS_I420; break; case PIX_FMT_YUYV422: VI.pixel_type = VideoInfo::CS_YUY2; break; case PIX_FMT_RGB32: VI.pixel_type = VideoInfo::CS_BGR32; break; case PIX_FMT_BGR24: VI.pixel_type = VideoInfo::CS_BGR24; break; default: Env->ThrowError("FFmpegSource: No suitable output format found"); } if (BestFormat != ACurrentFormat) { ConvertToFormat = BestFormat; SWS = sws_getContext(VI.width, VI.height, ACurrentFormat, VI.width, VI.height, ConvertToFormat, GetSWSCPUFlags(Env) | SWS_BICUBIC, NULL, NULL, NULL); } } PVideoFrame FFBase::OutputFrame(AVFrame *AFrame, IScriptEnvironment *Env) { AVPicture *SrcPicture = (AVPicture *)AFrame; if (PPContext) { pp_postprocess(AFrame->data, AFrame->linesize, PPPicture.data, PPPicture.linesize, VI.width, VI.height, AFrame->qscale_table, AFrame->qstride, PPMode, PPContext, AFrame->pict_type | (AFrame->qscale_type ? PP_PICT_TYPE_QP2 : 0)); SrcPicture = &PPPicture; } PVideoFrame Dst = Env->NewVideoFrame(VI); if (ConvertToFormat != PIX_FMT_NONE && VI.pixel_type == VideoInfo::CS_I420) { uint8_t *DstData[3] = {Dst->GetWritePtr(PLANAR_Y), Dst->GetWritePtr(PLANAR_U), Dst->GetWritePtr(PLANAR_V)}; int DstStride[3] = {Dst->GetPitch(PLANAR_Y), Dst->GetPitch(PLANAR_U), Dst->GetPitch(PLANAR_V)}; sws_scale(SWS, SrcPicture->data, SrcPicture->linesize, 0, VI.height, DstData, DstStride); } else if (ConvertToFormat != PIX_FMT_NONE) { if (VI.IsRGB()) { uint8_t *DstData[1] = {Dst->GetWritePtr() + Dst->GetPitch() * (Dst->GetHeight() - 1)}; int DstStride[1] = {-Dst->GetPitch()}; sws_scale(SWS, SrcPicture->data, SrcPicture->linesize, 0, VI.height, DstData, DstStride); } else { uint8_t *DstData[1] = {Dst->GetWritePtr()}; int DstStride[1] = {Dst->GetPitch()}; sws_scale(SWS, SrcPicture->data, SrcPicture->linesize, 0, VI.height, DstData, DstStride); } } else if (VI.pixel_type == VideoInfo::CS_I420) { Env->BitBlt(Dst->GetWritePtr(PLANAR_Y), Dst->GetPitch(PLANAR_Y), SrcPicture->data[0], SrcPicture->linesize[0], Dst->GetRowSize(PLANAR_Y), Dst->GetHeight(PLANAR_Y)); Env->BitBlt(Dst->GetWritePtr(PLANAR_U), Dst->GetPitch(PLANAR_U), SrcPicture->data[1], SrcPicture->linesize[1], Dst->GetRowSize(PLANAR_U), Dst->GetHeight(PLANAR_U)); Env->BitBlt(Dst->GetWritePtr(PLANAR_V), Dst->GetPitch(PLANAR_V), SrcPicture->data[2], SrcPicture->linesize[2], Dst->GetRowSize(PLANAR_V), Dst->GetHeight(PLANAR_V)); } else { if (VI.IsRGB()) Env->BitBlt(Dst->GetWritePtr() + Dst->GetPitch() * (Dst->GetHeight() - 1), -Dst->GetPitch(), SrcPicture->data[0], SrcPicture->linesize[0], Dst->GetRowSize(), Dst->GetHeight()); else Env->BitBlt(Dst->GetWritePtr(), Dst->GetPitch(), SrcPicture->data[0], SrcPicture->linesize[0], Dst->GetRowSize(), Dst->GetHeight()); } return Dst; } void __stdcall FFBase::GetAudio(void* Buf, __int64 Start, __int64 Count, IScriptEnvironment* Env) { _fseeki64(AudioCache, VI.BytesFromAudioSamples(Start), SEEK_SET); fread(Buf, 1, VI.BytesFromAudioSamples(Count), AudioCache); } FFBase::FFBase() { memset(&VI, 0, sizeof(VI)); AudioCache = NULL; PPContext = NULL; PPMode = NULL; SWS = NULL; ConvertToFormat = PIX_FMT_NONE; memset(&PPPicture, 0, sizeof(PPPicture)); DecodeFrame = avcodec_alloc_frame(); } FFBase::~FFBase() { if (SWS) sws_freeContext(SWS); if (PPMode) pp_free_mode(PPMode); if (PPContext) pp_free_context(PPContext); avpicture_free(&PPPicture); av_free(DecodeFrame); }