home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / l / lds_10.zip / COMP / READ.ME < prev   
Text File  |  1992-10-18  |  2KB  |  52 lines

  1.  
  2. CODER.H  This is the header file needed to use CODER.C.
  3.  
  4. CODER.C  This file contains the routines needed to implement
  5.          an arithemtic coder.  
  6.  
  7. BITIO.H  This is the header file needed to use BITIO.C.
  8.  
  9. BITIO.C  This is the module used to do bit-oriented I/O.
  10.  
  11. COMP-1.C    This is the main module for a fixed-context
  12.             compression program.  It is used to drive MODEL-1
  13.             and MODEL-1A.  It doesn't know about escape codes.
  14.  
  15. EXPAND-1.C  This is the main module for a fixed-context
  16.             decompression program.  It is used with MODEL-1
  17.             and MODEL-1A.  Doesn't know about escape codes,
  18.             order (-1) models, or any of that stuff.
  19.  
  20. MODEL.H     This is the header file that is used when working
  21.             with any of the modeling modules.
  22.  
  23. MODEL-1.C   This is the modeling model for a very siple order-0
  24.             fixed context model.  To be used with COMP-1 or
  25.             EXPAND-1.
  26.  
  27. COMP-2.C    This is the main module for a highest-context
  28.             compression program.  It handles escape codes, and
  29.             does compression ratio checking as well.  It is
  30.             used with MODEL-2 and MODEL-2A.
  31.  
  32. EXPAND-2.C  This is the main module for a highest-context
  33.             decompression program.  It understands all of the
  34.             fancy stuff used in MODEL-2 and MODEL-2A.
  35.  
  36. MODEL-2.C   This is the highly optimized source for a
  37.             variable order compression program.  It is
  38.             used with COMP-2 or EXPAND-2.
  39.  
  40. MODEL-1A.C This is an order-1 fixed context modeling unit, that
  41.            can be combined with COMP-1 and EXPAND-1.  Used
  42.            to test compression for higher order models that
  43.            don't use escape codes.
  44.  
  45. MODEL-2A.C This is the source for an order-1 highest-order
  46.            modeling program.  It understands escape codes,
  47.            but has a simple data structure that takes up a
  48.            lot of room.  So it is fast, but takes up lots
  49.            of RAM.  Can't be expanded beyond order-1 in a
  50.            PC due to memory limitations.
  51.  
  52.