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

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

Issue 1707923002: Expand all paths to be based off pdfium/ directory (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Sort headers 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 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 <setjmp.h> 7 #include <setjmp.h>
8 8
9 #include "codec_int.h"
10 #include "core/include/fxcodec/fx_codec.h" 9 #include "core/include/fxcodec/fx_codec.h"
11 #include "core/include/fxcrt/fx_safe_types.h" 10 #include "core/include/fxcrt/fx_safe_types.h"
12 #include "core/include/fxge/fx_dib.h" 11 #include "core/include/fxge/fx_dib.h"
12 #include "core/src/fxcodec/codec/codec_int.h"
13 13
14 extern "C" { 14 extern "C" {
15 #undef FAR 15 #undef FAR
16 #if defined(USE_SYSTEM_LIBJPEG) 16 #if defined(USE_SYSTEM_LIBJPEG)
17 #include <jpeglib.h> 17 #include <jpeglib.h>
18 #elif defined(USE_LIBJPEG_TURBO) 18 #elif defined(USE_LIBJPEG_TURBO)
19 #include "third_party/libjpeg_turbo/jpeglib.h" 19 #include "third_party/libjpeg_turbo/jpeglib.h"
20 #else 20 #else
21 #include "third_party/libjpeg/jpeglib.h" 21 #include "third_party/libjpeg/jpeglib.h"
22 #endif 22 #endif
(...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after
683 uint8_t** avail_buf_ptr) { 683 uint8_t** avail_buf_ptr) {
684 if (avail_buf_ptr) { 684 if (avail_buf_ptr) {
685 *avail_buf_ptr = NULL; 685 *avail_buf_ptr = NULL;
686 if (((FXJPEG_Context*)pContext)->m_SrcMgr.bytes_in_buffer > 0) { 686 if (((FXJPEG_Context*)pContext)->m_SrcMgr.bytes_in_buffer > 0) {
687 *avail_buf_ptr = 687 *avail_buf_ptr =
688 (uint8_t*)((FXJPEG_Context*)pContext)->m_SrcMgr.next_input_byte; 688 (uint8_t*)((FXJPEG_Context*)pContext)->m_SrcMgr.next_input_byte;
689 } 689 }
690 } 690 }
691 return (FX_DWORD)((FXJPEG_Context*)pContext)->m_SrcMgr.bytes_in_buffer; 691 return (FX_DWORD)((FXJPEG_Context*)pContext)->m_SrcMgr.bytes_in_buffer;
692 } 692 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698