scummvm/image/module.mk
Matthew Duggan 818e681746 IMAGE: Add support for Crusader: No Remorse movie decoding
The movies for Crusader: No Remorse have a unique decoder which is not too hard
to implement.  Unfortunately, they don't properly implement the "compression"
FourCC, and instead put their ID in the "Stream Handler".  Since supporting
them requires a change to the existing Image API, I thought I should make a
pull request for comments.

With this change, the movies in Crusader can all be played nicely.
2020-05-11 07:54:24 +02:00

40 lines
619 B
Makefile

MODULE := image
MODULE_OBJS := \
bmp.o \
iff.o \
jpeg.o \
pcx.o \
pict.o \
png.o \
tga.o \
codecs/bmp_raw.o \
codecs/cdtoons.o \
codecs/cinepak.o \
codecs/codec.o \
codecs/indeo3.o \
codecs/indeo4.o \
codecs/indeo5.o \
codecs/jyv1.o \
codecs/mjpeg.o \
codecs/msrle.o \
codecs/msrle4.o \
codecs/msvideo1.o \
codecs/qtrle.o \
codecs/rpza.o \
codecs/smc.o \
codecs/svq1.o \
codecs/truemotion1.o \
codecs/indeo/indeo.o \
codecs/indeo/indeo_dsp.o \
codecs/indeo/mem.o \
codecs/indeo/vlc.o
ifdef USE_MPEG2
MODULE_OBJS += \
codecs/mpeg.o
endif
# Include common rules
include $(srcdir)/rules.mk