aboutsummaryrefslogtreecommitdiff
path: root/image/codecs/indeo/indeo.h
diff options
context:
space:
mode:
authorPaul Gilbert2016-09-11 11:51:16 -0400
committerPaul Gilbert2016-09-11 11:51:16 -0400
commit71fd176f053520e34541d6c8be72214d9afb94ef (patch)
tree94ef6cc57212424bf1bd6fb11a6fc8e0387dfa1a /image/codecs/indeo/indeo.h
parent207afb6f462fadbe48d4ec298ce7c30ea5c874f0 (diff)
downloadscummvm-rg350-71fd176f053520e34541d6c8be72214d9afb94ef.tar.gz
scummvm-rg350-71fd176f053520e34541d6c8be72214d9afb94ef.tar.bz2
scummvm-rg350-71fd176f053520e34541d6c8be72214d9afb94ef.zip
IMAGE: Compilation fixes for Indeo codecs
Diffstat (limited to 'image/codecs/indeo/indeo.h')
-rw-r--r--image/codecs/indeo/indeo.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/image/codecs/indeo/indeo.h b/image/codecs/indeo/indeo.h
index 3b0b1854f5..b4584a36ff 100644
--- a/image/codecs/indeo/indeo.h
+++ b/image/codecs/indeo/indeo.h
@@ -508,12 +508,12 @@ private:
int iviMc(IVIBandDesc *band, IviMCFunc mc, IviMCAvgFunc mcAvg,
int offs, int mvX, int mvY, int mvX2, int mvY2, int mcType, int mcType2);
- int ivi_decode_coded_blocks(GetBits *gb, IVIBandDesc *band,
+ int decodeCodedBlocks(GetBits *gb, IVIBandDesc *band,
IviMCFunc mc, IviMCAvgFunc mcAvg, int mvX, int mvY,
- int mvX2, int mvY2, int *prevDc, int isIntra,
+ int mvX2, int mvY2, int32 *prevDc, int isIntra,
int mcType, int mcType2, uint32 quant, int offs);
- int ivi_dc_transform(IVIBandDesc *band, int *prevDc, int bufOffs,
+ int iviDcTransform(IVIBandDesc *band, int32 *prevDc, int bufOffs,
int blkSize);
protected:
IVI45DecContext _ctx;