get the tree of a deflated block with fixed tree, as specified in the deflate specification*/
| 973 | |
| 974 | /*get the tree of a deflated block with fixed tree, as specified in the deflate specification*/ |
| 975 | static void getTreeInflateFixed(HuffmanTree* tree_ll, HuffmanTree* tree_d) |
| 976 | { |
| 977 | /*TODO: check for out of memory errors*/ |
| 978 | generateFixedLitLenTree(tree_ll); |
| 979 | generateFixedDistanceTree(tree_d); |
| 980 | } |
| 981 | |
| 982 | /*get the tree of a deflated block with dynamic tree, the tree itself is also Huffman compressed with a known tree*/ |
| 983 | static unsigned getTreeInflateDynamic(HuffmanTree* tree_ll, HuffmanTree* tree_d, |
no test coverage detected