mirror of
https://github.com/webmproject/libwebp.git
synced 2025-04-16 22:06:48 +02:00
Revert an LZ77 boundary constant.
This is getting back to the old behavior which is actually better for compression and speed with the latest patches. Change-Id: I35884bab02589297c25d6e1e66dc5f13e05f7aa7
This commit is contained in:
parent
8190374c2b
commit
a3611513d2
@ -437,8 +437,7 @@ static int BackwardReferencesLz77(int xsize, int ysize,
|
|||||||
int len = 0;
|
int len = 0;
|
||||||
int j;
|
int j;
|
||||||
HashChainFindCopy(hash_chain, i, &offset, &len);
|
HashChainFindCopy(hash_chain, i, &offset, &len);
|
||||||
// MIN_LENGTH+1 is empirically better than MIN_LENGTH.
|
if (len > MIN_LENGTH) {
|
||||||
if (len > MIN_LENGTH + 1) {
|
|
||||||
const int len_ini = len;
|
const int len_ini = len;
|
||||||
int max_reach = 0;
|
int max_reach = 0;
|
||||||
assert(i + len < pix_count);
|
assert(i + len < pix_count);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user