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

Side by Side Diff: core/src/fxcodec/jbig2/JBig2_PddProc.cpp

Issue 1707923002: Expand all paths to be based off pdfium/ directory (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 10 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
OLDNEW
1 // Copyright 2015 PDFium Authors. All rights reserved. 1 // Copyright 2015 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 "JBig2_PddProc.h" 7 #include "core/src/fxcodec/jbig2/JBig2_PddProc.h"
8 8
9 #include <memory> 9 #include <memory>
10 10
11 #include "JBig2_GrdProc.h" 11 #include "core/src/fxcodec/jbig2/JBig2_GrdProc.h"
12 #include "JBig2_Image.h" 12 #include "core/src/fxcodec/jbig2/JBig2_Image.h"
13 #include "JBig2_PatternDict.h" 13 #include "core/src/fxcodec/jbig2/JBig2_PatternDict.h"
14 14
15 CJBig2_PatternDict* CJBig2_PDDProc::decode_Arith( 15 CJBig2_PatternDict* CJBig2_PDDProc::decode_Arith(
16 CJBig2_ArithDecoder* pArithDecoder, 16 CJBig2_ArithDecoder* pArithDecoder,
17 JBig2ArithCtx* gbContext, 17 JBig2ArithCtx* gbContext,
18 IFX_Pause* pPause) { 18 IFX_Pause* pPause) {
19 FX_DWORD GRAY; 19 FX_DWORD GRAY;
20 CJBig2_Image* BHDC = nullptr; 20 CJBig2_Image* BHDC = nullptr;
21 std::unique_ptr<CJBig2_PatternDict> pDict(new CJBig2_PatternDict()); 21 std::unique_ptr<CJBig2_PatternDict> pDict(new CJBig2_PatternDict());
22 pDict->NUMPATS = GRAYMAX + 1; 22 pDict->NUMPATS = GRAYMAX + 1;
23 pDict->HDPATS = FX_Alloc(CJBig2_Image*, pDict->NUMPATS); 23 pDict->HDPATS = FX_Alloc(CJBig2_Image*, pDict->NUMPATS);
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 return nullptr; 78 return nullptr;
79 79
80 GRAY = 0; 80 GRAY = 0;
81 while (GRAY <= GRAYMAX) { 81 while (GRAY <= GRAYMAX) {
82 pDict->HDPATS[GRAY] = BHDC->subImage(HDPW * GRAY, 0, HDPW, HDPH); 82 pDict->HDPATS[GRAY] = BHDC->subImage(HDPW * GRAY, 0, HDPW, HDPH);
83 GRAY = GRAY + 1; 83 GRAY = GRAY + 1;
84 } 84 }
85 delete BHDC; 85 delete BHDC;
86 return pDict.release(); 86 return pDict.release();
87 } 87 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698