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

Unified Diff: core/src/fxcodec/jbig2/JBig2_GeneralDecoder.h

Issue 1321883002: Replace signed char with int8_t. Fix Linux ARM build after r7830e9e. (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | core/src/fxcodec/jbig2/JBig2_GeneralDecoder.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/src/fxcodec/jbig2/JBig2_GeneralDecoder.h
diff --git a/core/src/fxcodec/jbig2/JBig2_GeneralDecoder.h b/core/src/fxcodec/jbig2/JBig2_GeneralDecoder.h
index 1b933d7443d4b9e179c1e6861e51534a7f3369e3..0b087a0ec121b6c09883cab8d055c7afeafb27d1 100644
--- a/core/src/fxcodec/jbig2/JBig2_GeneralDecoder.h
+++ b/core/src/fxcodec/jbig2/JBig2_GeneralDecoder.h
@@ -59,7 +59,7 @@ class CJBig2_GRDProc : public CJBig2_Object {
FX_BOOL TPGDON;
FX_BOOL USESKIP;
CJBig2_Image* SKIP;
- char GBAT[8];
Lei Zhang 2015/08/29 06:42:47 Whoops, doesn't work for the Linux ARM bot.
+ int8_t GBAT[8];
private:
FXCODEC_STATUS decode_Arith(IFX_Pause* pPause);
@@ -183,7 +183,7 @@ class CJBig2_GRRDProc : public CJBig2_Object {
int32_t GRREFERENCEDX;
int32_t GRREFERENCEDY;
FX_BOOL TPGRON;
- signed char GRAT[4];
+ int8_t GRAT[4];
};
typedef struct {
@@ -220,11 +220,11 @@ class CJBig2_TRDProc : public CJBig2_Object {
FX_BOOL TRANSPOSED;
JBig2Corner REFCORNER;
- signed char SBDSOFFSET;
+ int8_t SBDSOFFSET;
CJBig2_HuffmanTable *SBHUFFFS, *SBHUFFDS, *SBHUFFDT, *SBHUFFRDW, *SBHUFFRDH,
*SBHUFFRDX, *SBHUFFRDY, *SBHUFFRSIZE;
FX_BOOL SBRTEMPLATE;
- signed char SBRAT[4];
+ int8_t SBRAT[4];
};
class CJBig2_SDDProc : public CJBig2_Object {
public:
@@ -246,9 +246,9 @@ class CJBig2_SDDProc : public CJBig2_Object {
FX_DWORD SDNUMEXSYMS;
CJBig2_HuffmanTable *SDHUFFDH, *SDHUFFDW, *SDHUFFBMSIZE, *SDHUFFAGGINST;
uint8_t SDTEMPLATE;
- signed char SDAT[8];
+ int8_t SDAT[8];
FX_BOOL SDRTEMPLATE;
- signed char SDRAT[4];
+ int8_t SDRAT[4];
};
class CJBig2_HTRDProc : public CJBig2_Object {
public:
« no previous file with comments | « no previous file | core/src/fxcodec/jbig2/JBig2_GeneralDecoder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698