aboutsummaryrefslogtreecommitdiff
path: root/image/codecs/codec.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2016-09-10 14:31:19 -0400
committerPaul Gilbert2016-09-10 14:31:19 -0400
commitfe6d624277412e7a9b32126da2586d6e663c9e91 (patch)
tree6415648da54089bfad08b2f0aaaa5eb61092e82b /image/codecs/codec.cpp
parentbd010bc79f6a56b51c1414a8cafc64bc248496fe (diff)
downloadscummvm-rg350-fe6d624277412e7a9b32126da2586d6e663c9e91.tar.gz
scummvm-rg350-fe6d624277412e7a9b32126da2586d6e663c9e91.tar.bz2
scummvm-rg350-fe6d624277412e7a9b32126da2586d6e663c9e91.zip
IMAGE: Implemented Indeo5 decoder
Diffstat (limited to 'image/codecs/codec.cpp')
-rw-r--r--image/codecs/codec.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/image/codecs/codec.cpp b/image/codecs/codec.cpp
index 105e41e4ac..913b7afab3 100644
--- a/image/codecs/codec.cpp
+++ b/image/codecs/codec.cpp
@@ -31,6 +31,7 @@
#include "image/codecs/cinepak.h"
#include "image/codecs/indeo3.h"
#include "image/codecs/indeo4.h"
+#include "image/codecs/indeo5.h"
#include "image/codecs/mjpeg.h"
#include "image/codecs/mpeg.h"
#include "image/codecs/msvideo1.h"
@@ -213,6 +214,8 @@ Codec *createBitmapCodec(uint32 tag, int width, int height, int bitsPerPixel) {
case MKTAG('I', 'V', '4', '1'):
case MKTAG('I', 'V', '4', '2'):
return new Indeo4Decoder(width, height);
+ case MKTAG('I', 'V', '5', '0'):
+ return new Indeo5Decoder(width, height);
#ifdef IMAGE_CODECS_TRUEMOTION1_H
case MKTAG('D','U','C','K'):
case MKTAG('d','u','c','k'):