IMAGE: Implemented Indeo5 decoder
This commit is contained in:
parent
bd010bc79f
commit
fe6d624277
7 changed files with 907 additions and 8 deletions
|
@ -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'):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue