get the tree of a deflated block with fixed tree, as specified in the deflate specification*/
| 928 | |
| 929 | /*get the tree of a deflated block with fixed tree, as specified in the deflate specification*/ |
| 930 | static void getTreeInflateFixed(HuffmanTree* tree_ll, HuffmanTree* tree_d) |
| 931 | { |
| 932 | /*TODO: check for out of memory errors*/ |
| 933 | generateFixedLitLenTree(tree_ll); |
| 934 | generateFixedDistanceTree(tree_d); |
| 935 | } |
| 936 | |
| 937 | /*get the tree of a deflated block with dynamic tree, the tree itself is also Huffman compressed with a known tree*/ |
| 938 | static unsigned getTreeInflateDynamic(HuffmanTree* tree_ll, HuffmanTree* tree_d, |
no test coverage detected