a couple performance improvement changes for ldm

This commit is contained in:
Quentin Carbonneaux
2021-01-20 00:54:20 -08:00
parent 7e6729055a
commit 1e65711ca5
4 changed files with 43 additions and 44 deletions
+1 -1
View File
@@ -73,7 +73,7 @@ size_t ZSTD_ldm_blockCompress(rawSeqStore_t* rawSeqStore,
*
* Skip past `srcSize` bytes worth of sequences in `rawSeqStore`.
* Avoids emitting matches less than `minMatch` bytes.
* Must be called for data with is not passed to ZSTD_ldm_blockCompress().
* Must be called for data that is not passed to ZSTD_ldm_blockCompress().
*/
void ZSTD_ldm_skipSequences(rawSeqStore_t* rawSeqStore, size_t srcSize,
U32 const minMatch);