[Scummvm-cvs-logs] scummvm master -> 703d1d71425a0bd3a36db39f2c153cb1622158bb

m-kiewitz m_kiewitz at users.sourceforge.net
Sun Sep 13 00:29:47 CEST 2015


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:
703d1d7142 SHERLOCK: SS: 3DO: fix video downscale comment


Commit: 703d1d71425a0bd3a36db39f2c153cb1622158bb
    https://github.com/scummvm/scummvm/commit/703d1d71425a0bd3a36db39f2c153cb1622158bb
Author: Martin Kiewitz (m_kiewitz at users.sourceforge.net)
Date: 2015-09-13T00:29:08+02:00

Commit Message:
SHERLOCK: SS: 3DO: fix video downscale comment

it's called pixel weighting, not color weighting

Changed paths:
    engines/sherlock/scalpel/scalpel.cpp



diff --git a/engines/sherlock/scalpel/scalpel.cpp b/engines/sherlock/scalpel/scalpel.cpp
index 4bca300..aef9dfd 100644
--- a/engines/sherlock/scalpel/scalpel.cpp
+++ b/engines/sherlock/scalpel/scalpel.cpp
@@ -1293,9 +1293,9 @@ bool ScalpelEngine::play3doMovie(const Common::String &filename, const Common::P
 					// movies are 152 x 200
 
 					// Downscale, but calculate average color out of 4 pixels and put that average into the target pixel
-					// TODO: 3DO actually did color weighting, exact details about this are unknown
-					// it's also unknown what 3DO exactly did for interpolation and it's also unknown atm
-					// if the CinePak videos contained color weighting information
+					// TODO: 3DO actually did pixel weighting, exact details about this are unknown
+					// It's also unknown what 3DO exactly did for interpolation
+					// and it's also unknown atm if the CinePak videos contained pixel weighting information
 
 					if ((height & 1) || (width & 1)) {
 						error("Scalpel3DOMoviePlay: critical error, half-size requested on video with uneven height/width");






More information about the Scummvm-git-logs mailing list