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

Side by Side Diff: core/fpdfapi/fpdf_render/fpdf_render_loadimage.cpp

Issue 1864153002: Move include/fxcodec to fxcodec/include (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Rebase to master Created 4 years, 8 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/fpdfapi/fpdf_render/fpdf_render_image.cpp ('k') | core/fxcodec/codec/codec_int.h » ('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 "core/fpdfapi/fpdf_render/render_int.h" 7 #include "core/fpdfapi/fpdf_render/render_int.h"
8 8
9 #include <algorithm> 9 #include <algorithm>
10 #include <memory> 10 #include <memory>
11 #include <vector> 11 #include <vector>
12 12
13 #include "core/fpdfapi/fpdf_page/cpdf_parseoptions.h" 13 #include "core/fpdfapi/fpdf_page/cpdf_parseoptions.h"
14 #include "core/fpdfapi/fpdf_page/include/cpdf_image.h" 14 #include "core/fpdfapi/fpdf_page/include/cpdf_image.h"
15 #include "core/fpdfapi/fpdf_page/include/cpdf_imageobject.h" 15 #include "core/fpdfapi/fpdf_page/include/cpdf_imageobject.h"
16 #include "core/fpdfapi/fpdf_page/pageint.h" 16 #include "core/fpdfapi/fpdf_page/pageint.h"
17 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h" 17 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h"
18 #include "core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h" 18 #include "core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h"
19 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" 19 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h"
20 #include "core/fpdfapi/fpdf_render/cpdf_pagerendercache.h" 20 #include "core/fpdfapi/fpdf_render/cpdf_pagerendercache.h"
21 #include "core/fpdfapi/include/cpdf_modulemgr.h" 21 #include "core/fpdfapi/include/cpdf_modulemgr.h"
22 #include "core/fxcodec/include/fx_codec.h"
22 #include "core/fxcrt/include/fx_safe_types.h" 23 #include "core/fxcrt/include/fx_safe_types.h"
23 #include "core/fxge/include/fx_ge.h" 24 #include "core/fxge/include/fx_ge.h"
24 #include "core/include/fxcodec/fx_codec.h"
25 25
26 namespace { 26 namespace {
27 27
28 unsigned int GetBits8(const uint8_t* pData, uint64_t bitpos, size_t nbits) { 28 unsigned int GetBits8(const uint8_t* pData, uint64_t bitpos, size_t nbits) {
29 ASSERT(nbits == 1 || nbits == 2 || nbits == 4 || nbits == 8 || nbits == 16); 29 ASSERT(nbits == 1 || nbits == 2 || nbits == 4 || nbits == 8 || nbits == 16);
30 ASSERT((bitpos & (nbits - 1)) == 0); 30 ASSERT((bitpos & (nbits - 1)) == 0);
31 unsigned int byte = pData[bitpos / 8]; 31 unsigned int byte = pData[bitpos / 8];
32 if (nbits == 8) { 32 if (nbits == 8) {
33 return byte; 33 return byte;
34 } else if (nbits == 16) { 34 } else if (nbits == 16) {
(...skipping 1533 matching lines...) Expand 10 before | Expand all | Expand 10 after
1568 IFX_Pause* pPause) { 1568 IFX_Pause* pPause) {
1569 return LoadHandle->Continue(pPause); 1569 return LoadHandle->Continue(pPause);
1570 } 1570 }
1571 1571
1572 CPDF_ImageLoader::~CPDF_ImageLoader() { 1572 CPDF_ImageLoader::~CPDF_ImageLoader() {
1573 if (!m_bCached) { 1573 if (!m_bCached) {
1574 delete m_pBitmap; 1574 delete m_pBitmap;
1575 delete m_pMask; 1575 delete m_pMask;
1576 } 1576 }
1577 } 1577 }
OLDNEW
« no previous file with comments | « core/fpdfapi/fpdf_render/fpdf_render_image.cpp ('k') | core/fxcodec/codec/codec_int.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698