diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 09:56:46 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 09:56:46 +0000 |
commit | 55197b06a813dd7f90e70b0af7928c375f31f625 (patch) | |
tree | 8edc055ee8db674f5357e522269233f85fe813db /lzip.h | |
parent | Adding upstream version 1.14. (diff) | |
download | lzip-55197b06a813dd7f90e70b0af7928c375f31f625.tar.xz lzip-55197b06a813dd7f90e70b0af7928c375f31f625.zip |
Adding upstream version 1.15~pre1.upstream/1.15_pre1
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to '')
-rw-r--r-- | lzip.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -85,6 +85,15 @@ struct Bit_model Bit_model() : probability( bit_model_total / 2 ) {} }; +struct Len_model + { + Bit_model choice1; + Bit_model choice2; + Bit_model bm_low[pos_states][len_low_symbols]; + Bit_model bm_mid[pos_states][len_mid_symbols]; + Bit_model bm_high[len_high_symbols]; + }; + class Pretty_print { |