diff options
author | Juan J. Martinez <jjm@usebox.net> | 2022-09-06 07:41:28 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2022-09-06 07:41:28 +0100 |
commit | 4fdbe71797efad633d279d9c1450d99bcdae2312 (patch) | |
tree | 7a742bc3b776ad28df2fdf22679bffd55242c6a4 /tools/apultra/src/matchfinder.h | |
parent | 30bf0f51335e87812ffeb54e9437f0b6a1514d67 (diff) | |
download | ubox-msx-lib-4fdbe71797efad633d279d9c1450d99bcdae2312.tar.gz ubox-msx-lib-4fdbe71797efad633d279d9c1450d99bcdae2312.zip |
Updated apultra to 1.4.7
Diffstat (limited to 'tools/apultra/src/matchfinder.h')
-rw-r--r-- | tools/apultra/src/matchfinder.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/tools/apultra/src/matchfinder.h b/tools/apultra/src/matchfinder.h index 7d68eaf..7fba5ce 100644 --- a/tools/apultra/src/matchfinder.h +++ b/tools/apultra/src/matchfinder.h @@ -53,21 +53,6 @@ typedef struct _apultra_compressor apultra_compressor; int apultra_build_suffix_array(apultra_compressor *pCompressor, const unsigned char *pInWindow, const int nInWindowSize);
/**
- * Find matches at the specified offset in the input window
- *
- * @param pCompressor compression context
- * @param nOffset offset to find matches at, in the input window
- * @param pMatches pointer to returned matches
- * @param pMatchDepth pointer to returned match depths
- * @param pMatch1 pointer to 1-byte length, 4 bit offset match
- * @param nMaxMatches maximum number of matches to return (0 for none)
- * @param nBlockFlags bit 0: 1 for first block, 0 otherwise; bit 1: 1 for last block, 0 otherwise
- *
- * @return number of matches
- */
-int apultra_find_matches_at(apultra_compressor *pCompressor, const int nOffset, apultra_match *pMatches, unsigned short *pMatchDepth, unsigned char *pMatch1, const int nMaxMatches, const int nBlockFlags);
-
-/**
* Skip previously compressed bytes
*
* @param pCompressor compression context
|