diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 10:21:37 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 10:21:37 +0000 |
commit | 6dd9ce29d362e14f0350f18999f9812232595d57 (patch) | |
tree | 5688a3634ad32fafa4580b15375aee7e5b40ae99 /lzip.h | |
parent | Adding upstream version 1.14~rc1. (diff) | |
download | lziprecover-6dd9ce29d362e14f0350f18999f9812232595d57.tar.xz lziprecover-6dd9ce29d362e14f0350f18999f9812232595d57.zip |
Adding upstream version 1.14~rc2.upstream/1.14_rc2
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to 'lzip.h')
-rw-r--r-- | lzip.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -86,6 +86,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 { |