summaryrefslogtreecommitdiff
path: root/core/src/fxcodec/jbig2/JBig2_ArithDecoder.h
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2015-09-03 16:03:42 -0700
committerLei Zhang <thestig@chromium.org>2015-09-03 16:03:42 -0700
commit800bf5ac07305ccf9c9522c8c76f728a4fd99da5 (patch)
tree9adfb205c88e1e074e955d7731850d36594011e1 /core/src/fxcodec/jbig2/JBig2_ArithDecoder.h
parent640c395fa9b76552383ccd0c5f4668ea698089f6 (diff)
downloadpdfium-800bf5ac07305ccf9c9522c8c76f728a4fd99da5.tar.xz
Make a bunch of JBig2 classes independent of CJBig2_Object.
R=tsepez@chromium.org Review URL: https://codereview.chromium.org/1319713003 .
Diffstat (limited to 'core/src/fxcodec/jbig2/JBig2_ArithDecoder.h')
-rw-r--r--core/src/fxcodec/jbig2/JBig2_ArithDecoder.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/core/src/fxcodec/jbig2/JBig2_ArithDecoder.h b/core/src/fxcodec/jbig2/JBig2_ArithDecoder.h
index 0258014927..7acfe9cd36 100644
--- a/core/src/fxcodec/jbig2/JBig2_ArithDecoder.h
+++ b/core/src/fxcodec/jbig2/JBig2_ArithDecoder.h
@@ -9,13 +9,15 @@
#include "JBig2_Define.h"
#include "JBig2_BitStream.h"
#include "JBig2_ArithQe.h"
-typedef struct {
+
+struct JBig2ArithCtx {
unsigned int MPS;
unsigned int I;
-} JBig2ArithCtx;
-class CJBig2_ArithDecoder : public CJBig2_Object {
+};
+
+class CJBig2_ArithDecoder {
public:
- CJBig2_ArithDecoder(CJBig2_BitStream* pStream);
+ explicit CJBig2_ArithDecoder(CJBig2_BitStream* pStream);
~CJBig2_ArithDecoder();
@@ -23,14 +25,15 @@ class CJBig2_ArithDecoder : public CJBig2_Object {
private:
void INITDEC();
-
void BYTEIN();
+
unsigned char B;
unsigned int C;
unsigned int A;
unsigned int CT;
CJBig2_BitStream* m_pStream;
};
+
inline CJBig2_ArithDecoder::CJBig2_ArithDecoder(CJBig2_BitStream* pStream) {
m_pStream = pStream;
INITDEC();