diff options
Diffstat (limited to 'src/lib/lzmadecode.h')
-rw-r--r-- | src/lib/lzmadecode.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/lzmadecode.h b/src/lib/lzmadecode.h index 95e01fb129..9ed352a564 100644 --- a/src/lib/lzmadecode.h +++ b/src/lib/lzmadecode.h @@ -44,9 +44,11 @@ typedef struct _CLzmaProperties { int pb; } CLzmaProperties; -int LzmaDecodeProperties(CLzmaProperties *propsRes, const unsigned char *propsData, int size); +int LzmaDecodeProperties(CLzmaProperties *propsRes, + const unsigned char *propsData, int size); -#define LzmaGetNumProbs(Properties) (LZMA_BASE_SIZE + (LZMA_LIT_SIZE << ((Properties)->lc + (Properties)->lp))) +#define LzmaGetNumProbs(Properties) (LZMA_BASE_SIZE + (LZMA_LIT_SIZE \ + << ((Properties)->lc + (Properties)->lp))) #define kLzmaNeedInitId (-2) |