[Scummvm-git-logs] scummvm master -> 91d61b2cdbb95ee67bdb3d07da198be9575b561b

dreammaster dreammaster at scummvm.org
Sat Nov 19 02:58:46 CET 2016


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:
91d61b2cdb IMAGE: Respect bit depth in Indeo 5 decoder


Commit: 91d61b2cdbb95ee67bdb3d07da198be9575b561b
    https://github.com/scummvm/scummvm/commit/91d61b2cdbb95ee67bdb3d07da198be9575b561b
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2016-11-18T20:58:39-05:00

Commit Message:
IMAGE: Respect bit depth in Indeo 5 decoder

Changed paths:
    image/codecs/codec.cpp



diff --git a/image/codecs/codec.cpp b/image/codecs/codec.cpp
index d631a05..7d6d3cb 100644
--- a/image/codecs/codec.cpp
+++ b/image/codecs/codec.cpp
@@ -215,7 +215,7 @@ Codec *createBitmapCodec(uint32 tag, int width, int height, int bitsPerPixel) {
 	case MKTAG('I', 'V', '4', '2'):
 		return new Indeo4Decoder(width, height, bitsPerPixel);
 	case MKTAG('I', 'V', '5', '0'):
-		return new Indeo5Decoder(width, height);
+		return new Indeo5Decoder(width, height, bitsPerPixel);
 #ifdef IMAGE_CODECS_TRUEMOTION1_H
 	case MKTAG('D','U','C','K'):
 	case MKTAG('d','u','c','k'):





More information about the Scummvm-git-logs mailing list