aboutsummaryrefslogtreecommitdiff
path: root/C/HuffEnc.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--C/HuffEnc.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/C/HuffEnc.c b/C/HuffEnc.c
index f3c2996..3dc1e39 100644
--- a/C/HuffEnc.c
+++ b/C/HuffEnc.c
@@ -1,5 +1,5 @@
1/* HuffEnc.c -- functions for Huffman encoding 1/* HuffEnc.c -- functions for Huffman encoding
22021-02-09 : Igor Pavlov : Public domain */ 22023-03-04 : Igor Pavlov : Public domain */
3 3
4#include "Precomp.h" 4#include "Precomp.h"
5 5
@@ -106,7 +106,7 @@ void Huffman_Generate(const UInt32 *freqs, UInt32 *p, Byte *lens, UInt32 numSymb
106 106
107 p[--e] &= MASK; 107 p[--e] &= MASK;
108 lenCounters[1] = 2; 108 lenCounters[1] = 2;
109 while (e > 0) 109 while (e != 0)
110 { 110 {
111 UInt32 len = (p[p[--e] >> NUM_BITS] >> NUM_BITS) + 1; 111 UInt32 len = (p[p[--e] >> NUM_BITS] >> NUM_BITS) + 1;
112 p[e] = (p[e] & MASK) | (len << NUM_BITS); 112 p[e] = (p[e] & MASK) | (len << NUM_BITS);
@@ -146,3 +146,9 @@ void Huffman_Generate(const UInt32 *freqs, UInt32 *p, Byte *lens, UInt32 numSymb
146 } 146 }
147 } 147 }
148} 148}
149
150#undef kMaxLen
151#undef NUM_BITS
152#undef MASK
153#undef NUM_COUNTERS
154#undef HUFFMAN_SPEED_OPT