Chromium Code Reviews| Index: core/src/fxcodec/jbig2/JBig2_Context.h |
| diff --git a/core/src/fxcodec/jbig2/JBig2_Context.h b/core/src/fxcodec/jbig2/JBig2_Context.h |
| index 90bd7ddbbef4b4da1665676e0ecde71d318a8619..b43fccbdf8717d85af3616e9745a079dfa535dd1 100644 |
| --- a/core/src/fxcodec/jbig2/JBig2_Context.h |
| +++ b/core/src/fxcodec/jbig2/JBig2_Context.h |
| @@ -13,6 +13,7 @@ |
| #include "JBig2_GeneralDecoder.h" |
| #include "../../../include/fxcodec/fx_codec_def.h" |
| #include "../../../include/fxcrt/fx_basic.h" |
| +typedef std::pair<FX_BYTE*, CJBig2_SymbolDict*> CJBig2_CachePair; |
|
Tom Sepez
2015/01/01 00:43:36
nit: this file should #include <utiltiy> so that t
Bo Xu
2015/01/01 00:53:27
Done.
|
| typedef enum { |
| JBIG2_OUT_OF_PAGE = 0, |
| JBIG2_IN_PAGE, |
| @@ -36,7 +37,7 @@ class CJBig2_Context : public CJBig2_Object |
| public: |
| static CJBig2_Context *CreateContext(CJBig2_Module *pModule, FX_BYTE *pGlobalData, FX_DWORD dwGlobalLength, |
| - FX_BYTE *pData, FX_DWORD dwLength, FX_INT32 nStreamType, IFX_Pause* pPause = NULL); |
| + FX_BYTE *pData, FX_DWORD dwLength, FX_INT32 nStreamType, std::list<CJBig2_CachePair>* pSymbolDictCache, IFX_Pause* pPause = NULL); |
| static void DestroyContext(CJBig2_Context *pContext); |
| @@ -55,7 +56,7 @@ public: |
| private: |
| CJBig2_Context(FX_BYTE *pGlobalData, FX_DWORD dwGlobalLength, |
| - FX_BYTE *pData, FX_DWORD dwLength, FX_INT32 nStreamType, IFX_Pause* pPause); |
| + FX_BYTE *pData, FX_DWORD dwLength, FX_INT32 nStreamType, std::list<CJBig2_CachePair>* pSymbolDictCache, IFX_Pause* pPause); |
| ~CJBig2_Context(); |
| @@ -131,5 +132,6 @@ private: |
| CJBig2_Segment *m_pSegment; |
| FX_DWORD m_dwOffset; |
| JBig2RegionInfo m_ri; |
| + std::list<CJBig2_CachePair>* m_pSymbolDictCache; |
| }; |
| #endif |