1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
Fix build with jpeg-9. Bug #646456
--- a/src/3rdparty/chromium/third_party/pdfium/core/fxcodec/codec/fx_codec_jpeg.cpp
+++ b/src/3rdparty/chromium/third_party/pdfium/core/fxcodec/codec/fx_codec_jpeg.cpp
@@ -74,11 +74,11 @@
}
static boolean _src_fill_buffer(j_decompress_ptr cinfo) {
- return 0;
+ return FALSE;
}
static boolean _src_resync(j_decompress_ptr cinfo, int desired) {
- return 0;
+ return FALSE;
}
static void _error_do_nothing(j_common_ptr cinfo) {}
@@ -147,7 +147,7 @@
jpeg_destroy_decompress(&cinfo);
return false;
}
- int ret = jpeg_read_header(&cinfo, true);
+ int ret = jpeg_read_header(&cinfo, TRUE);
if (ret != JPEG_HEADER_OK) {
jpeg_destroy_decompress(&cinfo);
return false;
@@ -231,7 +231,7 @@
}
cinfo.image_width = m_OrigWidth;
cinfo.image_height = m_OrigHeight;
- int ret = jpeg_read_header(&cinfo, true);
+ int ret = jpeg_read_header(&cinfo, TRUE);
if (ret != JPEG_HEADER_OK)
return false;
@@ -459,7 +459,7 @@
if (setjmp(ctx->m_JumpMark) == -1)
return 1;
- int ret = jpeg_read_header(&ctx->m_Info, true);
+ int ret = jpeg_read_header(&ctx->m_Info, TRUE);
if (ret == JPEG_SUSPENDED)
return 2;
if (ret != JPEG_HEADER_OK)
|