diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 14:03:45 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 14:03:45 +0000 |
commit | 8e588bc047fbb5af60a8eb44f5e5715f035888fc (patch) | |
tree | cd40dee12f5e790ea1540b9151e2354b14c092ba /encoder.c | |
parent | Adding upstream version 1.6~pre3. (diff) | |
download | lzlib-8e588bc047fbb5af60a8eb44f5e5715f035888fc.tar.xz lzlib-8e588bc047fbb5af60a8eb44f5e5715f035888fc.zip |
Adding upstream version 1.6~pre4.upstream/1.6_pre4
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to 'encoder.c')
-rw-r--r-- | encoder.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -684,7 +684,7 @@ static bool LZe_encode_member( struct LZ_encoder * const e ) const bool best = ( e->matchfinder->match_len_limit > 12 ); const int dis_price_count = best ? 1 : 512; const int align_price_count = best ? 1 : dis_align_size; - const int price_count = ( e->matchfinder->match_len_limit > 36 ) ? 1024 : 4096; + const int price_count = ( e->matchfinder->match_len_limit > 36 ) ? 1013 : 4093; int ahead, i; State * const state = &e->state; |