| Index: core/src/fxcodec/jbig2/JBig2_Segment.h
|
| diff --git a/core/src/fxcodec/jbig2/JBig2_Segment.h b/core/src/fxcodec/jbig2/JBig2_Segment.h
|
| index 5c1c585939ef320fe56c9335bcdfe9505e2b9c9e..93bea0128b6c3f61beafdc407cdf3ae1f296fb24 100644
|
| --- a/core/src/fxcodec/jbig2/JBig2_Segment.h
|
| +++ b/core/src/fxcodec/jbig2/JBig2_Segment.h
|
| @@ -6,11 +6,12 @@
|
|
|
| #ifndef _JBIG2_SEGMENT_H_
|
| #define _JBIG2_SEGMENT_H_
|
| +
|
| #include "JBig2_Define.h"
|
| -#include "JBig2_SymbolDict.h"
|
| -#include "JBig2_PatternDict.h"
|
| -#include "JBig2_Module.h"
|
| #include "JBig2_HuffmanTable.h"
|
| +#include "JBig2_PatternDict.h"
|
| +#include "JBig2_SymbolDict.h"
|
| +
|
| #define JBIG2_GET_INT32(buf) \
|
| (((buf)[0] << 24) | ((buf)[1] << 16) | ((buf)[2] << 8) | (buf)[3])
|
| #define JBIG2_GET_INT16(buf) (((buf)[0] << 8) | (buf)[1])
|
|
|