/* Function for fast encoding of an input fragment, independently from the input history.Thisfunctionusesone-passprocessing:whenwefindabackward match,weimmediatelyemitthecorrespondingcommandandliteralcodesto
the bit stream. */
/* Command and distance prefix codes (each 64 symbols, stored back-to-back) usedforthenextblock.Thecommandprefixcodeisoverasmalleralphabet withthefollowing64symbols: 0-15:insertlengthcode0,copylengthcode0-15,samedistance 16-39:insertlengthcode0,copylengthcode0-23 40-63:insertlengthcode0-23,copylengthcode0 Notethatsymbols16and40representthesamecodeinthefullalphabet,
but we do not use either of them. */
uint8_t cmd_depth[128];
uint16_t cmd_bits[128];
uint32_t cmd_histo[128];
/* The compressed form of the command and distance prefix codes for the next
block. */
uint8_t cmd_code[512];
size_t cmd_code_numbits;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.