mirror of
https://github.com/facebook/zstd.git
synced 2025-08-01 09:47:01 +03:00
* change "external matchfinder" to "external sequence producer" * migrate contrib/ to new naming convention * fix contrib build * fix error message * update debug strings * fix def of invalid sequences in zstd.h * nit * update CHANGELOG * fix .gitignore
15 lines
517 B
Markdown
15 lines
517 B
Markdown
externalSequenceProducer
|
|
=====================
|
|
|
|
`externalSequenceProducer` is a test tool for the Block-Level Sequence Producer API.
|
|
It demonstrates how to use the API to perform a simple round-trip test.
|
|
|
|
A sample sequence producer is provided in sequence_producer.c, but the user can swap
|
|
this out with a different one if desired. The sample sequence producer implements
|
|
LZ parsing with a 1KB hashtable. Dictionary-based parsing is not currently supported.
|
|
|
|
Command line :
|
|
```
|
|
externalSequenceProducer filename
|
|
```
|