buildHuffmanTable

fnbool buildHuffmanTable(const(ubyte)[] codeLengths, int numCodes, ref HuffmanTable table) nothrow @safe

Build a Huffman decode table from code lengths.

Parameters

codeLengthsArray of code lengths for each symbol
numCodesNumber of codes
tableOutput Huffman table

Returns

true on success, false on error.