huffman.h
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:3k
源码类别:

其他游戏

开发平台:

Visual C++

  1. #ifndef HUFFMAN_H
  2. #define HUFFMAN_H
  3. #define PTR_NOT(ptr) (struct huffman_tree_item *)(~(unsigned long)(ptr))
  4. #define PTR_PTR(ptr) ((struct huffman_tree_item *)(ptr))
  5. #define PTR_INT(ptr) (long)(ptr)
  6. #define INSERT_ITEM 1
  7. #define SWITCH_ITEMS 2 /* Switch the item1 and item2 */
  8. /*
  9.  *  Input stream for Huffmann decompression
  10.  */
  11. struct huffman_input_stream {
  12. unsigned char *in_buf; /* 00 - Input data */
  13. unsigned long bit_buf; /* 04 - Input bit buffer */
  14. unsigned int bits; /* 08 - Number of bits remaining in 'byte' */
  15. };
  16. /*
  17.  *  Huffmann tree item.
  18.  */
  19. struct huffman_tree_item {
  20. struct huffman_tree_item *next; /* 00 - Pointer to next huffman_tree_item */
  21. struct huffman_tree_item *prev; /* 04 - Pointer to prev huffman_tree_item (< 0 if none) */
  22. unsigned long dcmp_byte; /* 08 - Index of this item in item pointer array, decompressed byte value */
  23. unsigned long byte_value; /* 0C - Some byte value */
  24. struct huffman_tree_item *parent; /* 10 - Pointer to parent huffman_tree_item (NULL if none) */
  25. struct huffman_tree_item *child; /* 14 - Pointer to child huffman_tree_item */
  26. };
  27. /*
  28.  *  Structure used for quick decompress. The 'bits' contains
  29.  *  number of bits and dcmp_byte contains result decompressed byte
  30.  *  value. After each walk through Huffman tree are filled all entries
  31.  *  which are multiplies of number of bits loaded from input stream.
  32.  *  These entries contain number of bits and result value. At the next
  33.  *  7 bits is tested this structure first. If corresponding entry found,
  34.  *  decompression routine will not walk through Huffman tree and
  35.  *  directly stores output byte to output stream.
  36.  */
  37. struct huffman_decompress {
  38. unsigned long offs00; /* 00 - 1 if resolved */
  39. unsigned long bits; /* 04 - Bit count */
  40. union {
  41. unsigned long dcmp_byte; /* 08 - Byte value for decompress (if bitCount <= 7) */
  42. struct huffman_tree_item *p_item; /* 08 - THTreeItem (if number of bits is greater than 7 */
  43. };
  44. };
  45. /*
  46.  *  Structure for Huffman tree.
  47.  */
  48. struct huffman_tree {
  49. unsigned long cmp0; /* 0000 - 1 if compression type 0 */
  50. unsigned long offs0004; /* 0004 - Some flag */
  51. struct huffman_tree_item items0008[0x203]; /* 0008 - huffman tree items */
  52. /* Sometimes used as huffman tree item */
  53. struct huffman_tree_item *item3050; /* 3050 - Always NULL (?) */
  54. struct huffman_tree_item *item3054; /* 3054 - Pointer to huffman_tree_item */
  55. struct huffman_tree_item *item3058; /* 3058 - Pointer to huffman_tree_item (< 0 if invalid) */
  56. /* Sometimes used as huffman tree item */
  57. struct huffman_tree_item *item305C; /* 305C - Usually NULL */
  58. struct huffman_tree_item *first; /* 3060 - Pointer to top (first) Huffman tree item */
  59. struct huffman_tree_item *last; /* 3064 - Pointer to bottom (last) Huffman tree item (< 0 if invalid) */
  60. unsigned long items; /* 3068 - Number of used huffman tree items */
  61. struct huffman_tree_item *items306C[0x102]; /* 306C - huffman_tree_item pointer array */
  62. struct huffman_decompress qd3474[0x80]; /* 3474 - Array for quick decompression */
  63. unsigned char table1502A630[1]; /* Some table to make struct size flexible */
  64. };
  65. extern int libmpq_huff_init_tree(struct huffman_tree *ht, struct huffman_tree_item *hi, unsigned int cmp);
  66. #endif /* _HUFFMAN_H */