Fix the video provider after the FFMS2 changes

Originally committed to SVN as r2851.
This commit is contained in:
Fredrik Mellbin 2009-04-25 09:26:03 +00:00
parent 8f7930e876
commit f64b10978b
2 changed files with 11 additions and 11 deletions

View File

@ -55,8 +55,8 @@ FFmpegSourceVideoProvider::FFmpegSourceVideoProvider(Aegisub::String filename, d
// clean up variables
VideoSource = NULL;
Index = NULL;
DstFormat = PIX_FMT_NONE;
LastDstFormat = PIX_FMT_NONE;
DstFormat = FFMS_GetPixFmt("PIX_FMT_NONE");
LastDstFormat = FFMS_GetPixFmt("PIX_FMT_NONE");
KeyFramesLoaded = false;
FrameNumber = -1;
MessageSize = sizeof(FFMSErrorMessage);
@ -194,8 +194,8 @@ void FFmpegSourceVideoProvider::Close() {
if (Index)
FFMS_DestroyFrameIndex(Index);
DstFormat = PIX_FMT_NONE;
LastDstFormat = PIX_FMT_NONE;
DstFormat = FFMS_GetPixFmt("PIX_FMT_NONE");
LastDstFormat = FFMS_GetPixFmt("PIX_FMT_NONE");
KeyFramesLoaded = false;
KeyFramesList.clear();
TimecodesVector.clear();
@ -226,19 +226,19 @@ const AegiVideoFrame FFmpegSourceVideoProvider::GetFrame(int _n, int FormatType)
// choose output format
if (FormatType & FORMAT_RGB32 && big_endian) {
DstFormat = PIX_FMT_BGR32_1;
DstFormat = FFMS_GetPixFmt("PIX_FMT_BGR32_1");
DstFrame.format = FORMAT_RGB32;
} else if (FormatType & FORMAT_RGB32 && !big_endian) {
DstFormat = PIX_FMT_RGB32;
DstFormat = FFMS_GetPixFmt("PIX_FMT_RGB32");
DstFrame.format = FORMAT_RGB32;
} else if (FormatType & FORMAT_RGB24) {
DstFormat = PIX_FMT_BGR24;
DstFormat = FFMS_GetPixFmt("PIX_FMT_BGR24");
DstFrame.format = FORMAT_RGB24;
} else if (FormatType & FORMAT_YV12) {
DstFormat = PIX_FMT_YUV420P; // may or may not work
DstFormat = FFMS_GetPixFmt("PIX_FMT_YUV420P"); // may or may not work
DstFrame.format = FORMAT_YV12;
} else if (FormatType & FORMAT_YUY2) {
DstFormat = PIX_FMT_YUYV422;
DstFormat = FFMS_GetPixFmt("PIX_FMT_YUYV422");
DstFrame.format = FORMAT_YUY2;
} else
throw _T("FFmpegSource video provider: upstream provider requested unknown or unsupported pixel format");

View File

@ -57,8 +57,8 @@ private:
std::vector<int> TimecodesVector;
FrameRate Timecodes;
PixelFormat DstFormat;
PixelFormat LastDstFormat;
int DstFormat;
int LastDstFormat;
AegiVideoFrame CurFrame;
char FFMSErrorMessage[1024];