summaryrefslogtreecommitdiffstats
path: root/lzip.h
diff options
context:
space:
mode:
authorDaniel Baumann <mail@daniel-baumann.ch>2015-11-07 09:56:54 +0000
committerDaniel Baumann <mail@daniel-baumann.ch>2015-11-07 09:56:54 +0000
commit0aff25f0baaa9ebac7ca3711513fcf855fc017ab (patch)
treeddf52de5d8bd7bb8e95f5881942a1ac919e7f4e5 /lzip.h
parentAdding debian version 1.14-2. (diff)
downloadlzip-0aff25f0baaa9ebac7ca3711513fcf855fc017ab.tar.xz
lzip-0aff25f0baaa9ebac7ca3711513fcf855fc017ab.zip
Merging upstream version 1.15~pre1.
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to 'lzip.h')
-rw-r--r--lzip.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/lzip.h b/lzip.h
index 77aa73e..ffa2fb3 100644
--- a/lzip.h
+++ b/lzip.h
@@ -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
{