| Index: core/src/fxcodec/jbig2/JBig2_HuffmanTable.h
|
| diff --git a/core/src/fxcodec/jbig2/JBig2_HuffmanTable.h b/core/src/fxcodec/jbig2/JBig2_HuffmanTable.h
|
| index d6bc3d1c4ba531fc0e46c59f14afd225b04902f5..d68ced2fca15fdb1b61171cee8df75a164036f8b 100644
|
| --- a/core/src/fxcodec/jbig2/JBig2_HuffmanTable.h
|
| +++ b/core/src/fxcodec/jbig2/JBig2_HuffmanTable.h
|
| @@ -13,7 +13,7 @@ class CJBig2_HuffmanTable : public CJBig2_Object
|
| {
|
| public:
|
|
|
| - CJBig2_HuffmanTable(const JBig2TableLine *pTable, int nLines, bool bHTOOB);
|
| + CJBig2_HuffmanTable(const JBig2TableLine *pTable, int nLines, FX_BOOL bHTOOB);
|
|
|
| CJBig2_HuffmanTable(CJBig2_BitStream *pStream);
|
|
|
| @@ -21,22 +21,22 @@ public:
|
|
|
| void init();
|
|
|
| - int parseFromStandardTable(const JBig2TableLine *pTable, int nLines, bool bHTOOB);
|
| + int parseFromStandardTable(const JBig2TableLine *pTable, int nLines, FX_BOOL bHTOOB);
|
|
|
| int parseFromCodedBuffer(CJBig2_BitStream *pStream);
|
|
|
| - bool isOK()
|
| + FX_BOOL isOK()
|
| {
|
| return m_bOK;
|
| }
|
| private:
|
| - bool HTOOB;
|
| + FX_BOOL HTOOB;
|
| int NTEMP;
|
| int *CODES;
|
| int *PREFLEN;
|
| int *RANGELEN;
|
| int *RANGELOW;
|
| - bool m_bOK;
|
| + FX_BOOL m_bOK;
|
| friend class CJBig2_HuffmanDecoder;
|
| };
|
| #endif
|
|
|