#include <nitro/mi.h>
void MI_UncompressHuffman( const void* srcp, void* destp );
srcp | Source address of Huffman Compression data |
destp | Destination address for decompression. |
None.
Decompresses Huffman compression data and writes it in 32-bit units to the specified memory. The source address must be aligned to a 4-byte boundary.
Processing only takes place on the CPU, without the use of a system call or DMA.
MI_UncompressLZ*, MI_UncompressRL*, MI_UnfilterDiff*SVC_UncompressHuffmanFromDevice, MI_ReadUncompHuffman, MI_CompressHuffman
03/02/2005 Deleted recommendation to align data size to a multiple of 4 bytes.
05/28/2004 Fixed the Internal Operation description.
02/10/2004 Initial version.