Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(169)

Side by Side Diff: core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.h

Issue 1384663007: Fix regression in JBIG2 decoding from commit ce37d73. (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: grammar school Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | core/src/fxcodec/jbig2/JBig2_SddProc.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 CORE_SRC_FXCODEC_JBIG2_JBIG2_ARITHINTDECODER_H_ 7 #ifndef CORE_SRC_FXCODEC_JBIG2_JBIG2_ARITHINTDECODER_H_
8 #define CORE_SRC_FXCODEC_JBIG2_JBIG2_ARITHINTDECODER_H_ 8 #define CORE_SRC_FXCODEC_JBIG2_JBIG2_ARITHINTDECODER_H_
9 9
10 #include <vector> 10 #include <vector>
11 11
12 #include "../../../include/fxcrt/fx_system.h" 12 #include "../../../include/fxcrt/fx_system.h"
13 #include "JBig2_ArithDecoder.h" 13 #include "JBig2_ArithDecoder.h"
14 14
15 class CJBig2_ArithIntDecoder { 15 class CJBig2_ArithIntDecoder {
16 public: 16 public:
17 CJBig2_ArithIntDecoder(); 17 CJBig2_ArithIntDecoder();
18 ~CJBig2_ArithIntDecoder(); 18 ~CJBig2_ArithIntDecoder();
19 19
20 // Returns true on success, and false when an OOB condition occurs. Many
21 // callers can tolerate OOB and do not check the return value.
20 bool decode(CJBig2_ArithDecoder* pArithDecoder, int* nResult); 22 bool decode(CJBig2_ArithDecoder* pArithDecoder, int* nResult);
21 23
22 private: 24 private:
23 std::vector<JBig2ArithCtx> m_IAx; 25 std::vector<JBig2ArithCtx> m_IAx;
24 }; 26 };
25 27
26 class CJBig2_ArithIaidDecoder { 28 class CJBig2_ArithIaidDecoder {
27 public: 29 public:
28 explicit CJBig2_ArithIaidDecoder(unsigned char SBSYMCODELENA); 30 explicit CJBig2_ArithIaidDecoder(unsigned char SBSYMCODELENA);
29 ~CJBig2_ArithIaidDecoder(); 31 ~CJBig2_ArithIaidDecoder();
30 32
31 void decode(CJBig2_ArithDecoder* pArithDecoder, FX_DWORD* nResult); 33 void decode(CJBig2_ArithDecoder* pArithDecoder, FX_DWORD* nResult);
32 34
33 private: 35 private:
34 std::vector<JBig2ArithCtx> m_IAID; 36 std::vector<JBig2ArithCtx> m_IAID;
35 37
36 const unsigned char SBSYMCODELEN; 38 const unsigned char SBSYMCODELEN;
37 }; 39 };
38 40
39 #endif // CORE_SRC_FXCODEC_JBIG2_JBIG2_ARITHINTDECODER_H_ 41 #endif // CORE_SRC_FXCODEC_JBIG2_JBIG2_ARITHINTDECODER_H_
OLDNEW
« no previous file with comments | « no previous file | core/src/fxcodec/jbig2/JBig2_SddProc.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698