You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
575 B
18 lines
575 B
2 months ago
|
Compression
|
||
|
===========
|
||
|
|
||
|
The library contains a compression routine, called LiZaRd. It is
|
||
|
modified Lempel-Ziv 77 method with slightly worse compression ratio,
|
||
|
but with faster compression and decompression (compression is few times
|
||
|
faster than zlib, decompression is slightly slower than memcpy()).
|
||
|
|
||
|
The data format and inspiration for code comes from the LZO project
|
||
|
(which couldn't be used due to licence problems). They might be
|
||
|
compatible, but no-one tested that.
|
||
|
|
||
|
- <<basic,Basic application>>
|
||
|
- <<safe,Safe decompression>>
|
||
|
- <<adler,Adler-32 checksum>>
|
||
|
|
||
|
!!ucw/lizard.h
|