summaryrefslogtreecommitdiffstats
path: root/lib/README.md
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2018-02-25 08:32:09 (GMT)
committerYann Collet <cyan@fb.com>2018-02-25 08:32:09 (GMT)
commit550b40849f6b77850453a1190b97430b121802bc (patch)
tree5205cc18b67ab826da2017ca90df2957e0f53d16 /lib/README.md
parent7173a631db61ab9535bd0d6e5e00e9dc081d4df3 (diff)
downloadlz4-550b40849f6b77850453a1190b97430b121802bc.zip
lz4-550b40849f6b77850453a1190b97430b121802bc.tar.gz
lz4-550b40849f6b77850453a1190b97430b121802bc.tar.bz2
merge lz4opt.h into lz4hc.c
Having a dedicated file for optimal parser made sense during its creation, it allowed Przemyslaw to work more freely on lz4opt, with less dependency on lz4hc, moreover, the optimal parser was more complex, with its own search functions. Since the optimal was rewritten last year, it's now a lot lighter. It makes more sense now to integrate it directly inside lz4hc.c, making it easier to edit (editors are a bit "lost" inside a `*.h` dependent on its #include position), it also reduces the number of files in the project, which fits pretty well with lz4 objectives. (adding lz4hc requires "just" lz4hc.h and lz4hc.c).
Diffstat (limited to 'lib/README.md')
-rw-r--r--lib/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/README.md b/lib/README.md
index fc5d4e9..7082fe3 100644
--- a/lib/README.md
+++ b/lib/README.md
@@ -15,7 +15,7 @@ They generate and decode data using [LZ4 block format].
For more compression ratio at the cost of compression speed,
the High Compression variant called **lz4hc** is available.
-Add files **`lz4hc.c`**, **`lz4hc.h`** and **`lz4opt.h`**.
+Add files **`lz4hc.c`** and **`lz4hc.h`**.
The variant still depends on regular `lib/lz4.*` source files.