Fix accidental inclusion of test code in last commit.

Originally committed to SVN as r3153.
This commit is contained in:
Karl Blomster 2009-07-16 19:25:43 +00:00
parent 8087622edd
commit 62b036ac35

View file

@ -298,7 +298,7 @@ const AegiVideoFrame FFmpegSourceVideoProvider::GetFrame(int _n, int FormatType)
AegiVideoFrame &DstFrame = CurFrame;
// choose output format
if (0 /*FormatType & FORMAT_RGB32*/) {
if (FormatType & FORMAT_RGB32) {
DstFormat = FFMS_GetPixFmt("bgra");
DstFrame.format = FORMAT_RGB32;
} else if (FormatType & FORMAT_RGB24) {