X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;ds=inline;f=src%2Fdecompress.c;h=e97aab5c5c2f72cbf407ccacc65f8a750fb62f01;hb=908adfc82c98c531ca847f183489ccf57e190e16;hp=ebbf33e3e9b481f2c4d0fcbdaa8d4bbc5f07ceb6;hpb=90e593fe7ad5b5c1b68f8c684a3c768ddad3eaa7;p=wimlib diff --git a/src/decompress.c b/src/decompress.c index ebbf33e3..e97aab5c 100644 --- a/src/decompress.c +++ b/src/decompress.c @@ -38,7 +38,8 @@ * (2**table_bits) + 2 * num_syms to guarantee * that there is enough space. * - * @num_syms: Total number of symbols in the Huffman tree. + * @num_syms: Number of symbols in the alphabet, including symbols + * that do not appear in this particular input chunk. * * @table_bits: Any symbols with a code length of table_bits or less can * be decoded in one lookup of the table. 2**table_bits @@ -46,7 +47,7 @@ * any Huffman codes longer than @table_bits. * * @lens: An array of length @num_syms, indexable by symbol, that - * gives the length of the Huffman codeward for that + * gives the length of the Huffman codeword for that * symbol. Because the Huffman tree is in canonical form, * it can be reconstructed by only knowing the length of * the codeword for each symbol. It is assumed, but not