summaryrefslogtreecommitdiffstats
path: root/encoder.h
diff options
context:
space:
mode:
authorDaniel Baumann <mail@daniel-baumann.ch>2016-05-29 17:17:06 +0000
committerDaniel Baumann <mail@daniel-baumann.ch>2016-05-29 17:17:06 +0000
commitb16de3164ab0d9f55adc5575b46f96c7e92f26f6 (patch)
tree1fce37f4d8499fbf261ad6fb9bb58f3547e9d01f /encoder.h
parentAdding upstream version 1.7. (diff)
downloadclzip-b16de3164ab0d9f55adc5575b46f96c7e92f26f6.tar.xz
clzip-b16de3164ab0d9f55adc5575b46f96c7e92f26f6.zip
Adding upstream version 1.8.upstream/1.8
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to 'encoder.h')
-rw-r--r--encoder.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/encoder.h b/encoder.h
index a8793e2..99670b1 100644
--- a/encoder.h
+++ b/encoder.h
@@ -1,5 +1,5 @@
/* Clzip - LZMA lossless data compressor
- Copyright (C) 2010-2015 Antonio Diaz Diaz.
+ Copyright (C) 2010-2016 Antonio Diaz Diaz.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -306,6 +306,8 @@ static inline bool LZe_init( struct LZ_encoder * const e,
Lp_init( &e->rep_len_prices, &e->eb.rep_len_model, e->match_len_limit );
e->pending_num_pairs = 0;
e->num_dis_slots = 2 * real_bits( e->eb.mb.dictionary_size - 1 );
+ e->trials[1].prev_index = 0;
+ e->trials[1].prev_index2 = single_step_trial;
return true;
}