Chromium Code Reviews| 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: |