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

Side by Side Diff: core/src/fxcodec/codec/fx_codec_jbig.cpp

Issue 1773733002: Review and cleanup lint warnings. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 9 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 | « core/src/fxcodec/codec/codec_int.h ('k') | core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.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 #include <list>
8
7 #include "core/include/fxcodec/fx_codec.h" 9 #include "core/include/fxcodec/fx_codec.h"
8 #include "core/src/fxcodec/codec/codec_int.h" 10 #include "core/src/fxcodec/codec/codec_int.h"
9 11
10 // Holds per-document JBig2 related data. 12 // Holds per-document JBig2 related data.
11 class JBig2DocumentContext : public CFX_DestructObject { 13 class JBig2DocumentContext : public CFX_DestructObject {
12 public: 14 public:
13 std::list<CJBig2_CachePair>* GetSymbolDictCache() { 15 std::list<CJBig2_CachePair>* GetSymbolDictCache() {
14 return &m_SymbolDictCache; 16 return &m_SymbolDictCache;
15 } 17 }
16 18
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 return FXCODEC_STATUS_ERROR; 118 return FXCODEC_STATUS_ERROR;
117 } 119 }
118 int dword_size = 120 int dword_size =
119 m_pJbig2Context->m_height * m_pJbig2Context->m_dest_pitch / 4; 121 m_pJbig2Context->m_height * m_pJbig2Context->m_dest_pitch / 4;
120 FX_DWORD* dword_buf = (FX_DWORD*)m_pJbig2Context->m_dest_buf; 122 FX_DWORD* dword_buf = (FX_DWORD*)m_pJbig2Context->m_dest_buf;
121 for (int i = 0; i < dword_size; i++) { 123 for (int i = 0; i < dword_size; i++) {
122 dword_buf[i] = ~dword_buf[i]; 124 dword_buf[i] = ~dword_buf[i];
123 } 125 }
124 return FXCODEC_STATUS_DECODE_FINISH; 126 return FXCODEC_STATUS_DECODE_FINISH;
125 } 127 }
OLDNEW
« no previous file with comments | « core/src/fxcodec/codec/codec_int.h ('k') | core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698