Integrate a new LZ77 looking for matches in the neighborhood of a pixel only.

Change-Id: Ie2bbfee0a8d154b58f4a3068f3f634b7dad4c12d
This commit is contained in:
Vincent Rabaud
2017-06-07 19:06:28 +02:00
parent a1779a017b
commit 355c3d1bc7
4 changed files with 162 additions and 20 deletions

View File

@ -216,6 +216,7 @@ static WEBP_INLINE void VP8LRefsCursorNext(VP8LRefsCursor* const c) {
enum VP8LLZ77Type {
kLZ77Standard = 1,
kLZ77RLE = 2,
kLZ77Box = 4
};
// Evaluates best possible backward references for specified quality.