[Scummvm-cvs-logs] scummvm master -> 46027e5303de8cd102f06a07572dd5fbf02c44e6

digitall dgturner at iee.org
Sun Nov 18 22:01:50 CET 2012


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
46027e5303 VIDEO: Fix SVQ1 videos to error out on B Frames.


Commit: 46027e5303de8cd102f06a07572dd5fbf02c44e6
    https://github.com/scummvm/scummvm/commit/46027e5303de8cd102f06a07572dd5fbf02c44e6
Author: D G Turner (digitall at scummvm.org)
Date: 2012-11-18T13:00:07-08:00

Commit Message:
VIDEO: Fix SVQ1 videos to error out on B Frames.

Changed paths:
    video/codecs/svq1.cpp



diff --git a/video/codecs/svq1.cpp b/video/codecs/svq1.cpp
index fd40a01..57e8496 100644
--- a/video/codecs/svq1.cpp
+++ b/video/codecs/svq1.cpp
@@ -225,7 +225,7 @@ const Graphics::Surface *SVQ1Decoder::decodeImage(Common::SeekableReadStream *st
 
 			byte *previous = 0;
 			if (frameType == 2) { // B Frame
-				warning("B Frame not supported currently");
+				error("SVQ1 Video: B Frames not supported");
 				//previous = _next[i];
 			} else {
 				previous = _last[i];






More information about the Scummvm-git-logs mailing list