@param dictSize dictionary size
@param extraSizeBefore
number of bytes to keep available in the
history in addition to dictSize
@param extraSizeAfter
number of bytes that must be available
after current position + matchLenMax
@param niceLen if a match of at least niceLen
bytes is found, be happy with it and don't
stop looking for longer matches
@param matchLenMax don't test for matches longer than
matchLenMax bytes
@param mf match finder ID
@param depthLimit match finder search depth limit
getInstance.
Note that the result is undefined if getMatches or
skip hasn't been called yet and no preset dictionary
is being used.
The current byte is at 0, the previous byte
at 1 etc. To get a byte at zero-based distance,
use getByte(dist + 1).
This function is equivalent to getByte(0, backward).
getMatches
LZEncoder
Authors: Lasse Collin
Igor Pavlov
This file has been put into the public domain.
You can do whatever you want with this file.