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 #include "../../../include/fxcodec/fx_codec.h" | |
8 #include "codec_int.h" | 7 #include "codec_int.h" |
| 8 #include "core/include/fxcodec/fx_codec.h" |
9 | 9 |
10 // Holds per-document JBig2 related data. | 10 // Holds per-document JBig2 related data. |
11 class JBig2DocumentContext : public CFX_DestructObject { | 11 class JBig2DocumentContext : public CFX_DestructObject { |
12 public: | 12 public: |
13 std::list<CJBig2_CachePair>* GetSymbolDictCache() { | 13 std::list<CJBig2_CachePair>* GetSymbolDictCache() { |
14 return &m_SymbolDictCache; | 14 return &m_SymbolDictCache; |
15 } | 15 } |
16 | 16 |
17 ~JBig2DocumentContext() { | 17 ~JBig2DocumentContext() { |
18 for (auto it : m_SymbolDictCache) { | 18 for (auto it : m_SymbolDictCache) { |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 return FXCODEC_STATUS_ERROR; | 116 return FXCODEC_STATUS_ERROR; |
117 } | 117 } |
118 int dword_size = | 118 int dword_size = |
119 m_pJbig2Context->m_height * m_pJbig2Context->m_dest_pitch / 4; | 119 m_pJbig2Context->m_height * m_pJbig2Context->m_dest_pitch / 4; |
120 FX_DWORD* dword_buf = (FX_DWORD*)m_pJbig2Context->m_dest_buf; | 120 FX_DWORD* dword_buf = (FX_DWORD*)m_pJbig2Context->m_dest_buf; |
121 for (int i = 0; i < dword_size; i++) { | 121 for (int i = 0; i < dword_size; i++) { |
122 dword_buf[i] = ~dword_buf[i]; | 122 dword_buf[i] = ~dword_buf[i]; |
123 } | 123 } |
124 return FXCODEC_STATUS_DECODE_FINISH; | 124 return FXCODEC_STATUS_DECODE_FINISH; |
125 } | 125 } |
OLD | NEW |