home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Cruncher / xpkppmq.lha / xpklzcb.doc < prev    next >
Encoding:
Text File  |  1995-09-23  |  967 b   |  38 lines

  1.  
  2. ---------------------------------------
  3.  
  4. xpkLZCB.library
  5.  
  6. Beta version 1.1
  7.  
  8. September 23, 1995
  9.  
  10. Copyright (c) 1995 by Charles Bloom
  11.  
  12. contact : cbloom@mail.utexas.edu
  13.  
  14. ---------------------------------------
  15.  
  16. xpkLZCB is a high compression libary for use with the xpk
  17. utilities.  It attains higher compression than all competing
  18. LZ-based algorithms (such as SHRI,GZIP,ZIP,UC2,RAR,YAC,QUANTUM,HPACK..)
  19. It is slightly faster than SHRI on compression, and slightly
  20. slower on decompression.
  21.  
  22. For maximum compression, you must use a very large XPK chunk size
  23. (i.e. the whole file in one chunk, if possible).
  24.  
  25. Technical information:
  26.  
  27. xpkLZCB is an LZSS (LZ77, aka ZL1) based compressor.  It uses:
  28.  
  29.     a 64k byte window size
  30.     arithmetic encoding
  31.     a minimum match length of 5
  32.     literal-flags are encoded as a match length of 0
  33.         follows by a literal-run-length, followed by
  34.         the literals themselves
  35.     order-1-0 context coding of literals
  36.  
  37. ---------------------------------------
  38.