| OLD | NEW |
| 1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | 6 |
| 7 #ifndef _JBIG2_HUFFMAN_TABLE_H_ | 7 #ifndef _JBIG2_HUFFMAN_TABLE_H_ |
| 8 #define _JBIG2_HUFFMAN_TABLE_H_ | 8 #define _JBIG2_HUFFMAN_TABLE_H_ |
| 9 #include "JBig2_Module.h" | 9 #include "JBig2_Module.h" |
| 10 #include "JBig2_HuffmanTable_Standard.h" | 10 #include "JBig2_HuffmanTable_Standard.h" |
| 11 #include "JBig2_BitStream.h" | 11 #include "JBig2_BitStream.h" |
| 12 class CJBig2_HuffmanTable : public CJBig2_Object | 12 class CJBig2_HuffmanTable : public CJBig2_Object |
| 13 { | 13 { |
| 14 public: | 14 public: |
| 15 | 15 |
| 16 CJBig2_HuffmanTable(const JBig2TableLine *pTable, int nLines, FX_BOOL bHTOOB
); | 16 CJBig2_HuffmanTable(const JBig2TableLine *pTable, int nLines, bool bHTOOB); |
| 17 | 17 |
| 18 CJBig2_HuffmanTable(CJBig2_BitStream *pStream); | 18 CJBig2_HuffmanTable(CJBig2_BitStream *pStream); |
| 19 | 19 |
| 20 ~CJBig2_HuffmanTable(); | 20 ~CJBig2_HuffmanTable(); |
| 21 | 21 |
| 22 void init(); | 22 void init(); |
| 23 | 23 |
| 24 int parseFromStandardTable(const JBig2TableLine *pTable, int nLines, FX_BOOL
bHTOOB); | 24 int parseFromStandardTable(const JBig2TableLine *pTable, int nLines, bool bH
TOOB); |
| 25 | 25 |
| 26 int parseFromCodedBuffer(CJBig2_BitStream *pStream); | 26 int parseFromCodedBuffer(CJBig2_BitStream *pStream); |
| 27 | 27 |
| 28 FX_BOOL isOK() | 28 bool isOK() |
| 29 { | 29 { |
| 30 return m_bOK; | 30 return m_bOK; |
| 31 } | 31 } |
| 32 private: | 32 private: |
| 33 FX_BOOL HTOOB; | 33 bool HTOOB; |
| 34 int NTEMP; | 34 int NTEMP; |
| 35 int *CODES; | 35 int *CODES; |
| 36 int *PREFLEN; | 36 int *PREFLEN; |
| 37 int *RANGELEN; | 37 int *RANGELEN; |
| 38 int *RANGELOW; | 38 int *RANGELOW; |
| 39 FX_BOOL m_bOK; | 39 bool m_bOK; |
| 40 friend class CJBig2_HuffmanDecoder; | 40 friend class CJBig2_HuffmanDecoder; |
| 41 }; | 41 }; |
| 42 #endif | 42 #endif |
| OLD | NEW |