Mercurial > 510Connectbot
comparison src/com/jcraft/jzlib/StaticTree.java @ 357:46c2115ae1c8
update jzlib to a21be20213d66eff15904d925e9b721956a01ef7
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Fri, 01 Aug 2014 13:34:58 -0700 |
parents | 0ce5cc452d02 |
children |
comparison
equal
deleted
inserted
replaced
356:5e91b559b5fe | 357:46c2115ae1c8 |
---|---|
6 modification, are permitted provided that the following conditions are met: | 6 modification, are permitted provided that the following conditions are met: |
7 | 7 |
8 1. Redistributions of source code must retain the above copyright notice, | 8 1. Redistributions of source code must retain the above copyright notice, |
9 this list of conditions and the following disclaimer. | 9 this list of conditions and the following disclaimer. |
10 | 10 |
11 2. Redistributions in binary form must reproduce the above copyright | 11 2. Redistributions in binary form must reproduce the above copyright |
12 notice, this list of conditions and the following disclaimer in | 12 notice, this list of conditions and the following disclaimer in |
13 the documentation and/or other materials provided with the distribution. | 13 the documentation and/or other materials provided with the distribution. |
14 | 14 |
15 3. The names of the authors may not be used to endorse or promote products | 15 3. The names of the authors may not be used to endorse or promote products |
16 derived from this software without specific prior written permission. | 16 derived from this software without specific prior written permission. |
17 | 17 |
32 * and contributors of zlib. | 32 * and contributors of zlib. |
33 */ | 33 */ |
34 | 34 |
35 package com.jcraft.jzlib; | 35 package com.jcraft.jzlib; |
36 | 36 |
37 final class StaticTree { | 37 final class StaticTree{ |
38 static final private int MAX_BITS = 15; | 38 static final private int MAX_BITS=15; |
39 | 39 |
40 static final private int BL_CODES = 19; | 40 static final private int BL_CODES=19; |
41 static final private int D_CODES = 30; | 41 static final private int D_CODES=30; |
42 static final private int LITERALS = 256; | 42 static final private int LITERALS=256; |
43 static final private int LENGTH_CODES = 29; | 43 static final private int LENGTH_CODES=29; |
44 static final private int L_CODES = (LITERALS + 1 + LENGTH_CODES); | 44 static final private int L_CODES=(LITERALS+1+LENGTH_CODES); |
45 | 45 |
46 // Bit length codes must not exceed MAX_BL_BITS bits | 46 // Bit length codes must not exceed MAX_BL_BITS bits |
47 static final int MAX_BL_BITS = 7; | 47 static final int MAX_BL_BITS=7; |
48 | 48 |
49 static final short[] static_ltree = { | 49 static final short[] static_ltree = { |
50 12, 8, 140, 8, 76, 8, 204, 8, 44, 8, | 50 12, 8, 140, 8, 76, 8, 204, 8, 44, 8, |
51 172, 8, 108, 8, 236, 8, 28, 8, 156, 8, | 51 172, 8, 108, 8, 236, 8, 28, 8, 156, 8, |
52 92, 8, 220, 8, 60, 8, 188, 8, 124, 8, | 52 92, 8, 220, 8, 60, 8, 188, 8, 124, 8, |
53 252, 8, 2, 8, 130, 8, 66, 8, 194, 8, | 53 252, 8, 2, 8, 130, 8, 66, 8, 194, 8, |
54 34, 8, 162, 8, 98, 8, 226, 8, 18, 8, | 54 34, 8, 162, 8, 98, 8, 226, 8, 18, 8, |
55 146, 8, 82, 8, 210, 8, 50, 8, 178, 8, | 55 146, 8, 82, 8, 210, 8, 50, 8, 178, 8, |
56 114, 8, 242, 8, 10, 8, 138, 8, 74, 8, | 56 114, 8, 242, 8, 10, 8, 138, 8, 74, 8, |
57 202, 8, 42, 8, 170, 8, 106, 8, 234, 8, | 57 202, 8, 42, 8, 170, 8, 106, 8, 234, 8, |
58 26, 8, 154, 8, 90, 8, 218, 8, 58, 8, | 58 26, 8, 154, 8, 90, 8, 218, 8, 58, 8, |
59 186, 8, 122, 8, 250, 8, 6, 8, 134, 8, | 59 186, 8, 122, 8, 250, 8, 6, 8, 134, 8, |
60 70, 8, 198, 8, 38, 8, 166, 8, 102, 8, | 60 70, 8, 198, 8, 38, 8, 166, 8, 102, 8, |
61 230, 8, 22, 8, 150, 8, 86, 8, 214, 8, | 61 230, 8, 22, 8, 150, 8, 86, 8, 214, 8, |
62 54, 8, 182, 8, 118, 8, 246, 8, 14, 8, | 62 54, 8, 182, 8, 118, 8, 246, 8, 14, 8, |
63 142, 8, 78, 8, 206, 8, 46, 8, 174, 8, | 63 142, 8, 78, 8, 206, 8, 46, 8, 174, 8, |
64 110, 8, 238, 8, 30, 8, 158, 8, 94, 8, | 64 110, 8, 238, 8, 30, 8, 158, 8, 94, 8, |
65 222, 8, 62, 8, 190, 8, 126, 8, 254, 8, | 65 222, 8, 62, 8, 190, 8, 126, 8, 254, 8, |
66 1, 8, 129, 8, 65, 8, 193, 8, 33, 8, | 66 1, 8, 129, 8, 65, 8, 193, 8, 33, 8, |
67 161, 8, 97, 8, 225, 8, 17, 8, 145, 8, | 67 161, 8, 97, 8, 225, 8, 17, 8, 145, 8, |
68 81, 8, 209, 8, 49, 8, 177, 8, 113, 8, | 68 81, 8, 209, 8, 49, 8, 177, 8, 113, 8, |
69 241, 8, 9, 8, 137, 8, 73, 8, 201, 8, | 69 241, 8, 9, 8, 137, 8, 73, 8, 201, 8, |
70 41, 8, 169, 8, 105, 8, 233, 8, 25, 8, | 70 41, 8, 169, 8, 105, 8, 233, 8, 25, 8, |
71 153, 8, 89, 8, 217, 8, 57, 8, 185, 8, | 71 153, 8, 89, 8, 217, 8, 57, 8, 185, 8, |
72 121, 8, 249, 8, 5, 8, 133, 8, 69, 8, | 72 121, 8, 249, 8, 5, 8, 133, 8, 69, 8, |
73 197, 8, 37, 8, 165, 8, 101, 8, 229, 8, | 73 197, 8, 37, 8, 165, 8, 101, 8, 229, 8, |
74 21, 8, 149, 8, 85, 8, 213, 8, 53, 8, | 74 21, 8, 149, 8, 85, 8, 213, 8, 53, 8, |
75 181, 8, 117, 8, 245, 8, 13, 8, 141, 8, | 75 181, 8, 117, 8, 245, 8, 13, 8, 141, 8, |
76 77, 8, 205, 8, 45, 8, 173, 8, 109, 8, | 76 77, 8, 205, 8, 45, 8, 173, 8, 109, 8, |
77 237, 8, 29, 8, 157, 8, 93, 8, 221, 8, | 77 237, 8, 29, 8, 157, 8, 93, 8, 221, 8, |
78 61, 8, 189, 8, 125, 8, 253, 8, 19, 9, | 78 61, 8, 189, 8, 125, 8, 253, 8, 19, 9, |
79 275, 9, 147, 9, 403, 9, 83, 9, 339, 9, | 79 275, 9, 147, 9, 403, 9, 83, 9, 339, 9, |
80 211, 9, 467, 9, 51, 9, 307, 9, 179, 9, | 80 211, 9, 467, 9, 51, 9, 307, 9, 179, 9, |
81 435, 9, 115, 9, 371, 9, 243, 9, 499, 9, | 81 435, 9, 115, 9, 371, 9, 243, 9, 499, 9, |
82 11, 9, 267, 9, 139, 9, 395, 9, 75, 9, | 82 11, 9, 267, 9, 139, 9, 395, 9, 75, 9, |
83 331, 9, 203, 9, 459, 9, 43, 9, 299, 9, | 83 331, 9, 203, 9, 459, 9, 43, 9, 299, 9, |
84 171, 9, 427, 9, 107, 9, 363, 9, 235, 9, | 84 171, 9, 427, 9, 107, 9, 363, 9, 235, 9, |
85 491, 9, 27, 9, 283, 9, 155, 9, 411, 9, | 85 491, 9, 27, 9, 283, 9, 155, 9, 411, 9, |
86 91, 9, 347, 9, 219, 9, 475, 9, 59, 9, | 86 91, 9, 347, 9, 219, 9, 475, 9, 59, 9, |
87 315, 9, 187, 9, 443, 9, 123, 9, 379, 9, | 87 315, 9, 187, 9, 443, 9, 123, 9, 379, 9, |
88 251, 9, 507, 9, 7, 9, 263, 9, 135, 9, | 88 251, 9, 507, 9, 7, 9, 263, 9, 135, 9, |
89 391, 9, 71, 9, 327, 9, 199, 9, 455, 9, | 89 391, 9, 71, 9, 327, 9, 199, 9, 455, 9, |
90 39, 9, 295, 9, 167, 9, 423, 9, 103, 9, | 90 39, 9, 295, 9, 167, 9, 423, 9, 103, 9, |
91 359, 9, 231, 9, 487, 9, 23, 9, 279, 9, | 91 359, 9, 231, 9, 487, 9, 23, 9, 279, 9, |
92 151, 9, 407, 9, 87, 9, 343, 9, 215, 9, | 92 151, 9, 407, 9, 87, 9, 343, 9, 215, 9, |
93 471, 9, 55, 9, 311, 9, 183, 9, 439, 9, | 93 471, 9, 55, 9, 311, 9, 183, 9, 439, 9, |
94 119, 9, 375, 9, 247, 9, 503, 9, 15, 9, | 94 119, 9, 375, 9, 247, 9, 503, 9, 15, 9, |
95 271, 9, 143, 9, 399, 9, 79, 9, 335, 9, | 95 271, 9, 143, 9, 399, 9, 79, 9, 335, 9, |
96 207, 9, 463, 9, 47, 9, 303, 9, 175, 9, | 96 207, 9, 463, 9, 47, 9, 303, 9, 175, 9, |
97 431, 9, 111, 9, 367, 9, 239, 9, 495, 9, | 97 431, 9, 111, 9, 367, 9, 239, 9, 495, 9, |
98 31, 9, 287, 9, 159, 9, 415, 9, 95, 9, | 98 31, 9, 287, 9, 159, 9, 415, 9, 95, 9, |
99 351, 9, 223, 9, 479, 9, 63, 9, 319, 9, | 99 351, 9, 223, 9, 479, 9, 63, 9, 319, 9, |
100 191, 9, 447, 9, 127, 9, 383, 9, 255, 9, | 100 191, 9, 447, 9, 127, 9, 383, 9, 255, 9, |
101 511, 9, 0, 7, 64, 7, 32, 7, 96, 7, | 101 511, 9, 0, 7, 64, 7, 32, 7, 96, 7, |
102 16, 7, 80, 7, 48, 7, 112, 7, 8, 7, | 102 16, 7, 80, 7, 48, 7, 112, 7, 8, 7, |
103 72, 7, 40, 7, 104, 7, 24, 7, 88, 7, | 103 72, 7, 40, 7, 104, 7, 24, 7, 88, 7, |
104 56, 7, 120, 7, 4, 7, 68, 7, 36, 7, | 104 56, 7, 120, 7, 4, 7, 68, 7, 36, 7, |
105 100, 7, 20, 7, 84, 7, 52, 7, 116, 7, | 105 100, 7, 20, 7, 84, 7, 52, 7, 116, 7, |
106 3, 8, 131, 8, 67, 8, 195, 8, 35, 8, | 106 3, 8, 131, 8, 67, 8, 195, 8, 35, 8, |
107 163, 8, 99, 8, 227, 8 | 107 163, 8, 99, 8, 227, 8 |
108 }; | 108 }; |
109 | 109 |
110 static final short[] static_dtree = { | 110 static final short[] static_dtree = { |
111 0, 5, 16, 5, 8, 5, 24, 5, 4, 5, | 111 0, 5, 16, 5, 8, 5, 24, 5, 4, 5, |
112 20, 5, 12, 5, 28, 5, 2, 5, 18, 5, | 112 20, 5, 12, 5, 28, 5, 2, 5, 18, 5, |
113 10, 5, 26, 5, 6, 5, 22, 5, 14, 5, | 113 10, 5, 26, 5, 6, 5, 22, 5, 14, 5, |
114 30, 5, 1, 5, 17, 5, 9, 5, 25, 5, | 114 30, 5, 1, 5, 17, 5, 9, 5, 25, 5, |
115 5, 5, 21, 5, 13, 5, 29, 5, 3, 5, | 115 5, 5, 21, 5, 13, 5, 29, 5, 3, 5, |
116 19, 5, 11, 5, 27, 5, 7, 5, 23, 5 | 116 19, 5, 11, 5, 27, 5, 7, 5, 23, 5 |
117 }; | 117 }; |
118 | 118 |
119 static StaticTree static_l_desc = | 119 static StaticTree static_l_desc = |
120 new StaticTree(static_ltree, Tree.extra_lbits, | 120 new StaticTree(static_ltree, Tree.extra_lbits, |
121 LITERALS + 1, L_CODES, MAX_BITS); | 121 LITERALS+1, L_CODES, MAX_BITS); |
122 | 122 |
123 static StaticTree static_d_desc = | 123 static StaticTree static_d_desc = |
124 new StaticTree(static_dtree, Tree.extra_dbits, | 124 new StaticTree(static_dtree, Tree.extra_dbits, |
125 0, D_CODES, MAX_BITS); | 125 0, D_CODES, MAX_BITS); |
126 | 126 |
127 static StaticTree static_bl_desc = | 127 static StaticTree static_bl_desc = |
128 new StaticTree(null, Tree.extra_blbits, | 128 new StaticTree(null, Tree.extra_blbits, |
129 0, BL_CODES, MAX_BL_BITS); | 129 0, BL_CODES, MAX_BL_BITS); |
130 | 130 |
131 short[] static_tree; // static tree or null | 131 short[] static_tree; // static tree or null |
132 int[] extra_bits; // extra bits for each code or null | 132 int[] extra_bits; // extra bits for each code or null |
133 int extra_base; // base index for extra_bits | 133 int extra_base; // base index for extra_bits |
134 int elems; // max number of elements in the tree | 134 int elems; // max number of elements in the tree |
135 int max_length; // max bit length for the codes | 135 int max_length; // max bit length for the codes |
136 | 136 |
137 StaticTree(short[] static_tree, | 137 private StaticTree(short[] static_tree, |
138 int[] extra_bits, | 138 int[] extra_bits, |
139 int extra_base, | 139 int extra_base, |
140 int elems, | 140 int elems, |
141 int max_length | 141 int max_length){ |
142 ) { | 142 this.static_tree=static_tree; |
143 this.static_tree = static_tree; | 143 this.extra_bits=extra_bits; |
144 this.extra_bits = extra_bits; | 144 this.extra_base=extra_base; |
145 this.extra_base = extra_base; | 145 this.elems=elems; |
146 this.elems = elems; | 146 this.max_length=max_length; |
147 this.max_length = max_length; | 147 } |
148 } | |
149 } | 148 } |