get the tree of a deflated block with fixed tree, as specified in the deflate specification*/
| 945 | |
| 946 | /*get the tree of a deflated block with fixed tree, as specified in the deflate specification*/ |
| 947 | static void getTreeInflateFixed(HuffmanTree* tree_ll, HuffmanTree* tree_d) |
| 948 | { |
| 949 | /*TODO: check for out of memory errors*/ |
| 950 | generateFixedLitLenTree(tree_ll); |
| 951 | generateFixedDistanceTree(tree_d); |
| 952 | } |
| 953 | |
| 954 | /*get the tree of a deflated block with dynamic tree, the tree itself is also Huffman compressed with a known tree*/ |
| 955 | static unsigned getTreeInflateDynamic(HuffmanTree* tree_ll, HuffmanTree* tree_d, |
no test coverage detected