1
0
Fork 0
mirror of https://git.tukaani.org/xz.git synced 2024-04-04 12:36:23 +02:00

Removed a few unused macros from lzma_common.h.

This commit is contained in:
Lasse Collin 2008-01-15 09:54:34 +02:00
parent 19bd7f3cf2
commit 01b4b19f49

View file

@ -57,11 +57,7 @@
#define FULL_DISTANCES (1 << (END_POS_MODEL_INDEX / 2))
#define LIT_POS_STATES_BITS_MAX LZMA_LITERAL_POS_BITS_MAX
#define LIT_CONTEXT_BITS_MAX LZMA_LITERAL_CONTEXT_BITS_MAX
#define POS_STATES_BITS_MAX LZMA_POS_BITS_MAX
#define POS_STATES_MAX (1 << POS_STATES_BITS_MAX)
#define POS_STATES_MAX (1 << LZMA_POS_BITS_MAX)
// Length coder & Length price table encoder
@ -79,7 +75,7 @@
#define LEN_CODER_TOTAL_PROBS (LEN_HIGH_CODER + LEN_HIGH_SYMBOLS)
// Price table size of Len Encoder
#define LEN_PRICES (LEN_SYMBOLS << POS_STATES_BITS_MAX)
#define LEN_PRICES (LEN_SYMBOLS << LZMA_POS_BITS_MAX)
// Special lengths used together with distance == UINT32_MAX
#define LEN_SPECIAL_EOPM MATCH_MIN_LEN