aboutsummaryrefslogtreecommitdiff
path: root/image/codecs/indeo/indeo.h
diff options
context:
space:
mode:
authorPaul Gilbert2016-09-08 23:07:26 -0400
committerPaul Gilbert2016-09-10 10:08:19 -0400
commit3a2ee8ea23247f72628294b48b43716c1b84d8a8 (patch)
tree27cd1dd05c3dcc313ed5a16cc94d8ded84e744dd /image/codecs/indeo/indeo.h
parent400661182efae9659e664fec0e81c7ed8c3a10ec (diff)
downloadscummvm-rg350-3a2ee8ea23247f72628294b48b43716c1b84d8a8.tar.gz
scummvm-rg350-3a2ee8ea23247f72628294b48b43716c1b84d8a8.tar.bz2
scummvm-rg350-3a2ee8ea23247f72628294b48b43716c1b84d8a8.zip
IMAGE: Fixes for setup of Indeo4 decoder
Diffstat (limited to 'image/codecs/indeo/indeo.h')
-rw-r--r--image/codecs/indeo/indeo.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/image/codecs/indeo/indeo.h b/image/codecs/indeo/indeo.h
index 2103ebed68..f49a9b76b4 100644
--- a/image/codecs/indeo/indeo.h
+++ b/image/codecs/indeo/indeo.h
@@ -146,8 +146,6 @@ struct RVMapDesc {
uint8 esc_sym; ///< escape symbol
uint8 runtab[256];
int8 valtab[256];
-
- RVMapDesc();
};
/**
@@ -369,6 +367,11 @@ struct IVI45DecContext {
int got_p_frame;
IVI45DecContext();
+private:
+ /**
+ * Initial Run-value (RLE) tables.
+ */
+ static const RVMapDesc _ff_ivi_rvmap_tabs[9];
};
class IndeoDecoderBase : public Codec {