| 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_CONTEXT_H_ | 7 #ifndef _JBIG2_CONTEXT_H_ |
| 8 #define _JBIG2_CONTEXT_H_ | 8 #define _JBIG2_CONTEXT_H_ |
| 9 | 9 |
| 10 #include <list> | 10 #include <list> |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 CJBig2_BitStream *m_pStream; | 116 CJBig2_BitStream *m_pStream; |
| 117 | 117 |
| 118 int32_t m_nState; | 118 int32_t m_nState; |
| 119 | 119 |
| 120 CJBig2_List<CJBig2_Segment> *m_pSegmentList; | 120 CJBig2_List<CJBig2_Segment> *m_pSegmentList; |
| 121 | 121 |
| 122 CJBig2_List<JBig2PageInfo> *m_pPageInfoList; | 122 CJBig2_List<JBig2PageInfo> *m_pPageInfoList; |
| 123 | 123 |
| 124 CJBig2_Image *m_pPage; | 124 CJBig2_Image *m_pPage; |
| 125 | 125 |
| 126 FX_BOOL m_bBufSpecified; | 126 bool m_bBufSpecified; |
| 127 | 127 |
| 128 int32_t m_nSegmentDecoded; | 128 int32_t m_nSegmentDecoded; |
| 129 IFX_Pause* m_pPause; | 129 IFX_Pause* m_pPause; |
| 130 int32_t m_PauseStep; | 130 int32_t m_PauseStep; |
| 131 FXCODEC_STATUS m_ProcessiveStatus; | 131 FXCODEC_STATUS m_ProcessiveStatus; |
| 132 FX_BOOL» m_bFirstPage; | 132 bool» m_bFirstPage; |
| 133 CJBig2_ArithDecoder *m_pArithDecoder; | 133 CJBig2_ArithDecoder *m_pArithDecoder; |
| 134 CJBig2_GRDProc *m_pGRD; | 134 CJBig2_GRDProc *m_pGRD; |
| 135 JBig2ArithCtx *m_gbContext; | 135 JBig2ArithCtx *m_gbContext; |
| 136 CJBig2_Segment *m_pSegment; | 136 CJBig2_Segment *m_pSegment; |
| 137 FX_DWORD m_dwOffset; | 137 FX_DWORD m_dwOffset; |
| 138 JBig2RegionInfo m_ri; | 138 JBig2RegionInfo m_ri; |
| 139 std::list<CJBig2_CachePair>* m_pSymbolDictCache; | 139 std::list<CJBig2_CachePair>* m_pSymbolDictCache; |
| 140 }; | 140 }; |
| 141 #endif | 141 #endif |
| OLD | NEW |