/rust/registry/src/github.com-1ecc6299db9ec823/brotli-decompressor-2.3.2/src/prefix.rs
Line | Count | Source (jump to first uncovered line) |
1 | | #![allow(non_upper_case_globals)] |
2 | | // Represents the range of values belonging to a prefix code: |
3 | | // [offset, offset + 2^nbits) |
4 | | pub struct PrefixCodeRange { |
5 | | pub offset: u16, |
6 | | pub nbits: u8, |
7 | | } |
8 | | |
9 | | pub const kBlockLengthPrefixCode: [PrefixCodeRange; 26] = [PrefixCodeRange { |
10 | | offset: 1, |
11 | | nbits: 2, |
12 | | }, |
13 | | PrefixCodeRange { |
14 | | offset: 5, |
15 | | nbits: 2, |
16 | | }, |
17 | | PrefixCodeRange { |
18 | | offset: 9, |
19 | | nbits: 2, |
20 | | }, |
21 | | PrefixCodeRange { |
22 | | offset: 13, |
23 | | nbits: 2, |
24 | | }, |
25 | | PrefixCodeRange { |
26 | | offset: 17, |
27 | | nbits: 3, |
28 | | }, |
29 | | PrefixCodeRange { |
30 | | offset: 25, |
31 | | nbits: 3, |
32 | | }, |
33 | | PrefixCodeRange { |
34 | | offset: 33, |
35 | | nbits: 3, |
36 | | }, |
37 | | PrefixCodeRange { |
38 | | offset: 41, |
39 | | nbits: 3, |
40 | | }, |
41 | | PrefixCodeRange { |
42 | | offset: 49, |
43 | | nbits: 4, |
44 | | }, |
45 | | PrefixCodeRange { |
46 | | offset: 65, |
47 | | nbits: 4, |
48 | | }, |
49 | | PrefixCodeRange { |
50 | | offset: 81, |
51 | | nbits: 4, |
52 | | }, |
53 | | PrefixCodeRange { |
54 | | offset: 97, |
55 | | nbits: 4, |
56 | | }, |
57 | | PrefixCodeRange { |
58 | | offset: 113, |
59 | | nbits: 5, |
60 | | }, |
61 | | PrefixCodeRange { |
62 | | offset: 145, |
63 | | nbits: 5, |
64 | | }, |
65 | | PrefixCodeRange { |
66 | | offset: 177, |
67 | | nbits: 5, |
68 | | }, |
69 | | PrefixCodeRange { |
70 | | offset: 209, |
71 | | nbits: 5, |
72 | | }, |
73 | | PrefixCodeRange { |
74 | | offset: 241, |
75 | | nbits: 6, |
76 | | }, |
77 | | PrefixCodeRange { |
78 | | offset: 305, |
79 | | nbits: 6, |
80 | | }, |
81 | | PrefixCodeRange { |
82 | | offset: 369, |
83 | | nbits: 7, |
84 | | }, |
85 | | PrefixCodeRange { |
86 | | offset: 497, |
87 | | nbits: 8, |
88 | | }, |
89 | | PrefixCodeRange { |
90 | | offset: 753, |
91 | | nbits: 9, |
92 | | }, |
93 | | PrefixCodeRange { |
94 | | offset: 1265, |
95 | | nbits: 10, |
96 | | }, |
97 | | PrefixCodeRange { |
98 | | offset: 2289, |
99 | | nbits: 11, |
100 | | }, |
101 | | PrefixCodeRange { |
102 | | offset: 4337, |
103 | | nbits: 12, |
104 | | }, |
105 | | PrefixCodeRange { |
106 | | offset: 8433, |
107 | | nbits: 13, |
108 | | }, |
109 | | PrefixCodeRange { |
110 | | offset: 16625, |
111 | | nbits: 24, |
112 | | }]; |
113 | | |
114 | | |
115 | 0 | #[derive(Debug, Copy, Clone)] |
116 | | pub struct CmdLutElement { |
117 | | pub insert_len_extra_bits: u8, |
118 | | pub copy_len_extra_bits: u8, |
119 | | pub distance_code: i8, |
120 | | pub context: u8, |
121 | | pub insert_len_offset: u16, |
122 | | pub copy_len_offset: u16, |
123 | | } |
124 | | pub const kCmdLut: [CmdLutElement; 704] = [CmdLutElement { |
125 | | insert_len_extra_bits: 0x00, |
126 | | copy_len_extra_bits: 0x00, |
127 | | distance_code: 0, |
128 | | context: 0x00, |
129 | | insert_len_offset: 0x0000, |
130 | | copy_len_offset: 0x0002, |
131 | | }, |
132 | | CmdLutElement { |
133 | | insert_len_extra_bits: 0x00, |
134 | | copy_len_extra_bits: 0x00, |
135 | | distance_code: 0, |
136 | | context: 0x01, |
137 | | insert_len_offset: 0x0000, |
138 | | copy_len_offset: 0x0003, |
139 | | }, |
140 | | CmdLutElement { |
141 | | insert_len_extra_bits: 0x00, |
142 | | copy_len_extra_bits: 0x00, |
143 | | distance_code: 0, |
144 | | context: 0x02, |
145 | | insert_len_offset: 0x0000, |
146 | | copy_len_offset: 0x0004, |
147 | | }, |
148 | | CmdLutElement { |
149 | | insert_len_extra_bits: 0x00, |
150 | | copy_len_extra_bits: 0x00, |
151 | | distance_code: 0, |
152 | | context: 0x03, |
153 | | insert_len_offset: 0x0000, |
154 | | copy_len_offset: 0x0005, |
155 | | }, |
156 | | CmdLutElement { |
157 | | insert_len_extra_bits: 0x00, |
158 | | copy_len_extra_bits: 0x00, |
159 | | distance_code: 0, |
160 | | context: 0x03, |
161 | | insert_len_offset: 0x0000, |
162 | | copy_len_offset: 0x0006, |
163 | | }, |
164 | | CmdLutElement { |
165 | | insert_len_extra_bits: 0x00, |
166 | | copy_len_extra_bits: 0x00, |
167 | | distance_code: 0, |
168 | | context: 0x03, |
169 | | insert_len_offset: 0x0000, |
170 | | copy_len_offset: 0x0007, |
171 | | }, |
172 | | CmdLutElement { |
173 | | insert_len_extra_bits: 0x00, |
174 | | copy_len_extra_bits: 0x00, |
175 | | distance_code: 0, |
176 | | context: 0x03, |
177 | | insert_len_offset: 0x0000, |
178 | | copy_len_offset: 0x0008, |
179 | | }, |
180 | | CmdLutElement { |
181 | | insert_len_extra_bits: 0x00, |
182 | | copy_len_extra_bits: 0x00, |
183 | | distance_code: 0, |
184 | | context: 0x03, |
185 | | insert_len_offset: 0x0000, |
186 | | copy_len_offset: 0x0009, |
187 | | }, |
188 | | CmdLutElement { |
189 | | insert_len_extra_bits: 0x00, |
190 | | copy_len_extra_bits: 0x00, |
191 | | distance_code: 0, |
192 | | context: 0x00, |
193 | | insert_len_offset: 0x0001, |
194 | | copy_len_offset: 0x0002, |
195 | | }, |
196 | | CmdLutElement { |
197 | | insert_len_extra_bits: 0x00, |
198 | | copy_len_extra_bits: 0x00, |
199 | | distance_code: 0, |
200 | | context: 0x01, |
201 | | insert_len_offset: 0x0001, |
202 | | copy_len_offset: 0x0003, |
203 | | }, |
204 | | CmdLutElement { |
205 | | insert_len_extra_bits: 0x00, |
206 | | copy_len_extra_bits: 0x00, |
207 | | distance_code: 0, |
208 | | context: 0x02, |
209 | | insert_len_offset: 0x0001, |
210 | | copy_len_offset: 0x0004, |
211 | | }, |
212 | | CmdLutElement { |
213 | | insert_len_extra_bits: 0x00, |
214 | | copy_len_extra_bits: 0x00, |
215 | | distance_code: 0, |
216 | | context: 0x03, |
217 | | insert_len_offset: 0x0001, |
218 | | copy_len_offset: 0x0005, |
219 | | }, |
220 | | CmdLutElement { |
221 | | insert_len_extra_bits: 0x00, |
222 | | copy_len_extra_bits: 0x00, |
223 | | distance_code: 0, |
224 | | context: 0x03, |
225 | | insert_len_offset: 0x0001, |
226 | | copy_len_offset: 0x0006, |
227 | | }, |
228 | | CmdLutElement { |
229 | | insert_len_extra_bits: 0x00, |
230 | | copy_len_extra_bits: 0x00, |
231 | | distance_code: 0, |
232 | | context: 0x03, |
233 | | insert_len_offset: 0x0001, |
234 | | copy_len_offset: 0x0007, |
235 | | }, |
236 | | CmdLutElement { |
237 | | insert_len_extra_bits: 0x00, |
238 | | copy_len_extra_bits: 0x00, |
239 | | distance_code: 0, |
240 | | context: 0x03, |
241 | | insert_len_offset: 0x0001, |
242 | | copy_len_offset: 0x0008, |
243 | | }, |
244 | | CmdLutElement { |
245 | | insert_len_extra_bits: 0x00, |
246 | | copy_len_extra_bits: 0x00, |
247 | | distance_code: 0, |
248 | | context: 0x03, |
249 | | insert_len_offset: 0x0001, |
250 | | copy_len_offset: 0x0009, |
251 | | }, |
252 | | CmdLutElement { |
253 | | insert_len_extra_bits: 0x00, |
254 | | copy_len_extra_bits: 0x00, |
255 | | distance_code: 0, |
256 | | context: 0x00, |
257 | | insert_len_offset: 0x0002, |
258 | | copy_len_offset: 0x0002, |
259 | | }, |
260 | | CmdLutElement { |
261 | | insert_len_extra_bits: 0x00, |
262 | | copy_len_extra_bits: 0x00, |
263 | | distance_code: 0, |
264 | | context: 0x01, |
265 | | insert_len_offset: 0x0002, |
266 | | copy_len_offset: 0x0003, |
267 | | }, |
268 | | CmdLutElement { |
269 | | insert_len_extra_bits: 0x00, |
270 | | copy_len_extra_bits: 0x00, |
271 | | distance_code: 0, |
272 | | context: 0x02, |
273 | | insert_len_offset: 0x0002, |
274 | | copy_len_offset: 0x0004, |
275 | | }, |
276 | | CmdLutElement { |
277 | | insert_len_extra_bits: 0x00, |
278 | | copy_len_extra_bits: 0x00, |
279 | | distance_code: 0, |
280 | | context: 0x03, |
281 | | insert_len_offset: 0x0002, |
282 | | copy_len_offset: 0x0005, |
283 | | }, |
284 | | CmdLutElement { |
285 | | insert_len_extra_bits: 0x00, |
286 | | copy_len_extra_bits: 0x00, |
287 | | distance_code: 0, |
288 | | context: 0x03, |
289 | | insert_len_offset: 0x0002, |
290 | | copy_len_offset: 0x0006, |
291 | | }, |
292 | | CmdLutElement { |
293 | | insert_len_extra_bits: 0x00, |
294 | | copy_len_extra_bits: 0x00, |
295 | | distance_code: 0, |
296 | | context: 0x03, |
297 | | insert_len_offset: 0x0002, |
298 | | copy_len_offset: 0x0007, |
299 | | }, |
300 | | CmdLutElement { |
301 | | insert_len_extra_bits: 0x00, |
302 | | copy_len_extra_bits: 0x00, |
303 | | distance_code: 0, |
304 | | context: 0x03, |
305 | | insert_len_offset: 0x0002, |
306 | | copy_len_offset: 0x0008, |
307 | | }, |
308 | | CmdLutElement { |
309 | | insert_len_extra_bits: 0x00, |
310 | | copy_len_extra_bits: 0x00, |
311 | | distance_code: 0, |
312 | | context: 0x03, |
313 | | insert_len_offset: 0x0002, |
314 | | copy_len_offset: 0x0009, |
315 | | }, |
316 | | CmdLutElement { |
317 | | insert_len_extra_bits: 0x00, |
318 | | copy_len_extra_bits: 0x00, |
319 | | distance_code: 0, |
320 | | context: 0x00, |
321 | | insert_len_offset: 0x0003, |
322 | | copy_len_offset: 0x0002, |
323 | | }, |
324 | | CmdLutElement { |
325 | | insert_len_extra_bits: 0x00, |
326 | | copy_len_extra_bits: 0x00, |
327 | | distance_code: 0, |
328 | | context: 0x01, |
329 | | insert_len_offset: 0x0003, |
330 | | copy_len_offset: 0x0003, |
331 | | }, |
332 | | CmdLutElement { |
333 | | insert_len_extra_bits: 0x00, |
334 | | copy_len_extra_bits: 0x00, |
335 | | distance_code: 0, |
336 | | context: 0x02, |
337 | | insert_len_offset: 0x0003, |
338 | | copy_len_offset: 0x0004, |
339 | | }, |
340 | | CmdLutElement { |
341 | | insert_len_extra_bits: 0x00, |
342 | | copy_len_extra_bits: 0x00, |
343 | | distance_code: 0, |
344 | | context: 0x03, |
345 | | insert_len_offset: 0x0003, |
346 | | copy_len_offset: 0x0005, |
347 | | }, |
348 | | CmdLutElement { |
349 | | insert_len_extra_bits: 0x00, |
350 | | copy_len_extra_bits: 0x00, |
351 | | distance_code: 0, |
352 | | context: 0x03, |
353 | | insert_len_offset: 0x0003, |
354 | | copy_len_offset: 0x0006, |
355 | | }, |
356 | | CmdLutElement { |
357 | | insert_len_extra_bits: 0x00, |
358 | | copy_len_extra_bits: 0x00, |
359 | | distance_code: 0, |
360 | | context: 0x03, |
361 | | insert_len_offset: 0x0003, |
362 | | copy_len_offset: 0x0007, |
363 | | }, |
364 | | CmdLutElement { |
365 | | insert_len_extra_bits: 0x00, |
366 | | copy_len_extra_bits: 0x00, |
367 | | distance_code: 0, |
368 | | context: 0x03, |
369 | | insert_len_offset: 0x0003, |
370 | | copy_len_offset: 0x0008, |
371 | | }, |
372 | | CmdLutElement { |
373 | | insert_len_extra_bits: 0x00, |
374 | | copy_len_extra_bits: 0x00, |
375 | | distance_code: 0, |
376 | | context: 0x03, |
377 | | insert_len_offset: 0x0003, |
378 | | copy_len_offset: 0x0009, |
379 | | }, |
380 | | CmdLutElement { |
381 | | insert_len_extra_bits: 0x00, |
382 | | copy_len_extra_bits: 0x00, |
383 | | distance_code: 0, |
384 | | context: 0x00, |
385 | | insert_len_offset: 0x0004, |
386 | | copy_len_offset: 0x0002, |
387 | | }, |
388 | | CmdLutElement { |
389 | | insert_len_extra_bits: 0x00, |
390 | | copy_len_extra_bits: 0x00, |
391 | | distance_code: 0, |
392 | | context: 0x01, |
393 | | insert_len_offset: 0x0004, |
394 | | copy_len_offset: 0x0003, |
395 | | }, |
396 | | CmdLutElement { |
397 | | insert_len_extra_bits: 0x00, |
398 | | copy_len_extra_bits: 0x00, |
399 | | distance_code: 0, |
400 | | context: 0x02, |
401 | | insert_len_offset: 0x0004, |
402 | | copy_len_offset: 0x0004, |
403 | | }, |
404 | | CmdLutElement { |
405 | | insert_len_extra_bits: 0x00, |
406 | | copy_len_extra_bits: 0x00, |
407 | | distance_code: 0, |
408 | | context: 0x03, |
409 | | insert_len_offset: 0x0004, |
410 | | copy_len_offset: 0x0005, |
411 | | }, |
412 | | CmdLutElement { |
413 | | insert_len_extra_bits: 0x00, |
414 | | copy_len_extra_bits: 0x00, |
415 | | distance_code: 0, |
416 | | context: 0x03, |
417 | | insert_len_offset: 0x0004, |
418 | | copy_len_offset: 0x0006, |
419 | | }, |
420 | | CmdLutElement { |
421 | | insert_len_extra_bits: 0x00, |
422 | | copy_len_extra_bits: 0x00, |
423 | | distance_code: 0, |
424 | | context: 0x03, |
425 | | insert_len_offset: 0x0004, |
426 | | copy_len_offset: 0x0007, |
427 | | }, |
428 | | CmdLutElement { |
429 | | insert_len_extra_bits: 0x00, |
430 | | copy_len_extra_bits: 0x00, |
431 | | distance_code: 0, |
432 | | context: 0x03, |
433 | | insert_len_offset: 0x0004, |
434 | | copy_len_offset: 0x0008, |
435 | | }, |
436 | | CmdLutElement { |
437 | | insert_len_extra_bits: 0x00, |
438 | | copy_len_extra_bits: 0x00, |
439 | | distance_code: 0, |
440 | | context: 0x03, |
441 | | insert_len_offset: 0x0004, |
442 | | copy_len_offset: 0x0009, |
443 | | }, |
444 | | CmdLutElement { |
445 | | insert_len_extra_bits: 0x00, |
446 | | copy_len_extra_bits: 0x00, |
447 | | distance_code: 0, |
448 | | context: 0x00, |
449 | | insert_len_offset: 0x0005, |
450 | | copy_len_offset: 0x0002, |
451 | | }, |
452 | | CmdLutElement { |
453 | | insert_len_extra_bits: 0x00, |
454 | | copy_len_extra_bits: 0x00, |
455 | | distance_code: 0, |
456 | | context: 0x01, |
457 | | insert_len_offset: 0x0005, |
458 | | copy_len_offset: 0x0003, |
459 | | }, |
460 | | CmdLutElement { |
461 | | insert_len_extra_bits: 0x00, |
462 | | copy_len_extra_bits: 0x00, |
463 | | distance_code: 0, |
464 | | context: 0x02, |
465 | | insert_len_offset: 0x0005, |
466 | | copy_len_offset: 0x0004, |
467 | | }, |
468 | | CmdLutElement { |
469 | | insert_len_extra_bits: 0x00, |
470 | | copy_len_extra_bits: 0x00, |
471 | | distance_code: 0, |
472 | | context: 0x03, |
473 | | insert_len_offset: 0x0005, |
474 | | copy_len_offset: 0x0005, |
475 | | }, |
476 | | CmdLutElement { |
477 | | insert_len_extra_bits: 0x00, |
478 | | copy_len_extra_bits: 0x00, |
479 | | distance_code: 0, |
480 | | context: 0x03, |
481 | | insert_len_offset: 0x0005, |
482 | | copy_len_offset: 0x0006, |
483 | | }, |
484 | | CmdLutElement { |
485 | | insert_len_extra_bits: 0x00, |
486 | | copy_len_extra_bits: 0x00, |
487 | | distance_code: 0, |
488 | | context: 0x03, |
489 | | insert_len_offset: 0x0005, |
490 | | copy_len_offset: 0x0007, |
491 | | }, |
492 | | CmdLutElement { |
493 | | insert_len_extra_bits: 0x00, |
494 | | copy_len_extra_bits: 0x00, |
495 | | distance_code: 0, |
496 | | context: 0x03, |
497 | | insert_len_offset: 0x0005, |
498 | | copy_len_offset: 0x0008, |
499 | | }, |
500 | | CmdLutElement { |
501 | | insert_len_extra_bits: 0x00, |
502 | | copy_len_extra_bits: 0x00, |
503 | | distance_code: 0, |
504 | | context: 0x03, |
505 | | insert_len_offset: 0x0005, |
506 | | copy_len_offset: 0x0009, |
507 | | }, |
508 | | CmdLutElement { |
509 | | insert_len_extra_bits: 0x01, |
510 | | copy_len_extra_bits: 0x00, |
511 | | distance_code: 0, |
512 | | context: 0x00, |
513 | | insert_len_offset: 0x0006, |
514 | | copy_len_offset: 0x0002, |
515 | | }, |
516 | | CmdLutElement { |
517 | | insert_len_extra_bits: 0x01, |
518 | | copy_len_extra_bits: 0x00, |
519 | | distance_code: 0, |
520 | | context: 0x01, |
521 | | insert_len_offset: 0x0006, |
522 | | copy_len_offset: 0x0003, |
523 | | }, |
524 | | CmdLutElement { |
525 | | insert_len_extra_bits: 0x01, |
526 | | copy_len_extra_bits: 0x00, |
527 | | distance_code: 0, |
528 | | context: 0x02, |
529 | | insert_len_offset: 0x0006, |
530 | | copy_len_offset: 0x0004, |
531 | | }, |
532 | | CmdLutElement { |
533 | | insert_len_extra_bits: 0x01, |
534 | | copy_len_extra_bits: 0x00, |
535 | | distance_code: 0, |
536 | | context: 0x03, |
537 | | insert_len_offset: 0x0006, |
538 | | copy_len_offset: 0x0005, |
539 | | }, |
540 | | CmdLutElement { |
541 | | insert_len_extra_bits: 0x01, |
542 | | copy_len_extra_bits: 0x00, |
543 | | distance_code: 0, |
544 | | context: 0x03, |
545 | | insert_len_offset: 0x0006, |
546 | | copy_len_offset: 0x0006, |
547 | | }, |
548 | | CmdLutElement { |
549 | | insert_len_extra_bits: 0x01, |
550 | | copy_len_extra_bits: 0x00, |
551 | | distance_code: 0, |
552 | | context: 0x03, |
553 | | insert_len_offset: 0x0006, |
554 | | copy_len_offset: 0x0007, |
555 | | }, |
556 | | CmdLutElement { |
557 | | insert_len_extra_bits: 0x01, |
558 | | copy_len_extra_bits: 0x00, |
559 | | distance_code: 0, |
560 | | context: 0x03, |
561 | | insert_len_offset: 0x0006, |
562 | | copy_len_offset: 0x0008, |
563 | | }, |
564 | | CmdLutElement { |
565 | | insert_len_extra_bits: 0x01, |
566 | | copy_len_extra_bits: 0x00, |
567 | | distance_code: 0, |
568 | | context: 0x03, |
569 | | insert_len_offset: 0x0006, |
570 | | copy_len_offset: 0x0009, |
571 | | }, |
572 | | CmdLutElement { |
573 | | insert_len_extra_bits: 0x01, |
574 | | copy_len_extra_bits: 0x00, |
575 | | distance_code: 0, |
576 | | context: 0x00, |
577 | | insert_len_offset: 0x0008, |
578 | | copy_len_offset: 0x0002, |
579 | | }, |
580 | | CmdLutElement { |
581 | | insert_len_extra_bits: 0x01, |
582 | | copy_len_extra_bits: 0x00, |
583 | | distance_code: 0, |
584 | | context: 0x01, |
585 | | insert_len_offset: 0x0008, |
586 | | copy_len_offset: 0x0003, |
587 | | }, |
588 | | CmdLutElement { |
589 | | insert_len_extra_bits: 0x01, |
590 | | copy_len_extra_bits: 0x00, |
591 | | distance_code: 0, |
592 | | context: 0x02, |
593 | | insert_len_offset: 0x0008, |
594 | | copy_len_offset: 0x0004, |
595 | | }, |
596 | | CmdLutElement { |
597 | | insert_len_extra_bits: 0x01, |
598 | | copy_len_extra_bits: 0x00, |
599 | | distance_code: 0, |
600 | | context: 0x03, |
601 | | insert_len_offset: 0x0008, |
602 | | copy_len_offset: 0x0005, |
603 | | }, |
604 | | CmdLutElement { |
605 | | insert_len_extra_bits: 0x01, |
606 | | copy_len_extra_bits: 0x00, |
607 | | distance_code: 0, |
608 | | context: 0x03, |
609 | | insert_len_offset: 0x0008, |
610 | | copy_len_offset: 0x0006, |
611 | | }, |
612 | | CmdLutElement { |
613 | | insert_len_extra_bits: 0x01, |
614 | | copy_len_extra_bits: 0x00, |
615 | | distance_code: 0, |
616 | | context: 0x03, |
617 | | insert_len_offset: 0x0008, |
618 | | copy_len_offset: 0x0007, |
619 | | }, |
620 | | CmdLutElement { |
621 | | insert_len_extra_bits: 0x01, |
622 | | copy_len_extra_bits: 0x00, |
623 | | distance_code: 0, |
624 | | context: 0x03, |
625 | | insert_len_offset: 0x0008, |
626 | | copy_len_offset: 0x0008, |
627 | | }, |
628 | | CmdLutElement { |
629 | | insert_len_extra_bits: 0x01, |
630 | | copy_len_extra_bits: 0x00, |
631 | | distance_code: 0, |
632 | | context: 0x03, |
633 | | insert_len_offset: 0x0008, |
634 | | copy_len_offset: 0x0009, |
635 | | }, |
636 | | CmdLutElement { |
637 | | insert_len_extra_bits: 0x00, |
638 | | copy_len_extra_bits: 0x01, |
639 | | distance_code: 0, |
640 | | context: 0x03, |
641 | | insert_len_offset: 0x0000, |
642 | | copy_len_offset: 0x000a, |
643 | | }, |
644 | | CmdLutElement { |
645 | | insert_len_extra_bits: 0x00, |
646 | | copy_len_extra_bits: 0x01, |
647 | | distance_code: 0, |
648 | | context: 0x03, |
649 | | insert_len_offset: 0x0000, |
650 | | copy_len_offset: 0x000c, |
651 | | }, |
652 | | CmdLutElement { |
653 | | insert_len_extra_bits: 0x00, |
654 | | copy_len_extra_bits: 0x02, |
655 | | distance_code: 0, |
656 | | context: 0x03, |
657 | | insert_len_offset: 0x0000, |
658 | | copy_len_offset: 0x000e, |
659 | | }, |
660 | | CmdLutElement { |
661 | | insert_len_extra_bits: 0x00, |
662 | | copy_len_extra_bits: 0x02, |
663 | | distance_code: 0, |
664 | | context: 0x03, |
665 | | insert_len_offset: 0x0000, |
666 | | copy_len_offset: 0x0012, |
667 | | }, |
668 | | CmdLutElement { |
669 | | insert_len_extra_bits: 0x00, |
670 | | copy_len_extra_bits: 0x03, |
671 | | distance_code: 0, |
672 | | context: 0x03, |
673 | | insert_len_offset: 0x0000, |
674 | | copy_len_offset: 0x0016, |
675 | | }, |
676 | | CmdLutElement { |
677 | | insert_len_extra_bits: 0x00, |
678 | | copy_len_extra_bits: 0x03, |
679 | | distance_code: 0, |
680 | | context: 0x03, |
681 | | insert_len_offset: 0x0000, |
682 | | copy_len_offset: 0x001e, |
683 | | }, |
684 | | CmdLutElement { |
685 | | insert_len_extra_bits: 0x00, |
686 | | copy_len_extra_bits: 0x04, |
687 | | distance_code: 0, |
688 | | context: 0x03, |
689 | | insert_len_offset: 0x0000, |
690 | | copy_len_offset: 0x0026, |
691 | | }, |
692 | | CmdLutElement { |
693 | | insert_len_extra_bits: 0x00, |
694 | | copy_len_extra_bits: 0x04, |
695 | | distance_code: 0, |
696 | | context: 0x03, |
697 | | insert_len_offset: 0x0000, |
698 | | copy_len_offset: 0x0036, |
699 | | }, |
700 | | CmdLutElement { |
701 | | insert_len_extra_bits: 0x00, |
702 | | copy_len_extra_bits: 0x01, |
703 | | distance_code: 0, |
704 | | context: 0x03, |
705 | | insert_len_offset: 0x0001, |
706 | | copy_len_offset: 0x000a, |
707 | | }, |
708 | | CmdLutElement { |
709 | | insert_len_extra_bits: 0x00, |
710 | | copy_len_extra_bits: 0x01, |
711 | | distance_code: 0, |
712 | | context: 0x03, |
713 | | insert_len_offset: 0x0001, |
714 | | copy_len_offset: 0x000c, |
715 | | }, |
716 | | CmdLutElement { |
717 | | insert_len_extra_bits: 0x00, |
718 | | copy_len_extra_bits: 0x02, |
719 | | distance_code: 0, |
720 | | context: 0x03, |
721 | | insert_len_offset: 0x0001, |
722 | | copy_len_offset: 0x000e, |
723 | | }, |
724 | | CmdLutElement { |
725 | | insert_len_extra_bits: 0x00, |
726 | | copy_len_extra_bits: 0x02, |
727 | | distance_code: 0, |
728 | | context: 0x03, |
729 | | insert_len_offset: 0x0001, |
730 | | copy_len_offset: 0x0012, |
731 | | }, |
732 | | CmdLutElement { |
733 | | insert_len_extra_bits: 0x00, |
734 | | copy_len_extra_bits: 0x03, |
735 | | distance_code: 0, |
736 | | context: 0x03, |
737 | | insert_len_offset: 0x0001, |
738 | | copy_len_offset: 0x0016, |
739 | | }, |
740 | | CmdLutElement { |
741 | | insert_len_extra_bits: 0x00, |
742 | | copy_len_extra_bits: 0x03, |
743 | | distance_code: 0, |
744 | | context: 0x03, |
745 | | insert_len_offset: 0x0001, |
746 | | copy_len_offset: 0x001e, |
747 | | }, |
748 | | CmdLutElement { |
749 | | insert_len_extra_bits: 0x00, |
750 | | copy_len_extra_bits: 0x04, |
751 | | distance_code: 0, |
752 | | context: 0x03, |
753 | | insert_len_offset: 0x0001, |
754 | | copy_len_offset: 0x0026, |
755 | | }, |
756 | | CmdLutElement { |
757 | | insert_len_extra_bits: 0x00, |
758 | | copy_len_extra_bits: 0x04, |
759 | | distance_code: 0, |
760 | | context: 0x03, |
761 | | insert_len_offset: 0x0001, |
762 | | copy_len_offset: 0x0036, |
763 | | }, |
764 | | CmdLutElement { |
765 | | insert_len_extra_bits: 0x00, |
766 | | copy_len_extra_bits: 0x01, |
767 | | distance_code: 0, |
768 | | context: 0x03, |
769 | | insert_len_offset: 0x0002, |
770 | | copy_len_offset: 0x000a, |
771 | | }, |
772 | | CmdLutElement { |
773 | | insert_len_extra_bits: 0x00, |
774 | | copy_len_extra_bits: 0x01, |
775 | | distance_code: 0, |
776 | | context: 0x03, |
777 | | insert_len_offset: 0x0002, |
778 | | copy_len_offset: 0x000c, |
779 | | }, |
780 | | CmdLutElement { |
781 | | insert_len_extra_bits: 0x00, |
782 | | copy_len_extra_bits: 0x02, |
783 | | distance_code: 0, |
784 | | context: 0x03, |
785 | | insert_len_offset: 0x0002, |
786 | | copy_len_offset: 0x000e, |
787 | | }, |
788 | | CmdLutElement { |
789 | | insert_len_extra_bits: 0x00, |
790 | | copy_len_extra_bits: 0x02, |
791 | | distance_code: 0, |
792 | | context: 0x03, |
793 | | insert_len_offset: 0x0002, |
794 | | copy_len_offset: 0x0012, |
795 | | }, |
796 | | CmdLutElement { |
797 | | insert_len_extra_bits: 0x00, |
798 | | copy_len_extra_bits: 0x03, |
799 | | distance_code: 0, |
800 | | context: 0x03, |
801 | | insert_len_offset: 0x0002, |
802 | | copy_len_offset: 0x0016, |
803 | | }, |
804 | | CmdLutElement { |
805 | | insert_len_extra_bits: 0x00, |
806 | | copy_len_extra_bits: 0x03, |
807 | | distance_code: 0, |
808 | | context: 0x03, |
809 | | insert_len_offset: 0x0002, |
810 | | copy_len_offset: 0x001e, |
811 | | }, |
812 | | CmdLutElement { |
813 | | insert_len_extra_bits: 0x00, |
814 | | copy_len_extra_bits: 0x04, |
815 | | distance_code: 0, |
816 | | context: 0x03, |
817 | | insert_len_offset: 0x0002, |
818 | | copy_len_offset: 0x0026, |
819 | | }, |
820 | | CmdLutElement { |
821 | | insert_len_extra_bits: 0x00, |
822 | | copy_len_extra_bits: 0x04, |
823 | | distance_code: 0, |
824 | | context: 0x03, |
825 | | insert_len_offset: 0x0002, |
826 | | copy_len_offset: 0x0036, |
827 | | }, |
828 | | CmdLutElement { |
829 | | insert_len_extra_bits: 0x00, |
830 | | copy_len_extra_bits: 0x01, |
831 | | distance_code: 0, |
832 | | context: 0x03, |
833 | | insert_len_offset: 0x0003, |
834 | | copy_len_offset: 0x000a, |
835 | | }, |
836 | | CmdLutElement { |
837 | | insert_len_extra_bits: 0x00, |
838 | | copy_len_extra_bits: 0x01, |
839 | | distance_code: 0, |
840 | | context: 0x03, |
841 | | insert_len_offset: 0x0003, |
842 | | copy_len_offset: 0x000c, |
843 | | }, |
844 | | CmdLutElement { |
845 | | insert_len_extra_bits: 0x00, |
846 | | copy_len_extra_bits: 0x02, |
847 | | distance_code: 0, |
848 | | context: 0x03, |
849 | | insert_len_offset: 0x0003, |
850 | | copy_len_offset: 0x000e, |
851 | | }, |
852 | | CmdLutElement { |
853 | | insert_len_extra_bits: 0x00, |
854 | | copy_len_extra_bits: 0x02, |
855 | | distance_code: 0, |
856 | | context: 0x03, |
857 | | insert_len_offset: 0x0003, |
858 | | copy_len_offset: 0x0012, |
859 | | }, |
860 | | CmdLutElement { |
861 | | insert_len_extra_bits: 0x00, |
862 | | copy_len_extra_bits: 0x03, |
863 | | distance_code: 0, |
864 | | context: 0x03, |
865 | | insert_len_offset: 0x0003, |
866 | | copy_len_offset: 0x0016, |
867 | | }, |
868 | | CmdLutElement { |
869 | | insert_len_extra_bits: 0x00, |
870 | | copy_len_extra_bits: 0x03, |
871 | | distance_code: 0, |
872 | | context: 0x03, |
873 | | insert_len_offset: 0x0003, |
874 | | copy_len_offset: 0x001e, |
875 | | }, |
876 | | CmdLutElement { |
877 | | insert_len_extra_bits: 0x00, |
878 | | copy_len_extra_bits: 0x04, |
879 | | distance_code: 0, |
880 | | context: 0x03, |
881 | | insert_len_offset: 0x0003, |
882 | | copy_len_offset: 0x0026, |
883 | | }, |
884 | | CmdLutElement { |
885 | | insert_len_extra_bits: 0x00, |
886 | | copy_len_extra_bits: 0x04, |
887 | | distance_code: 0, |
888 | | context: 0x03, |
889 | | insert_len_offset: 0x0003, |
890 | | copy_len_offset: 0x0036, |
891 | | }, |
892 | | CmdLutElement { |
893 | | insert_len_extra_bits: 0x00, |
894 | | copy_len_extra_bits: 0x01, |
895 | | distance_code: 0, |
896 | | context: 0x03, |
897 | | insert_len_offset: 0x0004, |
898 | | copy_len_offset: 0x000a, |
899 | | }, |
900 | | CmdLutElement { |
901 | | insert_len_extra_bits: 0x00, |
902 | | copy_len_extra_bits: 0x01, |
903 | | distance_code: 0, |
904 | | context: 0x03, |
905 | | insert_len_offset: 0x0004, |
906 | | copy_len_offset: 0x000c, |
907 | | }, |
908 | | CmdLutElement { |
909 | | insert_len_extra_bits: 0x00, |
910 | | copy_len_extra_bits: 0x02, |
911 | | distance_code: 0, |
912 | | context: 0x03, |
913 | | insert_len_offset: 0x0004, |
914 | | copy_len_offset: 0x000e, |
915 | | }, |
916 | | CmdLutElement { |
917 | | insert_len_extra_bits: 0x00, |
918 | | copy_len_extra_bits: 0x02, |
919 | | distance_code: 0, |
920 | | context: 0x03, |
921 | | insert_len_offset: 0x0004, |
922 | | copy_len_offset: 0x0012, |
923 | | }, |
924 | | CmdLutElement { |
925 | | insert_len_extra_bits: 0x00, |
926 | | copy_len_extra_bits: 0x03, |
927 | | distance_code: 0, |
928 | | context: 0x03, |
929 | | insert_len_offset: 0x0004, |
930 | | copy_len_offset: 0x0016, |
931 | | }, |
932 | | CmdLutElement { |
933 | | insert_len_extra_bits: 0x00, |
934 | | copy_len_extra_bits: 0x03, |
935 | | distance_code: 0, |
936 | | context: 0x03, |
937 | | insert_len_offset: 0x0004, |
938 | | copy_len_offset: 0x001e, |
939 | | }, |
940 | | CmdLutElement { |
941 | | insert_len_extra_bits: 0x00, |
942 | | copy_len_extra_bits: 0x04, |
943 | | distance_code: 0, |
944 | | context: 0x03, |
945 | | insert_len_offset: 0x0004, |
946 | | copy_len_offset: 0x0026, |
947 | | }, |
948 | | CmdLutElement { |
949 | | insert_len_extra_bits: 0x00, |
950 | | copy_len_extra_bits: 0x04, |
951 | | distance_code: 0, |
952 | | context: 0x03, |
953 | | insert_len_offset: 0x0004, |
954 | | copy_len_offset: 0x0036, |
955 | | }, |
956 | | CmdLutElement { |
957 | | insert_len_extra_bits: 0x00, |
958 | | copy_len_extra_bits: 0x01, |
959 | | distance_code: 0, |
960 | | context: 0x03, |
961 | | insert_len_offset: 0x0005, |
962 | | copy_len_offset: 0x000a, |
963 | | }, |
964 | | CmdLutElement { |
965 | | insert_len_extra_bits: 0x00, |
966 | | copy_len_extra_bits: 0x01, |
967 | | distance_code: 0, |
968 | | context: 0x03, |
969 | | insert_len_offset: 0x0005, |
970 | | copy_len_offset: 0x000c, |
971 | | }, |
972 | | CmdLutElement { |
973 | | insert_len_extra_bits: 0x00, |
974 | | copy_len_extra_bits: 0x02, |
975 | | distance_code: 0, |
976 | | context: 0x03, |
977 | | insert_len_offset: 0x0005, |
978 | | copy_len_offset: 0x000e, |
979 | | }, |
980 | | CmdLutElement { |
981 | | insert_len_extra_bits: 0x00, |
982 | | copy_len_extra_bits: 0x02, |
983 | | distance_code: 0, |
984 | | context: 0x03, |
985 | | insert_len_offset: 0x0005, |
986 | | copy_len_offset: 0x0012, |
987 | | }, |
988 | | CmdLutElement { |
989 | | insert_len_extra_bits: 0x00, |
990 | | copy_len_extra_bits: 0x03, |
991 | | distance_code: 0, |
992 | | context: 0x03, |
993 | | insert_len_offset: 0x0005, |
994 | | copy_len_offset: 0x0016, |
995 | | }, |
996 | | CmdLutElement { |
997 | | insert_len_extra_bits: 0x00, |
998 | | copy_len_extra_bits: 0x03, |
999 | | distance_code: 0, |
1000 | | context: 0x03, |
1001 | | insert_len_offset: 0x0005, |
1002 | | copy_len_offset: 0x001e, |
1003 | | }, |
1004 | | CmdLutElement { |
1005 | | insert_len_extra_bits: 0x00, |
1006 | | copy_len_extra_bits: 0x04, |
1007 | | distance_code: 0, |
1008 | | context: 0x03, |
1009 | | insert_len_offset: 0x0005, |
1010 | | copy_len_offset: 0x0026, |
1011 | | }, |
1012 | | CmdLutElement { |
1013 | | insert_len_extra_bits: 0x00, |
1014 | | copy_len_extra_bits: 0x04, |
1015 | | distance_code: 0, |
1016 | | context: 0x03, |
1017 | | insert_len_offset: 0x0005, |
1018 | | copy_len_offset: 0x0036, |
1019 | | }, |
1020 | | CmdLutElement { |
1021 | | insert_len_extra_bits: 0x01, |
1022 | | copy_len_extra_bits: 0x01, |
1023 | | distance_code: 0, |
1024 | | context: 0x03, |
1025 | | insert_len_offset: 0x0006, |
1026 | | copy_len_offset: 0x000a, |
1027 | | }, |
1028 | | CmdLutElement { |
1029 | | insert_len_extra_bits: 0x01, |
1030 | | copy_len_extra_bits: 0x01, |
1031 | | distance_code: 0, |
1032 | | context: 0x03, |
1033 | | insert_len_offset: 0x0006, |
1034 | | copy_len_offset: 0x000c, |
1035 | | }, |
1036 | | CmdLutElement { |
1037 | | insert_len_extra_bits: 0x01, |
1038 | | copy_len_extra_bits: 0x02, |
1039 | | distance_code: 0, |
1040 | | context: 0x03, |
1041 | | insert_len_offset: 0x0006, |
1042 | | copy_len_offset: 0x000e, |
1043 | | }, |
1044 | | CmdLutElement { |
1045 | | insert_len_extra_bits: 0x01, |
1046 | | copy_len_extra_bits: 0x02, |
1047 | | distance_code: 0, |
1048 | | context: 0x03, |
1049 | | insert_len_offset: 0x0006, |
1050 | | copy_len_offset: 0x0012, |
1051 | | }, |
1052 | | CmdLutElement { |
1053 | | insert_len_extra_bits: 0x01, |
1054 | | copy_len_extra_bits: 0x03, |
1055 | | distance_code: 0, |
1056 | | context: 0x03, |
1057 | | insert_len_offset: 0x0006, |
1058 | | copy_len_offset: 0x0016, |
1059 | | }, |
1060 | | CmdLutElement { |
1061 | | insert_len_extra_bits: 0x01, |
1062 | | copy_len_extra_bits: 0x03, |
1063 | | distance_code: 0, |
1064 | | context: 0x03, |
1065 | | insert_len_offset: 0x0006, |
1066 | | copy_len_offset: 0x001e, |
1067 | | }, |
1068 | | CmdLutElement { |
1069 | | insert_len_extra_bits: 0x01, |
1070 | | copy_len_extra_bits: 0x04, |
1071 | | distance_code: 0, |
1072 | | context: 0x03, |
1073 | | insert_len_offset: 0x0006, |
1074 | | copy_len_offset: 0x0026, |
1075 | | }, |
1076 | | CmdLutElement { |
1077 | | insert_len_extra_bits: 0x01, |
1078 | | copy_len_extra_bits: 0x04, |
1079 | | distance_code: 0, |
1080 | | context: 0x03, |
1081 | | insert_len_offset: 0x0006, |
1082 | | copy_len_offset: 0x0036, |
1083 | | }, |
1084 | | CmdLutElement { |
1085 | | insert_len_extra_bits: 0x01, |
1086 | | copy_len_extra_bits: 0x01, |
1087 | | distance_code: 0, |
1088 | | context: 0x03, |
1089 | | insert_len_offset: 0x0008, |
1090 | | copy_len_offset: 0x000a, |
1091 | | }, |
1092 | | CmdLutElement { |
1093 | | insert_len_extra_bits: 0x01, |
1094 | | copy_len_extra_bits: 0x01, |
1095 | | distance_code: 0, |
1096 | | context: 0x03, |
1097 | | insert_len_offset: 0x0008, |
1098 | | copy_len_offset: 0x000c, |
1099 | | }, |
1100 | | CmdLutElement { |
1101 | | insert_len_extra_bits: 0x01, |
1102 | | copy_len_extra_bits: 0x02, |
1103 | | distance_code: 0, |
1104 | | context: 0x03, |
1105 | | insert_len_offset: 0x0008, |
1106 | | copy_len_offset: 0x000e, |
1107 | | }, |
1108 | | CmdLutElement { |
1109 | | insert_len_extra_bits: 0x01, |
1110 | | copy_len_extra_bits: 0x02, |
1111 | | distance_code: 0, |
1112 | | context: 0x03, |
1113 | | insert_len_offset: 0x0008, |
1114 | | copy_len_offset: 0x0012, |
1115 | | }, |
1116 | | CmdLutElement { |
1117 | | insert_len_extra_bits: 0x01, |
1118 | | copy_len_extra_bits: 0x03, |
1119 | | distance_code: 0, |
1120 | | context: 0x03, |
1121 | | insert_len_offset: 0x0008, |
1122 | | copy_len_offset: 0x0016, |
1123 | | }, |
1124 | | CmdLutElement { |
1125 | | insert_len_extra_bits: 0x01, |
1126 | | copy_len_extra_bits: 0x03, |
1127 | | distance_code: 0, |
1128 | | context: 0x03, |
1129 | | insert_len_offset: 0x0008, |
1130 | | copy_len_offset: 0x001e, |
1131 | | }, |
1132 | | CmdLutElement { |
1133 | | insert_len_extra_bits: 0x01, |
1134 | | copy_len_extra_bits: 0x04, |
1135 | | distance_code: 0, |
1136 | | context: 0x03, |
1137 | | insert_len_offset: 0x0008, |
1138 | | copy_len_offset: 0x0026, |
1139 | | }, |
1140 | | CmdLutElement { |
1141 | | insert_len_extra_bits: 0x01, |
1142 | | copy_len_extra_bits: 0x04, |
1143 | | distance_code: 0, |
1144 | | context: 0x03, |
1145 | | insert_len_offset: 0x0008, |
1146 | | copy_len_offset: 0x0036, |
1147 | | }, |
1148 | | CmdLutElement { |
1149 | | insert_len_extra_bits: 0x00, |
1150 | | copy_len_extra_bits: 0x00, |
1151 | | distance_code: -1, |
1152 | | context: 0x00, |
1153 | | insert_len_offset: 0x0000, |
1154 | | copy_len_offset: 0x0002, |
1155 | | }, |
1156 | | CmdLutElement { |
1157 | | insert_len_extra_bits: 0x00, |
1158 | | copy_len_extra_bits: 0x00, |
1159 | | distance_code: -1, |
1160 | | context: 0x01, |
1161 | | insert_len_offset: 0x0000, |
1162 | | copy_len_offset: 0x0003, |
1163 | | }, |
1164 | | CmdLutElement { |
1165 | | insert_len_extra_bits: 0x00, |
1166 | | copy_len_extra_bits: 0x00, |
1167 | | distance_code: -1, |
1168 | | context: 0x02, |
1169 | | insert_len_offset: 0x0000, |
1170 | | copy_len_offset: 0x0004, |
1171 | | }, |
1172 | | CmdLutElement { |
1173 | | insert_len_extra_bits: 0x00, |
1174 | | copy_len_extra_bits: 0x00, |
1175 | | distance_code: -1, |
1176 | | context: 0x03, |
1177 | | insert_len_offset: 0x0000, |
1178 | | copy_len_offset: 0x0005, |
1179 | | }, |
1180 | | CmdLutElement { |
1181 | | insert_len_extra_bits: 0x00, |
1182 | | copy_len_extra_bits: 0x00, |
1183 | | distance_code: -1, |
1184 | | context: 0x03, |
1185 | | insert_len_offset: 0x0000, |
1186 | | copy_len_offset: 0x0006, |
1187 | | }, |
1188 | | CmdLutElement { |
1189 | | insert_len_extra_bits: 0x00, |
1190 | | copy_len_extra_bits: 0x00, |
1191 | | distance_code: -1, |
1192 | | context: 0x03, |
1193 | | insert_len_offset: 0x0000, |
1194 | | copy_len_offset: 0x0007, |
1195 | | }, |
1196 | | CmdLutElement { |
1197 | | insert_len_extra_bits: 0x00, |
1198 | | copy_len_extra_bits: 0x00, |
1199 | | distance_code: -1, |
1200 | | context: 0x03, |
1201 | | insert_len_offset: 0x0000, |
1202 | | copy_len_offset: 0x0008, |
1203 | | }, |
1204 | | CmdLutElement { |
1205 | | insert_len_extra_bits: 0x00, |
1206 | | copy_len_extra_bits: 0x00, |
1207 | | distance_code: -1, |
1208 | | context: 0x03, |
1209 | | insert_len_offset: 0x0000, |
1210 | | copy_len_offset: 0x0009, |
1211 | | }, |
1212 | | CmdLutElement { |
1213 | | insert_len_extra_bits: 0x00, |
1214 | | copy_len_extra_bits: 0x00, |
1215 | | distance_code: -1, |
1216 | | context: 0x00, |
1217 | | insert_len_offset: 0x0001, |
1218 | | copy_len_offset: 0x0002, |
1219 | | }, |
1220 | | CmdLutElement { |
1221 | | insert_len_extra_bits: 0x00, |
1222 | | copy_len_extra_bits: 0x00, |
1223 | | distance_code: -1, |
1224 | | context: 0x01, |
1225 | | insert_len_offset: 0x0001, |
1226 | | copy_len_offset: 0x0003, |
1227 | | }, |
1228 | | CmdLutElement { |
1229 | | insert_len_extra_bits: 0x00, |
1230 | | copy_len_extra_bits: 0x00, |
1231 | | distance_code: -1, |
1232 | | context: 0x02, |
1233 | | insert_len_offset: 0x0001, |
1234 | | copy_len_offset: 0x0004, |
1235 | | }, |
1236 | | CmdLutElement { |
1237 | | insert_len_extra_bits: 0x00, |
1238 | | copy_len_extra_bits: 0x00, |
1239 | | distance_code: -1, |
1240 | | context: 0x03, |
1241 | | insert_len_offset: 0x0001, |
1242 | | copy_len_offset: 0x0005, |
1243 | | }, |
1244 | | CmdLutElement { |
1245 | | insert_len_extra_bits: 0x00, |
1246 | | copy_len_extra_bits: 0x00, |
1247 | | distance_code: -1, |
1248 | | context: 0x03, |
1249 | | insert_len_offset: 0x0001, |
1250 | | copy_len_offset: 0x0006, |
1251 | | }, |
1252 | | CmdLutElement { |
1253 | | insert_len_extra_bits: 0x00, |
1254 | | copy_len_extra_bits: 0x00, |
1255 | | distance_code: -1, |
1256 | | context: 0x03, |
1257 | | insert_len_offset: 0x0001, |
1258 | | copy_len_offset: 0x0007, |
1259 | | }, |
1260 | | CmdLutElement { |
1261 | | insert_len_extra_bits: 0x00, |
1262 | | copy_len_extra_bits: 0x00, |
1263 | | distance_code: -1, |
1264 | | context: 0x03, |
1265 | | insert_len_offset: 0x0001, |
1266 | | copy_len_offset: 0x0008, |
1267 | | }, |
1268 | | CmdLutElement { |
1269 | | insert_len_extra_bits: 0x00, |
1270 | | copy_len_extra_bits: 0x00, |
1271 | | distance_code: -1, |
1272 | | context: 0x03, |
1273 | | insert_len_offset: 0x0001, |
1274 | | copy_len_offset: 0x0009, |
1275 | | }, |
1276 | | CmdLutElement { |
1277 | | insert_len_extra_bits: 0x00, |
1278 | | copy_len_extra_bits: 0x00, |
1279 | | distance_code: -1, |
1280 | | context: 0x00, |
1281 | | insert_len_offset: 0x0002, |
1282 | | copy_len_offset: 0x0002, |
1283 | | }, |
1284 | | CmdLutElement { |
1285 | | insert_len_extra_bits: 0x00, |
1286 | | copy_len_extra_bits: 0x00, |
1287 | | distance_code: -1, |
1288 | | context: 0x01, |
1289 | | insert_len_offset: 0x0002, |
1290 | | copy_len_offset: 0x0003, |
1291 | | }, |
1292 | | CmdLutElement { |
1293 | | insert_len_extra_bits: 0x00, |
1294 | | copy_len_extra_bits: 0x00, |
1295 | | distance_code: -1, |
1296 | | context: 0x02, |
1297 | | insert_len_offset: 0x0002, |
1298 | | copy_len_offset: 0x0004, |
1299 | | }, |
1300 | | CmdLutElement { |
1301 | | insert_len_extra_bits: 0x00, |
1302 | | copy_len_extra_bits: 0x00, |
1303 | | distance_code: -1, |
1304 | | context: 0x03, |
1305 | | insert_len_offset: 0x0002, |
1306 | | copy_len_offset: 0x0005, |
1307 | | }, |
1308 | | CmdLutElement { |
1309 | | insert_len_extra_bits: 0x00, |
1310 | | copy_len_extra_bits: 0x00, |
1311 | | distance_code: -1, |
1312 | | context: 0x03, |
1313 | | insert_len_offset: 0x0002, |
1314 | | copy_len_offset: 0x0006, |
1315 | | }, |
1316 | | CmdLutElement { |
1317 | | insert_len_extra_bits: 0x00, |
1318 | | copy_len_extra_bits: 0x00, |
1319 | | distance_code: -1, |
1320 | | context: 0x03, |
1321 | | insert_len_offset: 0x0002, |
1322 | | copy_len_offset: 0x0007, |
1323 | | }, |
1324 | | CmdLutElement { |
1325 | | insert_len_extra_bits: 0x00, |
1326 | | copy_len_extra_bits: 0x00, |
1327 | | distance_code: -1, |
1328 | | context: 0x03, |
1329 | | insert_len_offset: 0x0002, |
1330 | | copy_len_offset: 0x0008, |
1331 | | }, |
1332 | | CmdLutElement { |
1333 | | insert_len_extra_bits: 0x00, |
1334 | | copy_len_extra_bits: 0x00, |
1335 | | distance_code: -1, |
1336 | | context: 0x03, |
1337 | | insert_len_offset: 0x0002, |
1338 | | copy_len_offset: 0x0009, |
1339 | | }, |
1340 | | CmdLutElement { |
1341 | | insert_len_extra_bits: 0x00, |
1342 | | copy_len_extra_bits: 0x00, |
1343 | | distance_code: -1, |
1344 | | context: 0x00, |
1345 | | insert_len_offset: 0x0003, |
1346 | | copy_len_offset: 0x0002, |
1347 | | }, |
1348 | | CmdLutElement { |
1349 | | insert_len_extra_bits: 0x00, |
1350 | | copy_len_extra_bits: 0x00, |
1351 | | distance_code: -1, |
1352 | | context: 0x01, |
1353 | | insert_len_offset: 0x0003, |
1354 | | copy_len_offset: 0x0003, |
1355 | | }, |
1356 | | CmdLutElement { |
1357 | | insert_len_extra_bits: 0x00, |
1358 | | copy_len_extra_bits: 0x00, |
1359 | | distance_code: -1, |
1360 | | context: 0x02, |
1361 | | insert_len_offset: 0x0003, |
1362 | | copy_len_offset: 0x0004, |
1363 | | }, |
1364 | | CmdLutElement { |
1365 | | insert_len_extra_bits: 0x00, |
1366 | | copy_len_extra_bits: 0x00, |
1367 | | distance_code: -1, |
1368 | | context: 0x03, |
1369 | | insert_len_offset: 0x0003, |
1370 | | copy_len_offset: 0x0005, |
1371 | | }, |
1372 | | CmdLutElement { |
1373 | | insert_len_extra_bits: 0x00, |
1374 | | copy_len_extra_bits: 0x00, |
1375 | | distance_code: -1, |
1376 | | context: 0x03, |
1377 | | insert_len_offset: 0x0003, |
1378 | | copy_len_offset: 0x0006, |
1379 | | }, |
1380 | | CmdLutElement { |
1381 | | insert_len_extra_bits: 0x00, |
1382 | | copy_len_extra_bits: 0x00, |
1383 | | distance_code: -1, |
1384 | | context: 0x03, |
1385 | | insert_len_offset: 0x0003, |
1386 | | copy_len_offset: 0x0007, |
1387 | | }, |
1388 | | CmdLutElement { |
1389 | | insert_len_extra_bits: 0x00, |
1390 | | copy_len_extra_bits: 0x00, |
1391 | | distance_code: -1, |
1392 | | context: 0x03, |
1393 | | insert_len_offset: 0x0003, |
1394 | | copy_len_offset: 0x0008, |
1395 | | }, |
1396 | | CmdLutElement { |
1397 | | insert_len_extra_bits: 0x00, |
1398 | | copy_len_extra_bits: 0x00, |
1399 | | distance_code: -1, |
1400 | | context: 0x03, |
1401 | | insert_len_offset: 0x0003, |
1402 | | copy_len_offset: 0x0009, |
1403 | | }, |
1404 | | CmdLutElement { |
1405 | | insert_len_extra_bits: 0x00, |
1406 | | copy_len_extra_bits: 0x00, |
1407 | | distance_code: -1, |
1408 | | context: 0x00, |
1409 | | insert_len_offset: 0x0004, |
1410 | | copy_len_offset: 0x0002, |
1411 | | }, |
1412 | | CmdLutElement { |
1413 | | insert_len_extra_bits: 0x00, |
1414 | | copy_len_extra_bits: 0x00, |
1415 | | distance_code: -1, |
1416 | | context: 0x01, |
1417 | | insert_len_offset: 0x0004, |
1418 | | copy_len_offset: 0x0003, |
1419 | | }, |
1420 | | CmdLutElement { |
1421 | | insert_len_extra_bits: 0x00, |
1422 | | copy_len_extra_bits: 0x00, |
1423 | | distance_code: -1, |
1424 | | context: 0x02, |
1425 | | insert_len_offset: 0x0004, |
1426 | | copy_len_offset: 0x0004, |
1427 | | }, |
1428 | | CmdLutElement { |
1429 | | insert_len_extra_bits: 0x00, |
1430 | | copy_len_extra_bits: 0x00, |
1431 | | distance_code: -1, |
1432 | | context: 0x03, |
1433 | | insert_len_offset: 0x0004, |
1434 | | copy_len_offset: 0x0005, |
1435 | | }, |
1436 | | CmdLutElement { |
1437 | | insert_len_extra_bits: 0x00, |
1438 | | copy_len_extra_bits: 0x00, |
1439 | | distance_code: -1, |
1440 | | context: 0x03, |
1441 | | insert_len_offset: 0x0004, |
1442 | | copy_len_offset: 0x0006, |
1443 | | }, |
1444 | | CmdLutElement { |
1445 | | insert_len_extra_bits: 0x00, |
1446 | | copy_len_extra_bits: 0x00, |
1447 | | distance_code: -1, |
1448 | | context: 0x03, |
1449 | | insert_len_offset: 0x0004, |
1450 | | copy_len_offset: 0x0007, |
1451 | | }, |
1452 | | CmdLutElement { |
1453 | | insert_len_extra_bits: 0x00, |
1454 | | copy_len_extra_bits: 0x00, |
1455 | | distance_code: -1, |
1456 | | context: 0x03, |
1457 | | insert_len_offset: 0x0004, |
1458 | | copy_len_offset: 0x0008, |
1459 | | }, |
1460 | | CmdLutElement { |
1461 | | insert_len_extra_bits: 0x00, |
1462 | | copy_len_extra_bits: 0x00, |
1463 | | distance_code: -1, |
1464 | | context: 0x03, |
1465 | | insert_len_offset: 0x0004, |
1466 | | copy_len_offset: 0x0009, |
1467 | | }, |
1468 | | CmdLutElement { |
1469 | | insert_len_extra_bits: 0x00, |
1470 | | copy_len_extra_bits: 0x00, |
1471 | | distance_code: -1, |
1472 | | context: 0x00, |
1473 | | insert_len_offset: 0x0005, |
1474 | | copy_len_offset: 0x0002, |
1475 | | }, |
1476 | | CmdLutElement { |
1477 | | insert_len_extra_bits: 0x00, |
1478 | | copy_len_extra_bits: 0x00, |
1479 | | distance_code: -1, |
1480 | | context: 0x01, |
1481 | | insert_len_offset: 0x0005, |
1482 | | copy_len_offset: 0x0003, |
1483 | | }, |
1484 | | CmdLutElement { |
1485 | | insert_len_extra_bits: 0x00, |
1486 | | copy_len_extra_bits: 0x00, |
1487 | | distance_code: -1, |
1488 | | context: 0x02, |
1489 | | insert_len_offset: 0x0005, |
1490 | | copy_len_offset: 0x0004, |
1491 | | }, |
1492 | | CmdLutElement { |
1493 | | insert_len_extra_bits: 0x00, |
1494 | | copy_len_extra_bits: 0x00, |
1495 | | distance_code: -1, |
1496 | | context: 0x03, |
1497 | | insert_len_offset: 0x0005, |
1498 | | copy_len_offset: 0x0005, |
1499 | | }, |
1500 | | CmdLutElement { |
1501 | | insert_len_extra_bits: 0x00, |
1502 | | copy_len_extra_bits: 0x00, |
1503 | | distance_code: -1, |
1504 | | context: 0x03, |
1505 | | insert_len_offset: 0x0005, |
1506 | | copy_len_offset: 0x0006, |
1507 | | }, |
1508 | | CmdLutElement { |
1509 | | insert_len_extra_bits: 0x00, |
1510 | | copy_len_extra_bits: 0x00, |
1511 | | distance_code: -1, |
1512 | | context: 0x03, |
1513 | | insert_len_offset: 0x0005, |
1514 | | copy_len_offset: 0x0007, |
1515 | | }, |
1516 | | CmdLutElement { |
1517 | | insert_len_extra_bits: 0x00, |
1518 | | copy_len_extra_bits: 0x00, |
1519 | | distance_code: -1, |
1520 | | context: 0x03, |
1521 | | insert_len_offset: 0x0005, |
1522 | | copy_len_offset: 0x0008, |
1523 | | }, |
1524 | | CmdLutElement { |
1525 | | insert_len_extra_bits: 0x00, |
1526 | | copy_len_extra_bits: 0x00, |
1527 | | distance_code: -1, |
1528 | | context: 0x03, |
1529 | | insert_len_offset: 0x0005, |
1530 | | copy_len_offset: 0x0009, |
1531 | | }, |
1532 | | CmdLutElement { |
1533 | | insert_len_extra_bits: 0x01, |
1534 | | copy_len_extra_bits: 0x00, |
1535 | | distance_code: -1, |
1536 | | context: 0x00, |
1537 | | insert_len_offset: 0x0006, |
1538 | | copy_len_offset: 0x0002, |
1539 | | }, |
1540 | | CmdLutElement { |
1541 | | insert_len_extra_bits: 0x01, |
1542 | | copy_len_extra_bits: 0x00, |
1543 | | distance_code: -1, |
1544 | | context: 0x01, |
1545 | | insert_len_offset: 0x0006, |
1546 | | copy_len_offset: 0x0003, |
1547 | | }, |
1548 | | CmdLutElement { |
1549 | | insert_len_extra_bits: 0x01, |
1550 | | copy_len_extra_bits: 0x00, |
1551 | | distance_code: -1, |
1552 | | context: 0x02, |
1553 | | insert_len_offset: 0x0006, |
1554 | | copy_len_offset: 0x0004, |
1555 | | }, |
1556 | | CmdLutElement { |
1557 | | insert_len_extra_bits: 0x01, |
1558 | | copy_len_extra_bits: 0x00, |
1559 | | distance_code: -1, |
1560 | | context: 0x03, |
1561 | | insert_len_offset: 0x0006, |
1562 | | copy_len_offset: 0x0005, |
1563 | | }, |
1564 | | CmdLutElement { |
1565 | | insert_len_extra_bits: 0x01, |
1566 | | copy_len_extra_bits: 0x00, |
1567 | | distance_code: -1, |
1568 | | context: 0x03, |
1569 | | insert_len_offset: 0x0006, |
1570 | | copy_len_offset: 0x0006, |
1571 | | }, |
1572 | | CmdLutElement { |
1573 | | insert_len_extra_bits: 0x01, |
1574 | | copy_len_extra_bits: 0x00, |
1575 | | distance_code: -1, |
1576 | | context: 0x03, |
1577 | | insert_len_offset: 0x0006, |
1578 | | copy_len_offset: 0x0007, |
1579 | | }, |
1580 | | CmdLutElement { |
1581 | | insert_len_extra_bits: 0x01, |
1582 | | copy_len_extra_bits: 0x00, |
1583 | | distance_code: -1, |
1584 | | context: 0x03, |
1585 | | insert_len_offset: 0x0006, |
1586 | | copy_len_offset: 0x0008, |
1587 | | }, |
1588 | | CmdLutElement { |
1589 | | insert_len_extra_bits: 0x01, |
1590 | | copy_len_extra_bits: 0x00, |
1591 | | distance_code: -1, |
1592 | | context: 0x03, |
1593 | | insert_len_offset: 0x0006, |
1594 | | copy_len_offset: 0x0009, |
1595 | | }, |
1596 | | CmdLutElement { |
1597 | | insert_len_extra_bits: 0x01, |
1598 | | copy_len_extra_bits: 0x00, |
1599 | | distance_code: -1, |
1600 | | context: 0x00, |
1601 | | insert_len_offset: 0x0008, |
1602 | | copy_len_offset: 0x0002, |
1603 | | }, |
1604 | | CmdLutElement { |
1605 | | insert_len_extra_bits: 0x01, |
1606 | | copy_len_extra_bits: 0x00, |
1607 | | distance_code: -1, |
1608 | | context: 0x01, |
1609 | | insert_len_offset: 0x0008, |
1610 | | copy_len_offset: 0x0003, |
1611 | | }, |
1612 | | CmdLutElement { |
1613 | | insert_len_extra_bits: 0x01, |
1614 | | copy_len_extra_bits: 0x00, |
1615 | | distance_code: -1, |
1616 | | context: 0x02, |
1617 | | insert_len_offset: 0x0008, |
1618 | | copy_len_offset: 0x0004, |
1619 | | }, |
1620 | | CmdLutElement { |
1621 | | insert_len_extra_bits: 0x01, |
1622 | | copy_len_extra_bits: 0x00, |
1623 | | distance_code: -1, |
1624 | | context: 0x03, |
1625 | | insert_len_offset: 0x0008, |
1626 | | copy_len_offset: 0x0005, |
1627 | | }, |
1628 | | CmdLutElement { |
1629 | | insert_len_extra_bits: 0x01, |
1630 | | copy_len_extra_bits: 0x00, |
1631 | | distance_code: -1, |
1632 | | context: 0x03, |
1633 | | insert_len_offset: 0x0008, |
1634 | | copy_len_offset: 0x0006, |
1635 | | }, |
1636 | | CmdLutElement { |
1637 | | insert_len_extra_bits: 0x01, |
1638 | | copy_len_extra_bits: 0x00, |
1639 | | distance_code: -1, |
1640 | | context: 0x03, |
1641 | | insert_len_offset: 0x0008, |
1642 | | copy_len_offset: 0x0007, |
1643 | | }, |
1644 | | CmdLutElement { |
1645 | | insert_len_extra_bits: 0x01, |
1646 | | copy_len_extra_bits: 0x00, |
1647 | | distance_code: -1, |
1648 | | context: 0x03, |
1649 | | insert_len_offset: 0x0008, |
1650 | | copy_len_offset: 0x0008, |
1651 | | }, |
1652 | | CmdLutElement { |
1653 | | insert_len_extra_bits: 0x01, |
1654 | | copy_len_extra_bits: 0x00, |
1655 | | distance_code: -1, |
1656 | | context: 0x03, |
1657 | | insert_len_offset: 0x0008, |
1658 | | copy_len_offset: 0x0009, |
1659 | | }, |
1660 | | CmdLutElement { |
1661 | | insert_len_extra_bits: 0x00, |
1662 | | copy_len_extra_bits: 0x01, |
1663 | | distance_code: -1, |
1664 | | context: 0x03, |
1665 | | insert_len_offset: 0x0000, |
1666 | | copy_len_offset: 0x000a, |
1667 | | }, |
1668 | | CmdLutElement { |
1669 | | insert_len_extra_bits: 0x00, |
1670 | | copy_len_extra_bits: 0x01, |
1671 | | distance_code: -1, |
1672 | | context: 0x03, |
1673 | | insert_len_offset: 0x0000, |
1674 | | copy_len_offset: 0x000c, |
1675 | | }, |
1676 | | CmdLutElement { |
1677 | | insert_len_extra_bits: 0x00, |
1678 | | copy_len_extra_bits: 0x02, |
1679 | | distance_code: -1, |
1680 | | context: 0x03, |
1681 | | insert_len_offset: 0x0000, |
1682 | | copy_len_offset: 0x000e, |
1683 | | }, |
1684 | | CmdLutElement { |
1685 | | insert_len_extra_bits: 0x00, |
1686 | | copy_len_extra_bits: 0x02, |
1687 | | distance_code: -1, |
1688 | | context: 0x03, |
1689 | | insert_len_offset: 0x0000, |
1690 | | copy_len_offset: 0x0012, |
1691 | | }, |
1692 | | CmdLutElement { |
1693 | | insert_len_extra_bits: 0x00, |
1694 | | copy_len_extra_bits: 0x03, |
1695 | | distance_code: -1, |
1696 | | context: 0x03, |
1697 | | insert_len_offset: 0x0000, |
1698 | | copy_len_offset: 0x0016, |
1699 | | }, |
1700 | | CmdLutElement { |
1701 | | insert_len_extra_bits: 0x00, |
1702 | | copy_len_extra_bits: 0x03, |
1703 | | distance_code: -1, |
1704 | | context: 0x03, |
1705 | | insert_len_offset: 0x0000, |
1706 | | copy_len_offset: 0x001e, |
1707 | | }, |
1708 | | CmdLutElement { |
1709 | | insert_len_extra_bits: 0x00, |
1710 | | copy_len_extra_bits: 0x04, |
1711 | | distance_code: -1, |
1712 | | context: 0x03, |
1713 | | insert_len_offset: 0x0000, |
1714 | | copy_len_offset: 0x0026, |
1715 | | }, |
1716 | | CmdLutElement { |
1717 | | insert_len_extra_bits: 0x00, |
1718 | | copy_len_extra_bits: 0x04, |
1719 | | distance_code: -1, |
1720 | | context: 0x03, |
1721 | | insert_len_offset: 0x0000, |
1722 | | copy_len_offset: 0x0036, |
1723 | | }, |
1724 | | CmdLutElement { |
1725 | | insert_len_extra_bits: 0x00, |
1726 | | copy_len_extra_bits: 0x01, |
1727 | | distance_code: -1, |
1728 | | context: 0x03, |
1729 | | insert_len_offset: 0x0001, |
1730 | | copy_len_offset: 0x000a, |
1731 | | }, |
1732 | | CmdLutElement { |
1733 | | insert_len_extra_bits: 0x00, |
1734 | | copy_len_extra_bits: 0x01, |
1735 | | distance_code: -1, |
1736 | | context: 0x03, |
1737 | | insert_len_offset: 0x0001, |
1738 | | copy_len_offset: 0x000c, |
1739 | | }, |
1740 | | CmdLutElement { |
1741 | | insert_len_extra_bits: 0x00, |
1742 | | copy_len_extra_bits: 0x02, |
1743 | | distance_code: -1, |
1744 | | context: 0x03, |
1745 | | insert_len_offset: 0x0001, |
1746 | | copy_len_offset: 0x000e, |
1747 | | }, |
1748 | | CmdLutElement { |
1749 | | insert_len_extra_bits: 0x00, |
1750 | | copy_len_extra_bits: 0x02, |
1751 | | distance_code: -1, |
1752 | | context: 0x03, |
1753 | | insert_len_offset: 0x0001, |
1754 | | copy_len_offset: 0x0012, |
1755 | | }, |
1756 | | CmdLutElement { |
1757 | | insert_len_extra_bits: 0x00, |
1758 | | copy_len_extra_bits: 0x03, |
1759 | | distance_code: -1, |
1760 | | context: 0x03, |
1761 | | insert_len_offset: 0x0001, |
1762 | | copy_len_offset: 0x0016, |
1763 | | }, |
1764 | | CmdLutElement { |
1765 | | insert_len_extra_bits: 0x00, |
1766 | | copy_len_extra_bits: 0x03, |
1767 | | distance_code: -1, |
1768 | | context: 0x03, |
1769 | | insert_len_offset: 0x0001, |
1770 | | copy_len_offset: 0x001e, |
1771 | | }, |
1772 | | CmdLutElement { |
1773 | | insert_len_extra_bits: 0x00, |
1774 | | copy_len_extra_bits: 0x04, |
1775 | | distance_code: -1, |
1776 | | context: 0x03, |
1777 | | insert_len_offset: 0x0001, |
1778 | | copy_len_offset: 0x0026, |
1779 | | }, |
1780 | | CmdLutElement { |
1781 | | insert_len_extra_bits: 0x00, |
1782 | | copy_len_extra_bits: 0x04, |
1783 | | distance_code: -1, |
1784 | | context: 0x03, |
1785 | | insert_len_offset: 0x0001, |
1786 | | copy_len_offset: 0x0036, |
1787 | | }, |
1788 | | CmdLutElement { |
1789 | | insert_len_extra_bits: 0x00, |
1790 | | copy_len_extra_bits: 0x01, |
1791 | | distance_code: -1, |
1792 | | context: 0x03, |
1793 | | insert_len_offset: 0x0002, |
1794 | | copy_len_offset: 0x000a, |
1795 | | }, |
1796 | | CmdLutElement { |
1797 | | insert_len_extra_bits: 0x00, |
1798 | | copy_len_extra_bits: 0x01, |
1799 | | distance_code: -1, |
1800 | | context: 0x03, |
1801 | | insert_len_offset: 0x0002, |
1802 | | copy_len_offset: 0x000c, |
1803 | | }, |
1804 | | CmdLutElement { |
1805 | | insert_len_extra_bits: 0x00, |
1806 | | copy_len_extra_bits: 0x02, |
1807 | | distance_code: -1, |
1808 | | context: 0x03, |
1809 | | insert_len_offset: 0x0002, |
1810 | | copy_len_offset: 0x000e, |
1811 | | }, |
1812 | | CmdLutElement { |
1813 | | insert_len_extra_bits: 0x00, |
1814 | | copy_len_extra_bits: 0x02, |
1815 | | distance_code: -1, |
1816 | | context: 0x03, |
1817 | | insert_len_offset: 0x0002, |
1818 | | copy_len_offset: 0x0012, |
1819 | | }, |
1820 | | CmdLutElement { |
1821 | | insert_len_extra_bits: 0x00, |
1822 | | copy_len_extra_bits: 0x03, |
1823 | | distance_code: -1, |
1824 | | context: 0x03, |
1825 | | insert_len_offset: 0x0002, |
1826 | | copy_len_offset: 0x0016, |
1827 | | }, |
1828 | | CmdLutElement { |
1829 | | insert_len_extra_bits: 0x00, |
1830 | | copy_len_extra_bits: 0x03, |
1831 | | distance_code: -1, |
1832 | | context: 0x03, |
1833 | | insert_len_offset: 0x0002, |
1834 | | copy_len_offset: 0x001e, |
1835 | | }, |
1836 | | CmdLutElement { |
1837 | | insert_len_extra_bits: 0x00, |
1838 | | copy_len_extra_bits: 0x04, |
1839 | | distance_code: -1, |
1840 | | context: 0x03, |
1841 | | insert_len_offset: 0x0002, |
1842 | | copy_len_offset: 0x0026, |
1843 | | }, |
1844 | | CmdLutElement { |
1845 | | insert_len_extra_bits: 0x00, |
1846 | | copy_len_extra_bits: 0x04, |
1847 | | distance_code: -1, |
1848 | | context: 0x03, |
1849 | | insert_len_offset: 0x0002, |
1850 | | copy_len_offset: 0x0036, |
1851 | | }, |
1852 | | CmdLutElement { |
1853 | | insert_len_extra_bits: 0x00, |
1854 | | copy_len_extra_bits: 0x01, |
1855 | | distance_code: -1, |
1856 | | context: 0x03, |
1857 | | insert_len_offset: 0x0003, |
1858 | | copy_len_offset: 0x000a, |
1859 | | }, |
1860 | | CmdLutElement { |
1861 | | insert_len_extra_bits: 0x00, |
1862 | | copy_len_extra_bits: 0x01, |
1863 | | distance_code: -1, |
1864 | | context: 0x03, |
1865 | | insert_len_offset: 0x0003, |
1866 | | copy_len_offset: 0x000c, |
1867 | | }, |
1868 | | CmdLutElement { |
1869 | | insert_len_extra_bits: 0x00, |
1870 | | copy_len_extra_bits: 0x02, |
1871 | | distance_code: -1, |
1872 | | context: 0x03, |
1873 | | insert_len_offset: 0x0003, |
1874 | | copy_len_offset: 0x000e, |
1875 | | }, |
1876 | | CmdLutElement { |
1877 | | insert_len_extra_bits: 0x00, |
1878 | | copy_len_extra_bits: 0x02, |
1879 | | distance_code: -1, |
1880 | | context: 0x03, |
1881 | | insert_len_offset: 0x0003, |
1882 | | copy_len_offset: 0x0012, |
1883 | | }, |
1884 | | CmdLutElement { |
1885 | | insert_len_extra_bits: 0x00, |
1886 | | copy_len_extra_bits: 0x03, |
1887 | | distance_code: -1, |
1888 | | context: 0x03, |
1889 | | insert_len_offset: 0x0003, |
1890 | | copy_len_offset: 0x0016, |
1891 | | }, |
1892 | | CmdLutElement { |
1893 | | insert_len_extra_bits: 0x00, |
1894 | | copy_len_extra_bits: 0x03, |
1895 | | distance_code: -1, |
1896 | | context: 0x03, |
1897 | | insert_len_offset: 0x0003, |
1898 | | copy_len_offset: 0x001e, |
1899 | | }, |
1900 | | CmdLutElement { |
1901 | | insert_len_extra_bits: 0x00, |
1902 | | copy_len_extra_bits: 0x04, |
1903 | | distance_code: -1, |
1904 | | context: 0x03, |
1905 | | insert_len_offset: 0x0003, |
1906 | | copy_len_offset: 0x0026, |
1907 | | }, |
1908 | | CmdLutElement { |
1909 | | insert_len_extra_bits: 0x00, |
1910 | | copy_len_extra_bits: 0x04, |
1911 | | distance_code: -1, |
1912 | | context: 0x03, |
1913 | | insert_len_offset: 0x0003, |
1914 | | copy_len_offset: 0x0036, |
1915 | | }, |
1916 | | CmdLutElement { |
1917 | | insert_len_extra_bits: 0x00, |
1918 | | copy_len_extra_bits: 0x01, |
1919 | | distance_code: -1, |
1920 | | context: 0x03, |
1921 | | insert_len_offset: 0x0004, |
1922 | | copy_len_offset: 0x000a, |
1923 | | }, |
1924 | | CmdLutElement { |
1925 | | insert_len_extra_bits: 0x00, |
1926 | | copy_len_extra_bits: 0x01, |
1927 | | distance_code: -1, |
1928 | | context: 0x03, |
1929 | | insert_len_offset: 0x0004, |
1930 | | copy_len_offset: 0x000c, |
1931 | | }, |
1932 | | CmdLutElement { |
1933 | | insert_len_extra_bits: 0x00, |
1934 | | copy_len_extra_bits: 0x02, |
1935 | | distance_code: -1, |
1936 | | context: 0x03, |
1937 | | insert_len_offset: 0x0004, |
1938 | | copy_len_offset: 0x000e, |
1939 | | }, |
1940 | | CmdLutElement { |
1941 | | insert_len_extra_bits: 0x00, |
1942 | | copy_len_extra_bits: 0x02, |
1943 | | distance_code: -1, |
1944 | | context: 0x03, |
1945 | | insert_len_offset: 0x0004, |
1946 | | copy_len_offset: 0x0012, |
1947 | | }, |
1948 | | CmdLutElement { |
1949 | | insert_len_extra_bits: 0x00, |
1950 | | copy_len_extra_bits: 0x03, |
1951 | | distance_code: -1, |
1952 | | context: 0x03, |
1953 | | insert_len_offset: 0x0004, |
1954 | | copy_len_offset: 0x0016, |
1955 | | }, |
1956 | | CmdLutElement { |
1957 | | insert_len_extra_bits: 0x00, |
1958 | | copy_len_extra_bits: 0x03, |
1959 | | distance_code: -1, |
1960 | | context: 0x03, |
1961 | | insert_len_offset: 0x0004, |
1962 | | copy_len_offset: 0x001e, |
1963 | | }, |
1964 | | CmdLutElement { |
1965 | | insert_len_extra_bits: 0x00, |
1966 | | copy_len_extra_bits: 0x04, |
1967 | | distance_code: -1, |
1968 | | context: 0x03, |
1969 | | insert_len_offset: 0x0004, |
1970 | | copy_len_offset: 0x0026, |
1971 | | }, |
1972 | | CmdLutElement { |
1973 | | insert_len_extra_bits: 0x00, |
1974 | | copy_len_extra_bits: 0x04, |
1975 | | distance_code: -1, |
1976 | | context: 0x03, |
1977 | | insert_len_offset: 0x0004, |
1978 | | copy_len_offset: 0x0036, |
1979 | | }, |
1980 | | CmdLutElement { |
1981 | | insert_len_extra_bits: 0x00, |
1982 | | copy_len_extra_bits: 0x01, |
1983 | | distance_code: -1, |
1984 | | context: 0x03, |
1985 | | insert_len_offset: 0x0005, |
1986 | | copy_len_offset: 0x000a, |
1987 | | }, |
1988 | | CmdLutElement { |
1989 | | insert_len_extra_bits: 0x00, |
1990 | | copy_len_extra_bits: 0x01, |
1991 | | distance_code: -1, |
1992 | | context: 0x03, |
1993 | | insert_len_offset: 0x0005, |
1994 | | copy_len_offset: 0x000c, |
1995 | | }, |
1996 | | CmdLutElement { |
1997 | | insert_len_extra_bits: 0x00, |
1998 | | copy_len_extra_bits: 0x02, |
1999 | | distance_code: -1, |
2000 | | context: 0x03, |
2001 | | insert_len_offset: 0x0005, |
2002 | | copy_len_offset: 0x000e, |
2003 | | }, |
2004 | | CmdLutElement { |
2005 | | insert_len_extra_bits: 0x00, |
2006 | | copy_len_extra_bits: 0x02, |
2007 | | distance_code: -1, |
2008 | | context: 0x03, |
2009 | | insert_len_offset: 0x0005, |
2010 | | copy_len_offset: 0x0012, |
2011 | | }, |
2012 | | CmdLutElement { |
2013 | | insert_len_extra_bits: 0x00, |
2014 | | copy_len_extra_bits: 0x03, |
2015 | | distance_code: -1, |
2016 | | context: 0x03, |
2017 | | insert_len_offset: 0x0005, |
2018 | | copy_len_offset: 0x0016, |
2019 | | }, |
2020 | | CmdLutElement { |
2021 | | insert_len_extra_bits: 0x00, |
2022 | | copy_len_extra_bits: 0x03, |
2023 | | distance_code: -1, |
2024 | | context: 0x03, |
2025 | | insert_len_offset: 0x0005, |
2026 | | copy_len_offset: 0x001e, |
2027 | | }, |
2028 | | CmdLutElement { |
2029 | | insert_len_extra_bits: 0x00, |
2030 | | copy_len_extra_bits: 0x04, |
2031 | | distance_code: -1, |
2032 | | context: 0x03, |
2033 | | insert_len_offset: 0x0005, |
2034 | | copy_len_offset: 0x0026, |
2035 | | }, |
2036 | | CmdLutElement { |
2037 | | insert_len_extra_bits: 0x00, |
2038 | | copy_len_extra_bits: 0x04, |
2039 | | distance_code: -1, |
2040 | | context: 0x03, |
2041 | | insert_len_offset: 0x0005, |
2042 | | copy_len_offset: 0x0036, |
2043 | | }, |
2044 | | CmdLutElement { |
2045 | | insert_len_extra_bits: 0x01, |
2046 | | copy_len_extra_bits: 0x01, |
2047 | | distance_code: -1, |
2048 | | context: 0x03, |
2049 | | insert_len_offset: 0x0006, |
2050 | | copy_len_offset: 0x000a, |
2051 | | }, |
2052 | | CmdLutElement { |
2053 | | insert_len_extra_bits: 0x01, |
2054 | | copy_len_extra_bits: 0x01, |
2055 | | distance_code: -1, |
2056 | | context: 0x03, |
2057 | | insert_len_offset: 0x0006, |
2058 | | copy_len_offset: 0x000c, |
2059 | | }, |
2060 | | CmdLutElement { |
2061 | | insert_len_extra_bits: 0x01, |
2062 | | copy_len_extra_bits: 0x02, |
2063 | | distance_code: -1, |
2064 | | context: 0x03, |
2065 | | insert_len_offset: 0x0006, |
2066 | | copy_len_offset: 0x000e, |
2067 | | }, |
2068 | | CmdLutElement { |
2069 | | insert_len_extra_bits: 0x01, |
2070 | | copy_len_extra_bits: 0x02, |
2071 | | distance_code: -1, |
2072 | | context: 0x03, |
2073 | | insert_len_offset: 0x0006, |
2074 | | copy_len_offset: 0x0012, |
2075 | | }, |
2076 | | CmdLutElement { |
2077 | | insert_len_extra_bits: 0x01, |
2078 | | copy_len_extra_bits: 0x03, |
2079 | | distance_code: -1, |
2080 | | context: 0x03, |
2081 | | insert_len_offset: 0x0006, |
2082 | | copy_len_offset: 0x0016, |
2083 | | }, |
2084 | | CmdLutElement { |
2085 | | insert_len_extra_bits: 0x01, |
2086 | | copy_len_extra_bits: 0x03, |
2087 | | distance_code: -1, |
2088 | | context: 0x03, |
2089 | | insert_len_offset: 0x0006, |
2090 | | copy_len_offset: 0x001e, |
2091 | | }, |
2092 | | CmdLutElement { |
2093 | | insert_len_extra_bits: 0x01, |
2094 | | copy_len_extra_bits: 0x04, |
2095 | | distance_code: -1, |
2096 | | context: 0x03, |
2097 | | insert_len_offset: 0x0006, |
2098 | | copy_len_offset: 0x0026, |
2099 | | }, |
2100 | | CmdLutElement { |
2101 | | insert_len_extra_bits: 0x01, |
2102 | | copy_len_extra_bits: 0x04, |
2103 | | distance_code: -1, |
2104 | | context: 0x03, |
2105 | | insert_len_offset: 0x0006, |
2106 | | copy_len_offset: 0x0036, |
2107 | | }, |
2108 | | CmdLutElement { |
2109 | | insert_len_extra_bits: 0x01, |
2110 | | copy_len_extra_bits: 0x01, |
2111 | | distance_code: -1, |
2112 | | context: 0x03, |
2113 | | insert_len_offset: 0x0008, |
2114 | | copy_len_offset: 0x000a, |
2115 | | }, |
2116 | | CmdLutElement { |
2117 | | insert_len_extra_bits: 0x01, |
2118 | | copy_len_extra_bits: 0x01, |
2119 | | distance_code: -1, |
2120 | | context: 0x03, |
2121 | | insert_len_offset: 0x0008, |
2122 | | copy_len_offset: 0x000c, |
2123 | | }, |
2124 | | CmdLutElement { |
2125 | | insert_len_extra_bits: 0x01, |
2126 | | copy_len_extra_bits: 0x02, |
2127 | | distance_code: -1, |
2128 | | context: 0x03, |
2129 | | insert_len_offset: 0x0008, |
2130 | | copy_len_offset: 0x000e, |
2131 | | }, |
2132 | | CmdLutElement { |
2133 | | insert_len_extra_bits: 0x01, |
2134 | | copy_len_extra_bits: 0x02, |
2135 | | distance_code: -1, |
2136 | | context: 0x03, |
2137 | | insert_len_offset: 0x0008, |
2138 | | copy_len_offset: 0x0012, |
2139 | | }, |
2140 | | CmdLutElement { |
2141 | | insert_len_extra_bits: 0x01, |
2142 | | copy_len_extra_bits: 0x03, |
2143 | | distance_code: -1, |
2144 | | context: 0x03, |
2145 | | insert_len_offset: 0x0008, |
2146 | | copy_len_offset: 0x0016, |
2147 | | }, |
2148 | | CmdLutElement { |
2149 | | insert_len_extra_bits: 0x01, |
2150 | | copy_len_extra_bits: 0x03, |
2151 | | distance_code: -1, |
2152 | | context: 0x03, |
2153 | | insert_len_offset: 0x0008, |
2154 | | copy_len_offset: 0x001e, |
2155 | | }, |
2156 | | CmdLutElement { |
2157 | | insert_len_extra_bits: 0x01, |
2158 | | copy_len_extra_bits: 0x04, |
2159 | | distance_code: -1, |
2160 | | context: 0x03, |
2161 | | insert_len_offset: 0x0008, |
2162 | | copy_len_offset: 0x0026, |
2163 | | }, |
2164 | | CmdLutElement { |
2165 | | insert_len_extra_bits: 0x01, |
2166 | | copy_len_extra_bits: 0x04, |
2167 | | distance_code: -1, |
2168 | | context: 0x03, |
2169 | | insert_len_offset: 0x0008, |
2170 | | copy_len_offset: 0x0036, |
2171 | | }, |
2172 | | CmdLutElement { |
2173 | | insert_len_extra_bits: 0x02, |
2174 | | copy_len_extra_bits: 0x00, |
2175 | | distance_code: -1, |
2176 | | context: 0x00, |
2177 | | insert_len_offset: 0x000a, |
2178 | | copy_len_offset: 0x0002, |
2179 | | }, |
2180 | | CmdLutElement { |
2181 | | insert_len_extra_bits: 0x02, |
2182 | | copy_len_extra_bits: 0x00, |
2183 | | distance_code: -1, |
2184 | | context: 0x01, |
2185 | | insert_len_offset: 0x000a, |
2186 | | copy_len_offset: 0x0003, |
2187 | | }, |
2188 | | CmdLutElement { |
2189 | | insert_len_extra_bits: 0x02, |
2190 | | copy_len_extra_bits: 0x00, |
2191 | | distance_code: -1, |
2192 | | context: 0x02, |
2193 | | insert_len_offset: 0x000a, |
2194 | | copy_len_offset: 0x0004, |
2195 | | }, |
2196 | | CmdLutElement { |
2197 | | insert_len_extra_bits: 0x02, |
2198 | | copy_len_extra_bits: 0x00, |
2199 | | distance_code: -1, |
2200 | | context: 0x03, |
2201 | | insert_len_offset: 0x000a, |
2202 | | copy_len_offset: 0x0005, |
2203 | | }, |
2204 | | CmdLutElement { |
2205 | | insert_len_extra_bits: 0x02, |
2206 | | copy_len_extra_bits: 0x00, |
2207 | | distance_code: -1, |
2208 | | context: 0x03, |
2209 | | insert_len_offset: 0x000a, |
2210 | | copy_len_offset: 0x0006, |
2211 | | }, |
2212 | | CmdLutElement { |
2213 | | insert_len_extra_bits: 0x02, |
2214 | | copy_len_extra_bits: 0x00, |
2215 | | distance_code: -1, |
2216 | | context: 0x03, |
2217 | | insert_len_offset: 0x000a, |
2218 | | copy_len_offset: 0x0007, |
2219 | | }, |
2220 | | CmdLutElement { |
2221 | | insert_len_extra_bits: 0x02, |
2222 | | copy_len_extra_bits: 0x00, |
2223 | | distance_code: -1, |
2224 | | context: 0x03, |
2225 | | insert_len_offset: 0x000a, |
2226 | | copy_len_offset: 0x0008, |
2227 | | }, |
2228 | | CmdLutElement { |
2229 | | insert_len_extra_bits: 0x02, |
2230 | | copy_len_extra_bits: 0x00, |
2231 | | distance_code: -1, |
2232 | | context: 0x03, |
2233 | | insert_len_offset: 0x000a, |
2234 | | copy_len_offset: 0x0009, |
2235 | | }, |
2236 | | CmdLutElement { |
2237 | | insert_len_extra_bits: 0x02, |
2238 | | copy_len_extra_bits: 0x00, |
2239 | | distance_code: -1, |
2240 | | context: 0x00, |
2241 | | insert_len_offset: 0x000e, |
2242 | | copy_len_offset: 0x0002, |
2243 | | }, |
2244 | | CmdLutElement { |
2245 | | insert_len_extra_bits: 0x02, |
2246 | | copy_len_extra_bits: 0x00, |
2247 | | distance_code: -1, |
2248 | | context: 0x01, |
2249 | | insert_len_offset: 0x000e, |
2250 | | copy_len_offset: 0x0003, |
2251 | | }, |
2252 | | CmdLutElement { |
2253 | | insert_len_extra_bits: 0x02, |
2254 | | copy_len_extra_bits: 0x00, |
2255 | | distance_code: -1, |
2256 | | context: 0x02, |
2257 | | insert_len_offset: 0x000e, |
2258 | | copy_len_offset: 0x0004, |
2259 | | }, |
2260 | | CmdLutElement { |
2261 | | insert_len_extra_bits: 0x02, |
2262 | | copy_len_extra_bits: 0x00, |
2263 | | distance_code: -1, |
2264 | | context: 0x03, |
2265 | | insert_len_offset: 0x000e, |
2266 | | copy_len_offset: 0x0005, |
2267 | | }, |
2268 | | CmdLutElement { |
2269 | | insert_len_extra_bits: 0x02, |
2270 | | copy_len_extra_bits: 0x00, |
2271 | | distance_code: -1, |
2272 | | context: 0x03, |
2273 | | insert_len_offset: 0x000e, |
2274 | | copy_len_offset: 0x0006, |
2275 | | }, |
2276 | | CmdLutElement { |
2277 | | insert_len_extra_bits: 0x02, |
2278 | | copy_len_extra_bits: 0x00, |
2279 | | distance_code: -1, |
2280 | | context: 0x03, |
2281 | | insert_len_offset: 0x000e, |
2282 | | copy_len_offset: 0x0007, |
2283 | | }, |
2284 | | CmdLutElement { |
2285 | | insert_len_extra_bits: 0x02, |
2286 | | copy_len_extra_bits: 0x00, |
2287 | | distance_code: -1, |
2288 | | context: 0x03, |
2289 | | insert_len_offset: 0x000e, |
2290 | | copy_len_offset: 0x0008, |
2291 | | }, |
2292 | | CmdLutElement { |
2293 | | insert_len_extra_bits: 0x02, |
2294 | | copy_len_extra_bits: 0x00, |
2295 | | distance_code: -1, |
2296 | | context: 0x03, |
2297 | | insert_len_offset: 0x000e, |
2298 | | copy_len_offset: 0x0009, |
2299 | | }, |
2300 | | CmdLutElement { |
2301 | | insert_len_extra_bits: 0x03, |
2302 | | copy_len_extra_bits: 0x00, |
2303 | | distance_code: -1, |
2304 | | context: 0x00, |
2305 | | insert_len_offset: 0x0012, |
2306 | | copy_len_offset: 0x0002, |
2307 | | }, |
2308 | | CmdLutElement { |
2309 | | insert_len_extra_bits: 0x03, |
2310 | | copy_len_extra_bits: 0x00, |
2311 | | distance_code: -1, |
2312 | | context: 0x01, |
2313 | | insert_len_offset: 0x0012, |
2314 | | copy_len_offset: 0x0003, |
2315 | | }, |
2316 | | CmdLutElement { |
2317 | | insert_len_extra_bits: 0x03, |
2318 | | copy_len_extra_bits: 0x00, |
2319 | | distance_code: -1, |
2320 | | context: 0x02, |
2321 | | insert_len_offset: 0x0012, |
2322 | | copy_len_offset: 0x0004, |
2323 | | }, |
2324 | | CmdLutElement { |
2325 | | insert_len_extra_bits: 0x03, |
2326 | | copy_len_extra_bits: 0x00, |
2327 | | distance_code: -1, |
2328 | | context: 0x03, |
2329 | | insert_len_offset: 0x0012, |
2330 | | copy_len_offset: 0x0005, |
2331 | | }, |
2332 | | CmdLutElement { |
2333 | | insert_len_extra_bits: 0x03, |
2334 | | copy_len_extra_bits: 0x00, |
2335 | | distance_code: -1, |
2336 | | context: 0x03, |
2337 | | insert_len_offset: 0x0012, |
2338 | | copy_len_offset: 0x0006, |
2339 | | }, |
2340 | | CmdLutElement { |
2341 | | insert_len_extra_bits: 0x03, |
2342 | | copy_len_extra_bits: 0x00, |
2343 | | distance_code: -1, |
2344 | | context: 0x03, |
2345 | | insert_len_offset: 0x0012, |
2346 | | copy_len_offset: 0x0007, |
2347 | | }, |
2348 | | CmdLutElement { |
2349 | | insert_len_extra_bits: 0x03, |
2350 | | copy_len_extra_bits: 0x00, |
2351 | | distance_code: -1, |
2352 | | context: 0x03, |
2353 | | insert_len_offset: 0x0012, |
2354 | | copy_len_offset: 0x0008, |
2355 | | }, |
2356 | | CmdLutElement { |
2357 | | insert_len_extra_bits: 0x03, |
2358 | | copy_len_extra_bits: 0x00, |
2359 | | distance_code: -1, |
2360 | | context: 0x03, |
2361 | | insert_len_offset: 0x0012, |
2362 | | copy_len_offset: 0x0009, |
2363 | | }, |
2364 | | CmdLutElement { |
2365 | | insert_len_extra_bits: 0x03, |
2366 | | copy_len_extra_bits: 0x00, |
2367 | | distance_code: -1, |
2368 | | context: 0x00, |
2369 | | insert_len_offset: 0x001a, |
2370 | | copy_len_offset: 0x0002, |
2371 | | }, |
2372 | | CmdLutElement { |
2373 | | insert_len_extra_bits: 0x03, |
2374 | | copy_len_extra_bits: 0x00, |
2375 | | distance_code: -1, |
2376 | | context: 0x01, |
2377 | | insert_len_offset: 0x001a, |
2378 | | copy_len_offset: 0x0003, |
2379 | | }, |
2380 | | CmdLutElement { |
2381 | | insert_len_extra_bits: 0x03, |
2382 | | copy_len_extra_bits: 0x00, |
2383 | | distance_code: -1, |
2384 | | context: 0x02, |
2385 | | insert_len_offset: 0x001a, |
2386 | | copy_len_offset: 0x0004, |
2387 | | }, |
2388 | | CmdLutElement { |
2389 | | insert_len_extra_bits: 0x03, |
2390 | | copy_len_extra_bits: 0x00, |
2391 | | distance_code: -1, |
2392 | | context: 0x03, |
2393 | | insert_len_offset: 0x001a, |
2394 | | copy_len_offset: 0x0005, |
2395 | | }, |
2396 | | CmdLutElement { |
2397 | | insert_len_extra_bits: 0x03, |
2398 | | copy_len_extra_bits: 0x00, |
2399 | | distance_code: -1, |
2400 | | context: 0x03, |
2401 | | insert_len_offset: 0x001a, |
2402 | | copy_len_offset: 0x0006, |
2403 | | }, |
2404 | | CmdLutElement { |
2405 | | insert_len_extra_bits: 0x03, |
2406 | | copy_len_extra_bits: 0x00, |
2407 | | distance_code: -1, |
2408 | | context: 0x03, |
2409 | | insert_len_offset: 0x001a, |
2410 | | copy_len_offset: 0x0007, |
2411 | | }, |
2412 | | CmdLutElement { |
2413 | | insert_len_extra_bits: 0x03, |
2414 | | copy_len_extra_bits: 0x00, |
2415 | | distance_code: -1, |
2416 | | context: 0x03, |
2417 | | insert_len_offset: 0x001a, |
2418 | | copy_len_offset: 0x0008, |
2419 | | }, |
2420 | | CmdLutElement { |
2421 | | insert_len_extra_bits: 0x03, |
2422 | | copy_len_extra_bits: 0x00, |
2423 | | distance_code: -1, |
2424 | | context: 0x03, |
2425 | | insert_len_offset: 0x001a, |
2426 | | copy_len_offset: 0x0009, |
2427 | | }, |
2428 | | CmdLutElement { |
2429 | | insert_len_extra_bits: 0x04, |
2430 | | copy_len_extra_bits: 0x00, |
2431 | | distance_code: -1, |
2432 | | context: 0x00, |
2433 | | insert_len_offset: 0x0022, |
2434 | | copy_len_offset: 0x0002, |
2435 | | }, |
2436 | | CmdLutElement { |
2437 | | insert_len_extra_bits: 0x04, |
2438 | | copy_len_extra_bits: 0x00, |
2439 | | distance_code: -1, |
2440 | | context: 0x01, |
2441 | | insert_len_offset: 0x0022, |
2442 | | copy_len_offset: 0x0003, |
2443 | | }, |
2444 | | CmdLutElement { |
2445 | | insert_len_extra_bits: 0x04, |
2446 | | copy_len_extra_bits: 0x00, |
2447 | | distance_code: -1, |
2448 | | context: 0x02, |
2449 | | insert_len_offset: 0x0022, |
2450 | | copy_len_offset: 0x0004, |
2451 | | }, |
2452 | | CmdLutElement { |
2453 | | insert_len_extra_bits: 0x04, |
2454 | | copy_len_extra_bits: 0x00, |
2455 | | distance_code: -1, |
2456 | | context: 0x03, |
2457 | | insert_len_offset: 0x0022, |
2458 | | copy_len_offset: 0x0005, |
2459 | | }, |
2460 | | CmdLutElement { |
2461 | | insert_len_extra_bits: 0x04, |
2462 | | copy_len_extra_bits: 0x00, |
2463 | | distance_code: -1, |
2464 | | context: 0x03, |
2465 | | insert_len_offset: 0x0022, |
2466 | | copy_len_offset: 0x0006, |
2467 | | }, |
2468 | | CmdLutElement { |
2469 | | insert_len_extra_bits: 0x04, |
2470 | | copy_len_extra_bits: 0x00, |
2471 | | distance_code: -1, |
2472 | | context: 0x03, |
2473 | | insert_len_offset: 0x0022, |
2474 | | copy_len_offset: 0x0007, |
2475 | | }, |
2476 | | CmdLutElement { |
2477 | | insert_len_extra_bits: 0x04, |
2478 | | copy_len_extra_bits: 0x00, |
2479 | | distance_code: -1, |
2480 | | context: 0x03, |
2481 | | insert_len_offset: 0x0022, |
2482 | | copy_len_offset: 0x0008, |
2483 | | }, |
2484 | | CmdLutElement { |
2485 | | insert_len_extra_bits: 0x04, |
2486 | | copy_len_extra_bits: 0x00, |
2487 | | distance_code: -1, |
2488 | | context: 0x03, |
2489 | | insert_len_offset: 0x0022, |
2490 | | copy_len_offset: 0x0009, |
2491 | | }, |
2492 | | CmdLutElement { |
2493 | | insert_len_extra_bits: 0x04, |
2494 | | copy_len_extra_bits: 0x00, |
2495 | | distance_code: -1, |
2496 | | context: 0x00, |
2497 | | insert_len_offset: 0x0032, |
2498 | | copy_len_offset: 0x0002, |
2499 | | }, |
2500 | | CmdLutElement { |
2501 | | insert_len_extra_bits: 0x04, |
2502 | | copy_len_extra_bits: 0x00, |
2503 | | distance_code: -1, |
2504 | | context: 0x01, |
2505 | | insert_len_offset: 0x0032, |
2506 | | copy_len_offset: 0x0003, |
2507 | | }, |
2508 | | CmdLutElement { |
2509 | | insert_len_extra_bits: 0x04, |
2510 | | copy_len_extra_bits: 0x00, |
2511 | | distance_code: -1, |
2512 | | context: 0x02, |
2513 | | insert_len_offset: 0x0032, |
2514 | | copy_len_offset: 0x0004, |
2515 | | }, |
2516 | | CmdLutElement { |
2517 | | insert_len_extra_bits: 0x04, |
2518 | | copy_len_extra_bits: 0x00, |
2519 | | distance_code: -1, |
2520 | | context: 0x03, |
2521 | | insert_len_offset: 0x0032, |
2522 | | copy_len_offset: 0x0005, |
2523 | | }, |
2524 | | CmdLutElement { |
2525 | | insert_len_extra_bits: 0x04, |
2526 | | copy_len_extra_bits: 0x00, |
2527 | | distance_code: -1, |
2528 | | context: 0x03, |
2529 | | insert_len_offset: 0x0032, |
2530 | | copy_len_offset: 0x0006, |
2531 | | }, |
2532 | | CmdLutElement { |
2533 | | insert_len_extra_bits: 0x04, |
2534 | | copy_len_extra_bits: 0x00, |
2535 | | distance_code: -1, |
2536 | | context: 0x03, |
2537 | | insert_len_offset: 0x0032, |
2538 | | copy_len_offset: 0x0007, |
2539 | | }, |
2540 | | CmdLutElement { |
2541 | | insert_len_extra_bits: 0x04, |
2542 | | copy_len_extra_bits: 0x00, |
2543 | | distance_code: -1, |
2544 | | context: 0x03, |
2545 | | insert_len_offset: 0x0032, |
2546 | | copy_len_offset: 0x0008, |
2547 | | }, |
2548 | | CmdLutElement { |
2549 | | insert_len_extra_bits: 0x04, |
2550 | | copy_len_extra_bits: 0x00, |
2551 | | distance_code: -1, |
2552 | | context: 0x03, |
2553 | | insert_len_offset: 0x0032, |
2554 | | copy_len_offset: 0x0009, |
2555 | | }, |
2556 | | CmdLutElement { |
2557 | | insert_len_extra_bits: 0x05, |
2558 | | copy_len_extra_bits: 0x00, |
2559 | | distance_code: -1, |
2560 | | context: 0x00, |
2561 | | insert_len_offset: 0x0042, |
2562 | | copy_len_offset: 0x0002, |
2563 | | }, |
2564 | | CmdLutElement { |
2565 | | insert_len_extra_bits: 0x05, |
2566 | | copy_len_extra_bits: 0x00, |
2567 | | distance_code: -1, |
2568 | | context: 0x01, |
2569 | | insert_len_offset: 0x0042, |
2570 | | copy_len_offset: 0x0003, |
2571 | | }, |
2572 | | CmdLutElement { |
2573 | | insert_len_extra_bits: 0x05, |
2574 | | copy_len_extra_bits: 0x00, |
2575 | | distance_code: -1, |
2576 | | context: 0x02, |
2577 | | insert_len_offset: 0x0042, |
2578 | | copy_len_offset: 0x0004, |
2579 | | }, |
2580 | | CmdLutElement { |
2581 | | insert_len_extra_bits: 0x05, |
2582 | | copy_len_extra_bits: 0x00, |
2583 | | distance_code: -1, |
2584 | | context: 0x03, |
2585 | | insert_len_offset: 0x0042, |
2586 | | copy_len_offset: 0x0005, |
2587 | | }, |
2588 | | CmdLutElement { |
2589 | | insert_len_extra_bits: 0x05, |
2590 | | copy_len_extra_bits: 0x00, |
2591 | | distance_code: -1, |
2592 | | context: 0x03, |
2593 | | insert_len_offset: 0x0042, |
2594 | | copy_len_offset: 0x0006, |
2595 | | }, |
2596 | | CmdLutElement { |
2597 | | insert_len_extra_bits: 0x05, |
2598 | | copy_len_extra_bits: 0x00, |
2599 | | distance_code: -1, |
2600 | | context: 0x03, |
2601 | | insert_len_offset: 0x0042, |
2602 | | copy_len_offset: 0x0007, |
2603 | | }, |
2604 | | CmdLutElement { |
2605 | | insert_len_extra_bits: 0x05, |
2606 | | copy_len_extra_bits: 0x00, |
2607 | | distance_code: -1, |
2608 | | context: 0x03, |
2609 | | insert_len_offset: 0x0042, |
2610 | | copy_len_offset: 0x0008, |
2611 | | }, |
2612 | | CmdLutElement { |
2613 | | insert_len_extra_bits: 0x05, |
2614 | | copy_len_extra_bits: 0x00, |
2615 | | distance_code: -1, |
2616 | | context: 0x03, |
2617 | | insert_len_offset: 0x0042, |
2618 | | copy_len_offset: 0x0009, |
2619 | | }, |
2620 | | CmdLutElement { |
2621 | | insert_len_extra_bits: 0x05, |
2622 | | copy_len_extra_bits: 0x00, |
2623 | | distance_code: -1, |
2624 | | context: 0x00, |
2625 | | insert_len_offset: 0x0062, |
2626 | | copy_len_offset: 0x0002, |
2627 | | }, |
2628 | | CmdLutElement { |
2629 | | insert_len_extra_bits: 0x05, |
2630 | | copy_len_extra_bits: 0x00, |
2631 | | distance_code: -1, |
2632 | | context: 0x01, |
2633 | | insert_len_offset: 0x0062, |
2634 | | copy_len_offset: 0x0003, |
2635 | | }, |
2636 | | CmdLutElement { |
2637 | | insert_len_extra_bits: 0x05, |
2638 | | copy_len_extra_bits: 0x00, |
2639 | | distance_code: -1, |
2640 | | context: 0x02, |
2641 | | insert_len_offset: 0x0062, |
2642 | | copy_len_offset: 0x0004, |
2643 | | }, |
2644 | | CmdLutElement { |
2645 | | insert_len_extra_bits: 0x05, |
2646 | | copy_len_extra_bits: 0x00, |
2647 | | distance_code: -1, |
2648 | | context: 0x03, |
2649 | | insert_len_offset: 0x0062, |
2650 | | copy_len_offset: 0x0005, |
2651 | | }, |
2652 | | CmdLutElement { |
2653 | | insert_len_extra_bits: 0x05, |
2654 | | copy_len_extra_bits: 0x00, |
2655 | | distance_code: -1, |
2656 | | context: 0x03, |
2657 | | insert_len_offset: 0x0062, |
2658 | | copy_len_offset: 0x0006, |
2659 | | }, |
2660 | | CmdLutElement { |
2661 | | insert_len_extra_bits: 0x05, |
2662 | | copy_len_extra_bits: 0x00, |
2663 | | distance_code: -1, |
2664 | | context: 0x03, |
2665 | | insert_len_offset: 0x0062, |
2666 | | copy_len_offset: 0x0007, |
2667 | | }, |
2668 | | CmdLutElement { |
2669 | | insert_len_extra_bits: 0x05, |
2670 | | copy_len_extra_bits: 0x00, |
2671 | | distance_code: -1, |
2672 | | context: 0x03, |
2673 | | insert_len_offset: 0x0062, |
2674 | | copy_len_offset: 0x0008, |
2675 | | }, |
2676 | | CmdLutElement { |
2677 | | insert_len_extra_bits: 0x05, |
2678 | | copy_len_extra_bits: 0x00, |
2679 | | distance_code: -1, |
2680 | | context: 0x03, |
2681 | | insert_len_offset: 0x0062, |
2682 | | copy_len_offset: 0x0009, |
2683 | | }, |
2684 | | CmdLutElement { |
2685 | | insert_len_extra_bits: 0x02, |
2686 | | copy_len_extra_bits: 0x01, |
2687 | | distance_code: -1, |
2688 | | context: 0x03, |
2689 | | insert_len_offset: 0x000a, |
2690 | | copy_len_offset: 0x000a, |
2691 | | }, |
2692 | | CmdLutElement { |
2693 | | insert_len_extra_bits: 0x02, |
2694 | | copy_len_extra_bits: 0x01, |
2695 | | distance_code: -1, |
2696 | | context: 0x03, |
2697 | | insert_len_offset: 0x000a, |
2698 | | copy_len_offset: 0x000c, |
2699 | | }, |
2700 | | CmdLutElement { |
2701 | | insert_len_extra_bits: 0x02, |
2702 | | copy_len_extra_bits: 0x02, |
2703 | | distance_code: -1, |
2704 | | context: 0x03, |
2705 | | insert_len_offset: 0x000a, |
2706 | | copy_len_offset: 0x000e, |
2707 | | }, |
2708 | | CmdLutElement { |
2709 | | insert_len_extra_bits: 0x02, |
2710 | | copy_len_extra_bits: 0x02, |
2711 | | distance_code: -1, |
2712 | | context: 0x03, |
2713 | | insert_len_offset: 0x000a, |
2714 | | copy_len_offset: 0x0012, |
2715 | | }, |
2716 | | CmdLutElement { |
2717 | | insert_len_extra_bits: 0x02, |
2718 | | copy_len_extra_bits: 0x03, |
2719 | | distance_code: -1, |
2720 | | context: 0x03, |
2721 | | insert_len_offset: 0x000a, |
2722 | | copy_len_offset: 0x0016, |
2723 | | }, |
2724 | | CmdLutElement { |
2725 | | insert_len_extra_bits: 0x02, |
2726 | | copy_len_extra_bits: 0x03, |
2727 | | distance_code: -1, |
2728 | | context: 0x03, |
2729 | | insert_len_offset: 0x000a, |
2730 | | copy_len_offset: 0x001e, |
2731 | | }, |
2732 | | CmdLutElement { |
2733 | | insert_len_extra_bits: 0x02, |
2734 | | copy_len_extra_bits: 0x04, |
2735 | | distance_code: -1, |
2736 | | context: 0x03, |
2737 | | insert_len_offset: 0x000a, |
2738 | | copy_len_offset: 0x0026, |
2739 | | }, |
2740 | | CmdLutElement { |
2741 | | insert_len_extra_bits: 0x02, |
2742 | | copy_len_extra_bits: 0x04, |
2743 | | distance_code: -1, |
2744 | | context: 0x03, |
2745 | | insert_len_offset: 0x000a, |
2746 | | copy_len_offset: 0x0036, |
2747 | | }, |
2748 | | CmdLutElement { |
2749 | | insert_len_extra_bits: 0x02, |
2750 | | copy_len_extra_bits: 0x01, |
2751 | | distance_code: -1, |
2752 | | context: 0x03, |
2753 | | insert_len_offset: 0x000e, |
2754 | | copy_len_offset: 0x000a, |
2755 | | }, |
2756 | | CmdLutElement { |
2757 | | insert_len_extra_bits: 0x02, |
2758 | | copy_len_extra_bits: 0x01, |
2759 | | distance_code: -1, |
2760 | | context: 0x03, |
2761 | | insert_len_offset: 0x000e, |
2762 | | copy_len_offset: 0x000c, |
2763 | | }, |
2764 | | CmdLutElement { |
2765 | | insert_len_extra_bits: 0x02, |
2766 | | copy_len_extra_bits: 0x02, |
2767 | | distance_code: -1, |
2768 | | context: 0x03, |
2769 | | insert_len_offset: 0x000e, |
2770 | | copy_len_offset: 0x000e, |
2771 | | }, |
2772 | | CmdLutElement { |
2773 | | insert_len_extra_bits: 0x02, |
2774 | | copy_len_extra_bits: 0x02, |
2775 | | distance_code: -1, |
2776 | | context: 0x03, |
2777 | | insert_len_offset: 0x000e, |
2778 | | copy_len_offset: 0x0012, |
2779 | | }, |
2780 | | CmdLutElement { |
2781 | | insert_len_extra_bits: 0x02, |
2782 | | copy_len_extra_bits: 0x03, |
2783 | | distance_code: -1, |
2784 | | context: 0x03, |
2785 | | insert_len_offset: 0x000e, |
2786 | | copy_len_offset: 0x0016, |
2787 | | }, |
2788 | | CmdLutElement { |
2789 | | insert_len_extra_bits: 0x02, |
2790 | | copy_len_extra_bits: 0x03, |
2791 | | distance_code: -1, |
2792 | | context: 0x03, |
2793 | | insert_len_offset: 0x000e, |
2794 | | copy_len_offset: 0x001e, |
2795 | | }, |
2796 | | CmdLutElement { |
2797 | | insert_len_extra_bits: 0x02, |
2798 | | copy_len_extra_bits: 0x04, |
2799 | | distance_code: -1, |
2800 | | context: 0x03, |
2801 | | insert_len_offset: 0x000e, |
2802 | | copy_len_offset: 0x0026, |
2803 | | }, |
2804 | | CmdLutElement { |
2805 | | insert_len_extra_bits: 0x02, |
2806 | | copy_len_extra_bits: 0x04, |
2807 | | distance_code: -1, |
2808 | | context: 0x03, |
2809 | | insert_len_offset: 0x000e, |
2810 | | copy_len_offset: 0x0036, |
2811 | | }, |
2812 | | CmdLutElement { |
2813 | | insert_len_extra_bits: 0x03, |
2814 | | copy_len_extra_bits: 0x01, |
2815 | | distance_code: -1, |
2816 | | context: 0x03, |
2817 | | insert_len_offset: 0x0012, |
2818 | | copy_len_offset: 0x000a, |
2819 | | }, |
2820 | | CmdLutElement { |
2821 | | insert_len_extra_bits: 0x03, |
2822 | | copy_len_extra_bits: 0x01, |
2823 | | distance_code: -1, |
2824 | | context: 0x03, |
2825 | | insert_len_offset: 0x0012, |
2826 | | copy_len_offset: 0x000c, |
2827 | | }, |
2828 | | CmdLutElement { |
2829 | | insert_len_extra_bits: 0x03, |
2830 | | copy_len_extra_bits: 0x02, |
2831 | | distance_code: -1, |
2832 | | context: 0x03, |
2833 | | insert_len_offset: 0x0012, |
2834 | | copy_len_offset: 0x000e, |
2835 | | }, |
2836 | | CmdLutElement { |
2837 | | insert_len_extra_bits: 0x03, |
2838 | | copy_len_extra_bits: 0x02, |
2839 | | distance_code: -1, |
2840 | | context: 0x03, |
2841 | | insert_len_offset: 0x0012, |
2842 | | copy_len_offset: 0x0012, |
2843 | | }, |
2844 | | CmdLutElement { |
2845 | | insert_len_extra_bits: 0x03, |
2846 | | copy_len_extra_bits: 0x03, |
2847 | | distance_code: -1, |
2848 | | context: 0x03, |
2849 | | insert_len_offset: 0x0012, |
2850 | | copy_len_offset: 0x0016, |
2851 | | }, |
2852 | | CmdLutElement { |
2853 | | insert_len_extra_bits: 0x03, |
2854 | | copy_len_extra_bits: 0x03, |
2855 | | distance_code: -1, |
2856 | | context: 0x03, |
2857 | | insert_len_offset: 0x0012, |
2858 | | copy_len_offset: 0x001e, |
2859 | | }, |
2860 | | CmdLutElement { |
2861 | | insert_len_extra_bits: 0x03, |
2862 | | copy_len_extra_bits: 0x04, |
2863 | | distance_code: -1, |
2864 | | context: 0x03, |
2865 | | insert_len_offset: 0x0012, |
2866 | | copy_len_offset: 0x0026, |
2867 | | }, |
2868 | | CmdLutElement { |
2869 | | insert_len_extra_bits: 0x03, |
2870 | | copy_len_extra_bits: 0x04, |
2871 | | distance_code: -1, |
2872 | | context: 0x03, |
2873 | | insert_len_offset: 0x0012, |
2874 | | copy_len_offset: 0x0036, |
2875 | | }, |
2876 | | CmdLutElement { |
2877 | | insert_len_extra_bits: 0x03, |
2878 | | copy_len_extra_bits: 0x01, |
2879 | | distance_code: -1, |
2880 | | context: 0x03, |
2881 | | insert_len_offset: 0x001a, |
2882 | | copy_len_offset: 0x000a, |
2883 | | }, |
2884 | | CmdLutElement { |
2885 | | insert_len_extra_bits: 0x03, |
2886 | | copy_len_extra_bits: 0x01, |
2887 | | distance_code: -1, |
2888 | | context: 0x03, |
2889 | | insert_len_offset: 0x001a, |
2890 | | copy_len_offset: 0x000c, |
2891 | | }, |
2892 | | CmdLutElement { |
2893 | | insert_len_extra_bits: 0x03, |
2894 | | copy_len_extra_bits: 0x02, |
2895 | | distance_code: -1, |
2896 | | context: 0x03, |
2897 | | insert_len_offset: 0x001a, |
2898 | | copy_len_offset: 0x000e, |
2899 | | }, |
2900 | | CmdLutElement { |
2901 | | insert_len_extra_bits: 0x03, |
2902 | | copy_len_extra_bits: 0x02, |
2903 | | distance_code: -1, |
2904 | | context: 0x03, |
2905 | | insert_len_offset: 0x001a, |
2906 | | copy_len_offset: 0x0012, |
2907 | | }, |
2908 | | CmdLutElement { |
2909 | | insert_len_extra_bits: 0x03, |
2910 | | copy_len_extra_bits: 0x03, |
2911 | | distance_code: -1, |
2912 | | context: 0x03, |
2913 | | insert_len_offset: 0x001a, |
2914 | | copy_len_offset: 0x0016, |
2915 | | }, |
2916 | | CmdLutElement { |
2917 | | insert_len_extra_bits: 0x03, |
2918 | | copy_len_extra_bits: 0x03, |
2919 | | distance_code: -1, |
2920 | | context: 0x03, |
2921 | | insert_len_offset: 0x001a, |
2922 | | copy_len_offset: 0x001e, |
2923 | | }, |
2924 | | CmdLutElement { |
2925 | | insert_len_extra_bits: 0x03, |
2926 | | copy_len_extra_bits: 0x04, |
2927 | | distance_code: -1, |
2928 | | context: 0x03, |
2929 | | insert_len_offset: 0x001a, |
2930 | | copy_len_offset: 0x0026, |
2931 | | }, |
2932 | | CmdLutElement { |
2933 | | insert_len_extra_bits: 0x03, |
2934 | | copy_len_extra_bits: 0x04, |
2935 | | distance_code: -1, |
2936 | | context: 0x03, |
2937 | | insert_len_offset: 0x001a, |
2938 | | copy_len_offset: 0x0036, |
2939 | | }, |
2940 | | CmdLutElement { |
2941 | | insert_len_extra_bits: 0x04, |
2942 | | copy_len_extra_bits: 0x01, |
2943 | | distance_code: -1, |
2944 | | context: 0x03, |
2945 | | insert_len_offset: 0x0022, |
2946 | | copy_len_offset: 0x000a, |
2947 | | }, |
2948 | | CmdLutElement { |
2949 | | insert_len_extra_bits: 0x04, |
2950 | | copy_len_extra_bits: 0x01, |
2951 | | distance_code: -1, |
2952 | | context: 0x03, |
2953 | | insert_len_offset: 0x0022, |
2954 | | copy_len_offset: 0x000c, |
2955 | | }, |
2956 | | CmdLutElement { |
2957 | | insert_len_extra_bits: 0x04, |
2958 | | copy_len_extra_bits: 0x02, |
2959 | | distance_code: -1, |
2960 | | context: 0x03, |
2961 | | insert_len_offset: 0x0022, |
2962 | | copy_len_offset: 0x000e, |
2963 | | }, |
2964 | | CmdLutElement { |
2965 | | insert_len_extra_bits: 0x04, |
2966 | | copy_len_extra_bits: 0x02, |
2967 | | distance_code: -1, |
2968 | | context: 0x03, |
2969 | | insert_len_offset: 0x0022, |
2970 | | copy_len_offset: 0x0012, |
2971 | | }, |
2972 | | CmdLutElement { |
2973 | | insert_len_extra_bits: 0x04, |
2974 | | copy_len_extra_bits: 0x03, |
2975 | | distance_code: -1, |
2976 | | context: 0x03, |
2977 | | insert_len_offset: 0x0022, |
2978 | | copy_len_offset: 0x0016, |
2979 | | }, |
2980 | | CmdLutElement { |
2981 | | insert_len_extra_bits: 0x04, |
2982 | | copy_len_extra_bits: 0x03, |
2983 | | distance_code: -1, |
2984 | | context: 0x03, |
2985 | | insert_len_offset: 0x0022, |
2986 | | copy_len_offset: 0x001e, |
2987 | | }, |
2988 | | CmdLutElement { |
2989 | | insert_len_extra_bits: 0x04, |
2990 | | copy_len_extra_bits: 0x04, |
2991 | | distance_code: -1, |
2992 | | context: 0x03, |
2993 | | insert_len_offset: 0x0022, |
2994 | | copy_len_offset: 0x0026, |
2995 | | }, |
2996 | | CmdLutElement { |
2997 | | insert_len_extra_bits: 0x04, |
2998 | | copy_len_extra_bits: 0x04, |
2999 | | distance_code: -1, |
3000 | | context: 0x03, |
3001 | | insert_len_offset: 0x0022, |
3002 | | copy_len_offset: 0x0036, |
3003 | | }, |
3004 | | CmdLutElement { |
3005 | | insert_len_extra_bits: 0x04, |
3006 | | copy_len_extra_bits: 0x01, |
3007 | | distance_code: -1, |
3008 | | context: 0x03, |
3009 | | insert_len_offset: 0x0032, |
3010 | | copy_len_offset: 0x000a, |
3011 | | }, |
3012 | | CmdLutElement { |
3013 | | insert_len_extra_bits: 0x04, |
3014 | | copy_len_extra_bits: 0x01, |
3015 | | distance_code: -1, |
3016 | | context: 0x03, |
3017 | | insert_len_offset: 0x0032, |
3018 | | copy_len_offset: 0x000c, |
3019 | | }, |
3020 | | CmdLutElement { |
3021 | | insert_len_extra_bits: 0x04, |
3022 | | copy_len_extra_bits: 0x02, |
3023 | | distance_code: -1, |
3024 | | context: 0x03, |
3025 | | insert_len_offset: 0x0032, |
3026 | | copy_len_offset: 0x000e, |
3027 | | }, |
3028 | | CmdLutElement { |
3029 | | insert_len_extra_bits: 0x04, |
3030 | | copy_len_extra_bits: 0x02, |
3031 | | distance_code: -1, |
3032 | | context: 0x03, |
3033 | | insert_len_offset: 0x0032, |
3034 | | copy_len_offset: 0x0012, |
3035 | | }, |
3036 | | CmdLutElement { |
3037 | | insert_len_extra_bits: 0x04, |
3038 | | copy_len_extra_bits: 0x03, |
3039 | | distance_code: -1, |
3040 | | context: 0x03, |
3041 | | insert_len_offset: 0x0032, |
3042 | | copy_len_offset: 0x0016, |
3043 | | }, |
3044 | | CmdLutElement { |
3045 | | insert_len_extra_bits: 0x04, |
3046 | | copy_len_extra_bits: 0x03, |
3047 | | distance_code: -1, |
3048 | | context: 0x03, |
3049 | | insert_len_offset: 0x0032, |
3050 | | copy_len_offset: 0x001e, |
3051 | | }, |
3052 | | CmdLutElement { |
3053 | | insert_len_extra_bits: 0x04, |
3054 | | copy_len_extra_bits: 0x04, |
3055 | | distance_code: -1, |
3056 | | context: 0x03, |
3057 | | insert_len_offset: 0x0032, |
3058 | | copy_len_offset: 0x0026, |
3059 | | }, |
3060 | | CmdLutElement { |
3061 | | insert_len_extra_bits: 0x04, |
3062 | | copy_len_extra_bits: 0x04, |
3063 | | distance_code: -1, |
3064 | | context: 0x03, |
3065 | | insert_len_offset: 0x0032, |
3066 | | copy_len_offset: 0x0036, |
3067 | | }, |
3068 | | CmdLutElement { |
3069 | | insert_len_extra_bits: 0x05, |
3070 | | copy_len_extra_bits: 0x01, |
3071 | | distance_code: -1, |
3072 | | context: 0x03, |
3073 | | insert_len_offset: 0x0042, |
3074 | | copy_len_offset: 0x000a, |
3075 | | }, |
3076 | | CmdLutElement { |
3077 | | insert_len_extra_bits: 0x05, |
3078 | | copy_len_extra_bits: 0x01, |
3079 | | distance_code: -1, |
3080 | | context: 0x03, |
3081 | | insert_len_offset: 0x0042, |
3082 | | copy_len_offset: 0x000c, |
3083 | | }, |
3084 | | CmdLutElement { |
3085 | | insert_len_extra_bits: 0x05, |
3086 | | copy_len_extra_bits: 0x02, |
3087 | | distance_code: -1, |
3088 | | context: 0x03, |
3089 | | insert_len_offset: 0x0042, |
3090 | | copy_len_offset: 0x000e, |
3091 | | }, |
3092 | | CmdLutElement { |
3093 | | insert_len_extra_bits: 0x05, |
3094 | | copy_len_extra_bits: 0x02, |
3095 | | distance_code: -1, |
3096 | | context: 0x03, |
3097 | | insert_len_offset: 0x0042, |
3098 | | copy_len_offset: 0x0012, |
3099 | | }, |
3100 | | CmdLutElement { |
3101 | | insert_len_extra_bits: 0x05, |
3102 | | copy_len_extra_bits: 0x03, |
3103 | | distance_code: -1, |
3104 | | context: 0x03, |
3105 | | insert_len_offset: 0x0042, |
3106 | | copy_len_offset: 0x0016, |
3107 | | }, |
3108 | | CmdLutElement { |
3109 | | insert_len_extra_bits: 0x05, |
3110 | | copy_len_extra_bits: 0x03, |
3111 | | distance_code: -1, |
3112 | | context: 0x03, |
3113 | | insert_len_offset: 0x0042, |
3114 | | copy_len_offset: 0x001e, |
3115 | | }, |
3116 | | CmdLutElement { |
3117 | | insert_len_extra_bits: 0x05, |
3118 | | copy_len_extra_bits: 0x04, |
3119 | | distance_code: -1, |
3120 | | context: 0x03, |
3121 | | insert_len_offset: 0x0042, |
3122 | | copy_len_offset: 0x0026, |
3123 | | }, |
3124 | | CmdLutElement { |
3125 | | insert_len_extra_bits: 0x05, |
3126 | | copy_len_extra_bits: 0x04, |
3127 | | distance_code: -1, |
3128 | | context: 0x03, |
3129 | | insert_len_offset: 0x0042, |
3130 | | copy_len_offset: 0x0036, |
3131 | | }, |
3132 | | CmdLutElement { |
3133 | | insert_len_extra_bits: 0x05, |
3134 | | copy_len_extra_bits: 0x01, |
3135 | | distance_code: -1, |
3136 | | context: 0x03, |
3137 | | insert_len_offset: 0x0062, |
3138 | | copy_len_offset: 0x000a, |
3139 | | }, |
3140 | | CmdLutElement { |
3141 | | insert_len_extra_bits: 0x05, |
3142 | | copy_len_extra_bits: 0x01, |
3143 | | distance_code: -1, |
3144 | | context: 0x03, |
3145 | | insert_len_offset: 0x0062, |
3146 | | copy_len_offset: 0x000c, |
3147 | | }, |
3148 | | CmdLutElement { |
3149 | | insert_len_extra_bits: 0x05, |
3150 | | copy_len_extra_bits: 0x02, |
3151 | | distance_code: -1, |
3152 | | context: 0x03, |
3153 | | insert_len_offset: 0x0062, |
3154 | | copy_len_offset: 0x000e, |
3155 | | }, |
3156 | | CmdLutElement { |
3157 | | insert_len_extra_bits: 0x05, |
3158 | | copy_len_extra_bits: 0x02, |
3159 | | distance_code: -1, |
3160 | | context: 0x03, |
3161 | | insert_len_offset: 0x0062, |
3162 | | copy_len_offset: 0x0012, |
3163 | | }, |
3164 | | CmdLutElement { |
3165 | | insert_len_extra_bits: 0x05, |
3166 | | copy_len_extra_bits: 0x03, |
3167 | | distance_code: -1, |
3168 | | context: 0x03, |
3169 | | insert_len_offset: 0x0062, |
3170 | | copy_len_offset: 0x0016, |
3171 | | }, |
3172 | | CmdLutElement { |
3173 | | insert_len_extra_bits: 0x05, |
3174 | | copy_len_extra_bits: 0x03, |
3175 | | distance_code: -1, |
3176 | | context: 0x03, |
3177 | | insert_len_offset: 0x0062, |
3178 | | copy_len_offset: 0x001e, |
3179 | | }, |
3180 | | CmdLutElement { |
3181 | | insert_len_extra_bits: 0x05, |
3182 | | copy_len_extra_bits: 0x04, |
3183 | | distance_code: -1, |
3184 | | context: 0x03, |
3185 | | insert_len_offset: 0x0062, |
3186 | | copy_len_offset: 0x0026, |
3187 | | }, |
3188 | | CmdLutElement { |
3189 | | insert_len_extra_bits: 0x05, |
3190 | | copy_len_extra_bits: 0x04, |
3191 | | distance_code: -1, |
3192 | | context: 0x03, |
3193 | | insert_len_offset: 0x0062, |
3194 | | copy_len_offset: 0x0036, |
3195 | | }, |
3196 | | CmdLutElement { |
3197 | | insert_len_extra_bits: 0x00, |
3198 | | copy_len_extra_bits: 0x05, |
3199 | | distance_code: -1, |
3200 | | context: 0x03, |
3201 | | insert_len_offset: 0x0000, |
3202 | | copy_len_offset: 0x0046, |
3203 | | }, |
3204 | | CmdLutElement { |
3205 | | insert_len_extra_bits: 0x00, |
3206 | | copy_len_extra_bits: 0x05, |
3207 | | distance_code: -1, |
3208 | | context: 0x03, |
3209 | | insert_len_offset: 0x0000, |
3210 | | copy_len_offset: 0x0066, |
3211 | | }, |
3212 | | CmdLutElement { |
3213 | | insert_len_extra_bits: 0x00, |
3214 | | copy_len_extra_bits: 0x06, |
3215 | | distance_code: -1, |
3216 | | context: 0x03, |
3217 | | insert_len_offset: 0x0000, |
3218 | | copy_len_offset: 0x0086, |
3219 | | }, |
3220 | | CmdLutElement { |
3221 | | insert_len_extra_bits: 0x00, |
3222 | | copy_len_extra_bits: 0x07, |
3223 | | distance_code: -1, |
3224 | | context: 0x03, |
3225 | | insert_len_offset: 0x0000, |
3226 | | copy_len_offset: 0x00c6, |
3227 | | }, |
3228 | | CmdLutElement { |
3229 | | insert_len_extra_bits: 0x00, |
3230 | | copy_len_extra_bits: 0x08, |
3231 | | distance_code: -1, |
3232 | | context: 0x03, |
3233 | | insert_len_offset: 0x0000, |
3234 | | copy_len_offset: 0x0146, |
3235 | | }, |
3236 | | CmdLutElement { |
3237 | | insert_len_extra_bits: 0x00, |
3238 | | copy_len_extra_bits: 0x09, |
3239 | | distance_code: -1, |
3240 | | context: 0x03, |
3241 | | insert_len_offset: 0x0000, |
3242 | | copy_len_offset: 0x0246, |
3243 | | }, |
3244 | | CmdLutElement { |
3245 | | insert_len_extra_bits: 0x00, |
3246 | | copy_len_extra_bits: 0x0a, |
3247 | | distance_code: -1, |
3248 | | context: 0x03, |
3249 | | insert_len_offset: 0x0000, |
3250 | | copy_len_offset: 0x0446, |
3251 | | }, |
3252 | | CmdLutElement { |
3253 | | insert_len_extra_bits: 0x00, |
3254 | | copy_len_extra_bits: 0x18, |
3255 | | distance_code: -1, |
3256 | | context: 0x03, |
3257 | | insert_len_offset: 0x0000, |
3258 | | copy_len_offset: 0x0846, |
3259 | | }, |
3260 | | CmdLutElement { |
3261 | | insert_len_extra_bits: 0x00, |
3262 | | copy_len_extra_bits: 0x05, |
3263 | | distance_code: -1, |
3264 | | context: 0x03, |
3265 | | insert_len_offset: 0x0001, |
3266 | | copy_len_offset: 0x0046, |
3267 | | }, |
3268 | | CmdLutElement { |
3269 | | insert_len_extra_bits: 0x00, |
3270 | | copy_len_extra_bits: 0x05, |
3271 | | distance_code: -1, |
3272 | | context: 0x03, |
3273 | | insert_len_offset: 0x0001, |
3274 | | copy_len_offset: 0x0066, |
3275 | | }, |
3276 | | CmdLutElement { |
3277 | | insert_len_extra_bits: 0x00, |
3278 | | copy_len_extra_bits: 0x06, |
3279 | | distance_code: -1, |
3280 | | context: 0x03, |
3281 | | insert_len_offset: 0x0001, |
3282 | | copy_len_offset: 0x0086, |
3283 | | }, |
3284 | | CmdLutElement { |
3285 | | insert_len_extra_bits: 0x00, |
3286 | | copy_len_extra_bits: 0x07, |
3287 | | distance_code: -1, |
3288 | | context: 0x03, |
3289 | | insert_len_offset: 0x0001, |
3290 | | copy_len_offset: 0x00c6, |
3291 | | }, |
3292 | | CmdLutElement { |
3293 | | insert_len_extra_bits: 0x00, |
3294 | | copy_len_extra_bits: 0x08, |
3295 | | distance_code: -1, |
3296 | | context: 0x03, |
3297 | | insert_len_offset: 0x0001, |
3298 | | copy_len_offset: 0x0146, |
3299 | | }, |
3300 | | CmdLutElement { |
3301 | | insert_len_extra_bits: 0x00, |
3302 | | copy_len_extra_bits: 0x09, |
3303 | | distance_code: -1, |
3304 | | context: 0x03, |
3305 | | insert_len_offset: 0x0001, |
3306 | | copy_len_offset: 0x0246, |
3307 | | }, |
3308 | | CmdLutElement { |
3309 | | insert_len_extra_bits: 0x00, |
3310 | | copy_len_extra_bits: 0x0a, |
3311 | | distance_code: -1, |
3312 | | context: 0x03, |
3313 | | insert_len_offset: 0x0001, |
3314 | | copy_len_offset: 0x0446, |
3315 | | }, |
3316 | | CmdLutElement { |
3317 | | insert_len_extra_bits: 0x00, |
3318 | | copy_len_extra_bits: 0x18, |
3319 | | distance_code: -1, |
3320 | | context: 0x03, |
3321 | | insert_len_offset: 0x0001, |
3322 | | copy_len_offset: 0x0846, |
3323 | | }, |
3324 | | CmdLutElement { |
3325 | | insert_len_extra_bits: 0x00, |
3326 | | copy_len_extra_bits: 0x05, |
3327 | | distance_code: -1, |
3328 | | context: 0x03, |
3329 | | insert_len_offset: 0x0002, |
3330 | | copy_len_offset: 0x0046, |
3331 | | }, |
3332 | | CmdLutElement { |
3333 | | insert_len_extra_bits: 0x00, |
3334 | | copy_len_extra_bits: 0x05, |
3335 | | distance_code: -1, |
3336 | | context: 0x03, |
3337 | | insert_len_offset: 0x0002, |
3338 | | copy_len_offset: 0x0066, |
3339 | | }, |
3340 | | CmdLutElement { |
3341 | | insert_len_extra_bits: 0x00, |
3342 | | copy_len_extra_bits: 0x06, |
3343 | | distance_code: -1, |
3344 | | context: 0x03, |
3345 | | insert_len_offset: 0x0002, |
3346 | | copy_len_offset: 0x0086, |
3347 | | }, |
3348 | | CmdLutElement { |
3349 | | insert_len_extra_bits: 0x00, |
3350 | | copy_len_extra_bits: 0x07, |
3351 | | distance_code: -1, |
3352 | | context: 0x03, |
3353 | | insert_len_offset: 0x0002, |
3354 | | copy_len_offset: 0x00c6, |
3355 | | }, |
3356 | | CmdLutElement { |
3357 | | insert_len_extra_bits: 0x00, |
3358 | | copy_len_extra_bits: 0x08, |
3359 | | distance_code: -1, |
3360 | | context: 0x03, |
3361 | | insert_len_offset: 0x0002, |
3362 | | copy_len_offset: 0x0146, |
3363 | | }, |
3364 | | CmdLutElement { |
3365 | | insert_len_extra_bits: 0x00, |
3366 | | copy_len_extra_bits: 0x09, |
3367 | | distance_code: -1, |
3368 | | context: 0x03, |
3369 | | insert_len_offset: 0x0002, |
3370 | | copy_len_offset: 0x0246, |
3371 | | }, |
3372 | | CmdLutElement { |
3373 | | insert_len_extra_bits: 0x00, |
3374 | | copy_len_extra_bits: 0x0a, |
3375 | | distance_code: -1, |
3376 | | context: 0x03, |
3377 | | insert_len_offset: 0x0002, |
3378 | | copy_len_offset: 0x0446, |
3379 | | }, |
3380 | | CmdLutElement { |
3381 | | insert_len_extra_bits: 0x00, |
3382 | | copy_len_extra_bits: 0x18, |
3383 | | distance_code: -1, |
3384 | | context: 0x03, |
3385 | | insert_len_offset: 0x0002, |
3386 | | copy_len_offset: 0x0846, |
3387 | | }, |
3388 | | CmdLutElement { |
3389 | | insert_len_extra_bits: 0x00, |
3390 | | copy_len_extra_bits: 0x05, |
3391 | | distance_code: -1, |
3392 | | context: 0x03, |
3393 | | insert_len_offset: 0x0003, |
3394 | | copy_len_offset: 0x0046, |
3395 | | }, |
3396 | | CmdLutElement { |
3397 | | insert_len_extra_bits: 0x00, |
3398 | | copy_len_extra_bits: 0x05, |
3399 | | distance_code: -1, |
3400 | | context: 0x03, |
3401 | | insert_len_offset: 0x0003, |
3402 | | copy_len_offset: 0x0066, |
3403 | | }, |
3404 | | CmdLutElement { |
3405 | | insert_len_extra_bits: 0x00, |
3406 | | copy_len_extra_bits: 0x06, |
3407 | | distance_code: -1, |
3408 | | context: 0x03, |
3409 | | insert_len_offset: 0x0003, |
3410 | | copy_len_offset: 0x0086, |
3411 | | }, |
3412 | | CmdLutElement { |
3413 | | insert_len_extra_bits: 0x00, |
3414 | | copy_len_extra_bits: 0x07, |
3415 | | distance_code: -1, |
3416 | | context: 0x03, |
3417 | | insert_len_offset: 0x0003, |
3418 | | copy_len_offset: 0x00c6, |
3419 | | }, |
3420 | | CmdLutElement { |
3421 | | insert_len_extra_bits: 0x00, |
3422 | | copy_len_extra_bits: 0x08, |
3423 | | distance_code: -1, |
3424 | | context: 0x03, |
3425 | | insert_len_offset: 0x0003, |
3426 | | copy_len_offset: 0x0146, |
3427 | | }, |
3428 | | CmdLutElement { |
3429 | | insert_len_extra_bits: 0x00, |
3430 | | copy_len_extra_bits: 0x09, |
3431 | | distance_code: -1, |
3432 | | context: 0x03, |
3433 | | insert_len_offset: 0x0003, |
3434 | | copy_len_offset: 0x0246, |
3435 | | }, |
3436 | | CmdLutElement { |
3437 | | insert_len_extra_bits: 0x00, |
3438 | | copy_len_extra_bits: 0x0a, |
3439 | | distance_code: -1, |
3440 | | context: 0x03, |
3441 | | insert_len_offset: 0x0003, |
3442 | | copy_len_offset: 0x0446, |
3443 | | }, |
3444 | | CmdLutElement { |
3445 | | insert_len_extra_bits: 0x00, |
3446 | | copy_len_extra_bits: 0x18, |
3447 | | distance_code: -1, |
3448 | | context: 0x03, |
3449 | | insert_len_offset: 0x0003, |
3450 | | copy_len_offset: 0x0846, |
3451 | | }, |
3452 | | CmdLutElement { |
3453 | | insert_len_extra_bits: 0x00, |
3454 | | copy_len_extra_bits: 0x05, |
3455 | | distance_code: -1, |
3456 | | context: 0x03, |
3457 | | insert_len_offset: 0x0004, |
3458 | | copy_len_offset: 0x0046, |
3459 | | }, |
3460 | | CmdLutElement { |
3461 | | insert_len_extra_bits: 0x00, |
3462 | | copy_len_extra_bits: 0x05, |
3463 | | distance_code: -1, |
3464 | | context: 0x03, |
3465 | | insert_len_offset: 0x0004, |
3466 | | copy_len_offset: 0x0066, |
3467 | | }, |
3468 | | CmdLutElement { |
3469 | | insert_len_extra_bits: 0x00, |
3470 | | copy_len_extra_bits: 0x06, |
3471 | | distance_code: -1, |
3472 | | context: 0x03, |
3473 | | insert_len_offset: 0x0004, |
3474 | | copy_len_offset: 0x0086, |
3475 | | }, |
3476 | | CmdLutElement { |
3477 | | insert_len_extra_bits: 0x00, |
3478 | | copy_len_extra_bits: 0x07, |
3479 | | distance_code: -1, |
3480 | | context: 0x03, |
3481 | | insert_len_offset: 0x0004, |
3482 | | copy_len_offset: 0x00c6, |
3483 | | }, |
3484 | | CmdLutElement { |
3485 | | insert_len_extra_bits: 0x00, |
3486 | | copy_len_extra_bits: 0x08, |
3487 | | distance_code: -1, |
3488 | | context: 0x03, |
3489 | | insert_len_offset: 0x0004, |
3490 | | copy_len_offset: 0x0146, |
3491 | | }, |
3492 | | CmdLutElement { |
3493 | | insert_len_extra_bits: 0x00, |
3494 | | copy_len_extra_bits: 0x09, |
3495 | | distance_code: -1, |
3496 | | context: 0x03, |
3497 | | insert_len_offset: 0x0004, |
3498 | | copy_len_offset: 0x0246, |
3499 | | }, |
3500 | | CmdLutElement { |
3501 | | insert_len_extra_bits: 0x00, |
3502 | | copy_len_extra_bits: 0x0a, |
3503 | | distance_code: -1, |
3504 | | context: 0x03, |
3505 | | insert_len_offset: 0x0004, |
3506 | | copy_len_offset: 0x0446, |
3507 | | }, |
3508 | | CmdLutElement { |
3509 | | insert_len_extra_bits: 0x00, |
3510 | | copy_len_extra_bits: 0x18, |
3511 | | distance_code: -1, |
3512 | | context: 0x03, |
3513 | | insert_len_offset: 0x0004, |
3514 | | copy_len_offset: 0x0846, |
3515 | | }, |
3516 | | CmdLutElement { |
3517 | | insert_len_extra_bits: 0x00, |
3518 | | copy_len_extra_bits: 0x05, |
3519 | | distance_code: -1, |
3520 | | context: 0x03, |
3521 | | insert_len_offset: 0x0005, |
3522 | | copy_len_offset: 0x0046, |
3523 | | }, |
3524 | | CmdLutElement { |
3525 | | insert_len_extra_bits: 0x00, |
3526 | | copy_len_extra_bits: 0x05, |
3527 | | distance_code: -1, |
3528 | | context: 0x03, |
3529 | | insert_len_offset: 0x0005, |
3530 | | copy_len_offset: 0x0066, |
3531 | | }, |
3532 | | CmdLutElement { |
3533 | | insert_len_extra_bits: 0x00, |
3534 | | copy_len_extra_bits: 0x06, |
3535 | | distance_code: -1, |
3536 | | context: 0x03, |
3537 | | insert_len_offset: 0x0005, |
3538 | | copy_len_offset: 0x0086, |
3539 | | }, |
3540 | | CmdLutElement { |
3541 | | insert_len_extra_bits: 0x00, |
3542 | | copy_len_extra_bits: 0x07, |
3543 | | distance_code: -1, |
3544 | | context: 0x03, |
3545 | | insert_len_offset: 0x0005, |
3546 | | copy_len_offset: 0x00c6, |
3547 | | }, |
3548 | | CmdLutElement { |
3549 | | insert_len_extra_bits: 0x00, |
3550 | | copy_len_extra_bits: 0x08, |
3551 | | distance_code: -1, |
3552 | | context: 0x03, |
3553 | | insert_len_offset: 0x0005, |
3554 | | copy_len_offset: 0x0146, |
3555 | | }, |
3556 | | CmdLutElement { |
3557 | | insert_len_extra_bits: 0x00, |
3558 | | copy_len_extra_bits: 0x09, |
3559 | | distance_code: -1, |
3560 | | context: 0x03, |
3561 | | insert_len_offset: 0x0005, |
3562 | | copy_len_offset: 0x0246, |
3563 | | }, |
3564 | | CmdLutElement { |
3565 | | insert_len_extra_bits: 0x00, |
3566 | | copy_len_extra_bits: 0x0a, |
3567 | | distance_code: -1, |
3568 | | context: 0x03, |
3569 | | insert_len_offset: 0x0005, |
3570 | | copy_len_offset: 0x0446, |
3571 | | }, |
3572 | | CmdLutElement { |
3573 | | insert_len_extra_bits: 0x00, |
3574 | | copy_len_extra_bits: 0x18, |
3575 | | distance_code: -1, |
3576 | | context: 0x03, |
3577 | | insert_len_offset: 0x0005, |
3578 | | copy_len_offset: 0x0846, |
3579 | | }, |
3580 | | CmdLutElement { |
3581 | | insert_len_extra_bits: 0x01, |
3582 | | copy_len_extra_bits: 0x05, |
3583 | | distance_code: -1, |
3584 | | context: 0x03, |
3585 | | insert_len_offset: 0x0006, |
3586 | | copy_len_offset: 0x0046, |
3587 | | }, |
3588 | | CmdLutElement { |
3589 | | insert_len_extra_bits: 0x01, |
3590 | | copy_len_extra_bits: 0x05, |
3591 | | distance_code: -1, |
3592 | | context: 0x03, |
3593 | | insert_len_offset: 0x0006, |
3594 | | copy_len_offset: 0x0066, |
3595 | | }, |
3596 | | CmdLutElement { |
3597 | | insert_len_extra_bits: 0x01, |
3598 | | copy_len_extra_bits: 0x06, |
3599 | | distance_code: -1, |
3600 | | context: 0x03, |
3601 | | insert_len_offset: 0x0006, |
3602 | | copy_len_offset: 0x0086, |
3603 | | }, |
3604 | | CmdLutElement { |
3605 | | insert_len_extra_bits: 0x01, |
3606 | | copy_len_extra_bits: 0x07, |
3607 | | distance_code: -1, |
3608 | | context: 0x03, |
3609 | | insert_len_offset: 0x0006, |
3610 | | copy_len_offset: 0x00c6, |
3611 | | }, |
3612 | | CmdLutElement { |
3613 | | insert_len_extra_bits: 0x01, |
3614 | | copy_len_extra_bits: 0x08, |
3615 | | distance_code: -1, |
3616 | | context: 0x03, |
3617 | | insert_len_offset: 0x0006, |
3618 | | copy_len_offset: 0x0146, |
3619 | | }, |
3620 | | CmdLutElement { |
3621 | | insert_len_extra_bits: 0x01, |
3622 | | copy_len_extra_bits: 0x09, |
3623 | | distance_code: -1, |
3624 | | context: 0x03, |
3625 | | insert_len_offset: 0x0006, |
3626 | | copy_len_offset: 0x0246, |
3627 | | }, |
3628 | | CmdLutElement { |
3629 | | insert_len_extra_bits: 0x01, |
3630 | | copy_len_extra_bits: 0x0a, |
3631 | | distance_code: -1, |
3632 | | context: 0x03, |
3633 | | insert_len_offset: 0x0006, |
3634 | | copy_len_offset: 0x0446, |
3635 | | }, |
3636 | | CmdLutElement { |
3637 | | insert_len_extra_bits: 0x01, |
3638 | | copy_len_extra_bits: 0x18, |
3639 | | distance_code: -1, |
3640 | | context: 0x03, |
3641 | | insert_len_offset: 0x0006, |
3642 | | copy_len_offset: 0x0846, |
3643 | | }, |
3644 | | CmdLutElement { |
3645 | | insert_len_extra_bits: 0x01, |
3646 | | copy_len_extra_bits: 0x05, |
3647 | | distance_code: -1, |
3648 | | context: 0x03, |
3649 | | insert_len_offset: 0x0008, |
3650 | | copy_len_offset: 0x0046, |
3651 | | }, |
3652 | | CmdLutElement { |
3653 | | insert_len_extra_bits: 0x01, |
3654 | | copy_len_extra_bits: 0x05, |
3655 | | distance_code: -1, |
3656 | | context: 0x03, |
3657 | | insert_len_offset: 0x0008, |
3658 | | copy_len_offset: 0x0066, |
3659 | | }, |
3660 | | CmdLutElement { |
3661 | | insert_len_extra_bits: 0x01, |
3662 | | copy_len_extra_bits: 0x06, |
3663 | | distance_code: -1, |
3664 | | context: 0x03, |
3665 | | insert_len_offset: 0x0008, |
3666 | | copy_len_offset: 0x0086, |
3667 | | }, |
3668 | | CmdLutElement { |
3669 | | insert_len_extra_bits: 0x01, |
3670 | | copy_len_extra_bits: 0x07, |
3671 | | distance_code: -1, |
3672 | | context: 0x03, |
3673 | | insert_len_offset: 0x0008, |
3674 | | copy_len_offset: 0x00c6, |
3675 | | }, |
3676 | | CmdLutElement { |
3677 | | insert_len_extra_bits: 0x01, |
3678 | | copy_len_extra_bits: 0x08, |
3679 | | distance_code: -1, |
3680 | | context: 0x03, |
3681 | | insert_len_offset: 0x0008, |
3682 | | copy_len_offset: 0x0146, |
3683 | | }, |
3684 | | CmdLutElement { |
3685 | | insert_len_extra_bits: 0x01, |
3686 | | copy_len_extra_bits: 0x09, |
3687 | | distance_code: -1, |
3688 | | context: 0x03, |
3689 | | insert_len_offset: 0x0008, |
3690 | | copy_len_offset: 0x0246, |
3691 | | }, |
3692 | | CmdLutElement { |
3693 | | insert_len_extra_bits: 0x01, |
3694 | | copy_len_extra_bits: 0x0a, |
3695 | | distance_code: -1, |
3696 | | context: 0x03, |
3697 | | insert_len_offset: 0x0008, |
3698 | | copy_len_offset: 0x0446, |
3699 | | }, |
3700 | | CmdLutElement { |
3701 | | insert_len_extra_bits: 0x01, |
3702 | | copy_len_extra_bits: 0x18, |
3703 | | distance_code: -1, |
3704 | | context: 0x03, |
3705 | | insert_len_offset: 0x0008, |
3706 | | copy_len_offset: 0x0846, |
3707 | | }, |
3708 | | CmdLutElement { |
3709 | | insert_len_extra_bits: 0x06, |
3710 | | copy_len_extra_bits: 0x00, |
3711 | | distance_code: -1, |
3712 | | context: 0x00, |
3713 | | insert_len_offset: 0x0082, |
3714 | | copy_len_offset: 0x0002, |
3715 | | }, |
3716 | | CmdLutElement { |
3717 | | insert_len_extra_bits: 0x06, |
3718 | | copy_len_extra_bits: 0x00, |
3719 | | distance_code: -1, |
3720 | | context: 0x01, |
3721 | | insert_len_offset: 0x0082, |
3722 | | copy_len_offset: 0x0003, |
3723 | | }, |
3724 | | CmdLutElement { |
3725 | | insert_len_extra_bits: 0x06, |
3726 | | copy_len_extra_bits: 0x00, |
3727 | | distance_code: -1, |
3728 | | context: 0x02, |
3729 | | insert_len_offset: 0x0082, |
3730 | | copy_len_offset: 0x0004, |
3731 | | }, |
3732 | | CmdLutElement { |
3733 | | insert_len_extra_bits: 0x06, |
3734 | | copy_len_extra_bits: 0x00, |
3735 | | distance_code: -1, |
3736 | | context: 0x03, |
3737 | | insert_len_offset: 0x0082, |
3738 | | copy_len_offset: 0x0005, |
3739 | | }, |
3740 | | CmdLutElement { |
3741 | | insert_len_extra_bits: 0x06, |
3742 | | copy_len_extra_bits: 0x00, |
3743 | | distance_code: -1, |
3744 | | context: 0x03, |
3745 | | insert_len_offset: 0x0082, |
3746 | | copy_len_offset: 0x0006, |
3747 | | }, |
3748 | | CmdLutElement { |
3749 | | insert_len_extra_bits: 0x06, |
3750 | | copy_len_extra_bits: 0x00, |
3751 | | distance_code: -1, |
3752 | | context: 0x03, |
3753 | | insert_len_offset: 0x0082, |
3754 | | copy_len_offset: 0x0007, |
3755 | | }, |
3756 | | CmdLutElement { |
3757 | | insert_len_extra_bits: 0x06, |
3758 | | copy_len_extra_bits: 0x00, |
3759 | | distance_code: -1, |
3760 | | context: 0x03, |
3761 | | insert_len_offset: 0x0082, |
3762 | | copy_len_offset: 0x0008, |
3763 | | }, |
3764 | | CmdLutElement { |
3765 | | insert_len_extra_bits: 0x06, |
3766 | | copy_len_extra_bits: 0x00, |
3767 | | distance_code: -1, |
3768 | | context: 0x03, |
3769 | | insert_len_offset: 0x0082, |
3770 | | copy_len_offset: 0x0009, |
3771 | | }, |
3772 | | CmdLutElement { |
3773 | | insert_len_extra_bits: 0x07, |
3774 | | copy_len_extra_bits: 0x00, |
3775 | | distance_code: -1, |
3776 | | context: 0x00, |
3777 | | insert_len_offset: 0x00c2, |
3778 | | copy_len_offset: 0x0002, |
3779 | | }, |
3780 | | CmdLutElement { |
3781 | | insert_len_extra_bits: 0x07, |
3782 | | copy_len_extra_bits: 0x00, |
3783 | | distance_code: -1, |
3784 | | context: 0x01, |
3785 | | insert_len_offset: 0x00c2, |
3786 | | copy_len_offset: 0x0003, |
3787 | | }, |
3788 | | CmdLutElement { |
3789 | | insert_len_extra_bits: 0x07, |
3790 | | copy_len_extra_bits: 0x00, |
3791 | | distance_code: -1, |
3792 | | context: 0x02, |
3793 | | insert_len_offset: 0x00c2, |
3794 | | copy_len_offset: 0x0004, |
3795 | | }, |
3796 | | CmdLutElement { |
3797 | | insert_len_extra_bits: 0x07, |
3798 | | copy_len_extra_bits: 0x00, |
3799 | | distance_code: -1, |
3800 | | context: 0x03, |
3801 | | insert_len_offset: 0x00c2, |
3802 | | copy_len_offset: 0x0005, |
3803 | | }, |
3804 | | CmdLutElement { |
3805 | | insert_len_extra_bits: 0x07, |
3806 | | copy_len_extra_bits: 0x00, |
3807 | | distance_code: -1, |
3808 | | context: 0x03, |
3809 | | insert_len_offset: 0x00c2, |
3810 | | copy_len_offset: 0x0006, |
3811 | | }, |
3812 | | CmdLutElement { |
3813 | | insert_len_extra_bits: 0x07, |
3814 | | copy_len_extra_bits: 0x00, |
3815 | | distance_code: -1, |
3816 | | context: 0x03, |
3817 | | insert_len_offset: 0x00c2, |
3818 | | copy_len_offset: 0x0007, |
3819 | | }, |
3820 | | CmdLutElement { |
3821 | | insert_len_extra_bits: 0x07, |
3822 | | copy_len_extra_bits: 0x00, |
3823 | | distance_code: -1, |
3824 | | context: 0x03, |
3825 | | insert_len_offset: 0x00c2, |
3826 | | copy_len_offset: 0x0008, |
3827 | | }, |
3828 | | CmdLutElement { |
3829 | | insert_len_extra_bits: 0x07, |
3830 | | copy_len_extra_bits: 0x00, |
3831 | | distance_code: -1, |
3832 | | context: 0x03, |
3833 | | insert_len_offset: 0x00c2, |
3834 | | copy_len_offset: 0x0009, |
3835 | | }, |
3836 | | CmdLutElement { |
3837 | | insert_len_extra_bits: 0x08, |
3838 | | copy_len_extra_bits: 0x00, |
3839 | | distance_code: -1, |
3840 | | context: 0x00, |
3841 | | insert_len_offset: 0x0142, |
3842 | | copy_len_offset: 0x0002, |
3843 | | }, |
3844 | | CmdLutElement { |
3845 | | insert_len_extra_bits: 0x08, |
3846 | | copy_len_extra_bits: 0x00, |
3847 | | distance_code: -1, |
3848 | | context: 0x01, |
3849 | | insert_len_offset: 0x0142, |
3850 | | copy_len_offset: 0x0003, |
3851 | | }, |
3852 | | CmdLutElement { |
3853 | | insert_len_extra_bits: 0x08, |
3854 | | copy_len_extra_bits: 0x00, |
3855 | | distance_code: -1, |
3856 | | context: 0x02, |
3857 | | insert_len_offset: 0x0142, |
3858 | | copy_len_offset: 0x0004, |
3859 | | }, |
3860 | | CmdLutElement { |
3861 | | insert_len_extra_bits: 0x08, |
3862 | | copy_len_extra_bits: 0x00, |
3863 | | distance_code: -1, |
3864 | | context: 0x03, |
3865 | | insert_len_offset: 0x0142, |
3866 | | copy_len_offset: 0x0005, |
3867 | | }, |
3868 | | CmdLutElement { |
3869 | | insert_len_extra_bits: 0x08, |
3870 | | copy_len_extra_bits: 0x00, |
3871 | | distance_code: -1, |
3872 | | context: 0x03, |
3873 | | insert_len_offset: 0x0142, |
3874 | | copy_len_offset: 0x0006, |
3875 | | }, |
3876 | | CmdLutElement { |
3877 | | insert_len_extra_bits: 0x08, |
3878 | | copy_len_extra_bits: 0x00, |
3879 | | distance_code: -1, |
3880 | | context: 0x03, |
3881 | | insert_len_offset: 0x0142, |
3882 | | copy_len_offset: 0x0007, |
3883 | | }, |
3884 | | CmdLutElement { |
3885 | | insert_len_extra_bits: 0x08, |
3886 | | copy_len_extra_bits: 0x00, |
3887 | | distance_code: -1, |
3888 | | context: 0x03, |
3889 | | insert_len_offset: 0x0142, |
3890 | | copy_len_offset: 0x0008, |
3891 | | }, |
3892 | | CmdLutElement { |
3893 | | insert_len_extra_bits: 0x08, |
3894 | | copy_len_extra_bits: 0x00, |
3895 | | distance_code: -1, |
3896 | | context: 0x03, |
3897 | | insert_len_offset: 0x0142, |
3898 | | copy_len_offset: 0x0009, |
3899 | | }, |
3900 | | CmdLutElement { |
3901 | | insert_len_extra_bits: 0x09, |
3902 | | copy_len_extra_bits: 0x00, |
3903 | | distance_code: -1, |
3904 | | context: 0x00, |
3905 | | insert_len_offset: 0x0242, |
3906 | | copy_len_offset: 0x0002, |
3907 | | }, |
3908 | | CmdLutElement { |
3909 | | insert_len_extra_bits: 0x09, |
3910 | | copy_len_extra_bits: 0x00, |
3911 | | distance_code: -1, |
3912 | | context: 0x01, |
3913 | | insert_len_offset: 0x0242, |
3914 | | copy_len_offset: 0x0003, |
3915 | | }, |
3916 | | CmdLutElement { |
3917 | | insert_len_extra_bits: 0x09, |
3918 | | copy_len_extra_bits: 0x00, |
3919 | | distance_code: -1, |
3920 | | context: 0x02, |
3921 | | insert_len_offset: 0x0242, |
3922 | | copy_len_offset: 0x0004, |
3923 | | }, |
3924 | | CmdLutElement { |
3925 | | insert_len_extra_bits: 0x09, |
3926 | | copy_len_extra_bits: 0x00, |
3927 | | distance_code: -1, |
3928 | | context: 0x03, |
3929 | | insert_len_offset: 0x0242, |
3930 | | copy_len_offset: 0x0005, |
3931 | | }, |
3932 | | CmdLutElement { |
3933 | | insert_len_extra_bits: 0x09, |
3934 | | copy_len_extra_bits: 0x00, |
3935 | | distance_code: -1, |
3936 | | context: 0x03, |
3937 | | insert_len_offset: 0x0242, |
3938 | | copy_len_offset: 0x0006, |
3939 | | }, |
3940 | | CmdLutElement { |
3941 | | insert_len_extra_bits: 0x09, |
3942 | | copy_len_extra_bits: 0x00, |
3943 | | distance_code: -1, |
3944 | | context: 0x03, |
3945 | | insert_len_offset: 0x0242, |
3946 | | copy_len_offset: 0x0007, |
3947 | | }, |
3948 | | CmdLutElement { |
3949 | | insert_len_extra_bits: 0x09, |
3950 | | copy_len_extra_bits: 0x00, |
3951 | | distance_code: -1, |
3952 | | context: 0x03, |
3953 | | insert_len_offset: 0x0242, |
3954 | | copy_len_offset: 0x0008, |
3955 | | }, |
3956 | | CmdLutElement { |
3957 | | insert_len_extra_bits: 0x09, |
3958 | | copy_len_extra_bits: 0x00, |
3959 | | distance_code: -1, |
3960 | | context: 0x03, |
3961 | | insert_len_offset: 0x0242, |
3962 | | copy_len_offset: 0x0009, |
3963 | | }, |
3964 | | CmdLutElement { |
3965 | | insert_len_extra_bits: 0x0a, |
3966 | | copy_len_extra_bits: 0x00, |
3967 | | distance_code: -1, |
3968 | | context: 0x00, |
3969 | | insert_len_offset: 0x0442, |
3970 | | copy_len_offset: 0x0002, |
3971 | | }, |
3972 | | CmdLutElement { |
3973 | | insert_len_extra_bits: 0x0a, |
3974 | | copy_len_extra_bits: 0x00, |
3975 | | distance_code: -1, |
3976 | | context: 0x01, |
3977 | | insert_len_offset: 0x0442, |
3978 | | copy_len_offset: 0x0003, |
3979 | | }, |
3980 | | CmdLutElement { |
3981 | | insert_len_extra_bits: 0x0a, |
3982 | | copy_len_extra_bits: 0x00, |
3983 | | distance_code: -1, |
3984 | | context: 0x02, |
3985 | | insert_len_offset: 0x0442, |
3986 | | copy_len_offset: 0x0004, |
3987 | | }, |
3988 | | CmdLutElement { |
3989 | | insert_len_extra_bits: 0x0a, |
3990 | | copy_len_extra_bits: 0x00, |
3991 | | distance_code: -1, |
3992 | | context: 0x03, |
3993 | | insert_len_offset: 0x0442, |
3994 | | copy_len_offset: 0x0005, |
3995 | | }, |
3996 | | CmdLutElement { |
3997 | | insert_len_extra_bits: 0x0a, |
3998 | | copy_len_extra_bits: 0x00, |
3999 | | distance_code: -1, |
4000 | | context: 0x03, |
4001 | | insert_len_offset: 0x0442, |
4002 | | copy_len_offset: 0x0006, |
4003 | | }, |
4004 | | CmdLutElement { |
4005 | | insert_len_extra_bits: 0x0a, |
4006 | | copy_len_extra_bits: 0x00, |
4007 | | distance_code: -1, |
4008 | | context: 0x03, |
4009 | | insert_len_offset: 0x0442, |
4010 | | copy_len_offset: 0x0007, |
4011 | | }, |
4012 | | CmdLutElement { |
4013 | | insert_len_extra_bits: 0x0a, |
4014 | | copy_len_extra_bits: 0x00, |
4015 | | distance_code: -1, |
4016 | | context: 0x03, |
4017 | | insert_len_offset: 0x0442, |
4018 | | copy_len_offset: 0x0008, |
4019 | | }, |
4020 | | CmdLutElement { |
4021 | | insert_len_extra_bits: 0x0a, |
4022 | | copy_len_extra_bits: 0x00, |
4023 | | distance_code: -1, |
4024 | | context: 0x03, |
4025 | | insert_len_offset: 0x0442, |
4026 | | copy_len_offset: 0x0009, |
4027 | | }, |
4028 | | CmdLutElement { |
4029 | | insert_len_extra_bits: 0x0c, |
4030 | | copy_len_extra_bits: 0x00, |
4031 | | distance_code: -1, |
4032 | | context: 0x00, |
4033 | | insert_len_offset: 0x0842, |
4034 | | copy_len_offset: 0x0002, |
4035 | | }, |
4036 | | CmdLutElement { |
4037 | | insert_len_extra_bits: 0x0c, |
4038 | | copy_len_extra_bits: 0x00, |
4039 | | distance_code: -1, |
4040 | | context: 0x01, |
4041 | | insert_len_offset: 0x0842, |
4042 | | copy_len_offset: 0x0003, |
4043 | | }, |
4044 | | CmdLutElement { |
4045 | | insert_len_extra_bits: 0x0c, |
4046 | | copy_len_extra_bits: 0x00, |
4047 | | distance_code: -1, |
4048 | | context: 0x02, |
4049 | | insert_len_offset: 0x0842, |
4050 | | copy_len_offset: 0x0004, |
4051 | | }, |
4052 | | CmdLutElement { |
4053 | | insert_len_extra_bits: 0x0c, |
4054 | | copy_len_extra_bits: 0x00, |
4055 | | distance_code: -1, |
4056 | | context: 0x03, |
4057 | | insert_len_offset: 0x0842, |
4058 | | copy_len_offset: 0x0005, |
4059 | | }, |
4060 | | CmdLutElement { |
4061 | | insert_len_extra_bits: 0x0c, |
4062 | | copy_len_extra_bits: 0x00, |
4063 | | distance_code: -1, |
4064 | | context: 0x03, |
4065 | | insert_len_offset: 0x0842, |
4066 | | copy_len_offset: 0x0006, |
4067 | | }, |
4068 | | CmdLutElement { |
4069 | | insert_len_extra_bits: 0x0c, |
4070 | | copy_len_extra_bits: 0x00, |
4071 | | distance_code: -1, |
4072 | | context: 0x03, |
4073 | | insert_len_offset: 0x0842, |
4074 | | copy_len_offset: 0x0007, |
4075 | | }, |
4076 | | CmdLutElement { |
4077 | | insert_len_extra_bits: 0x0c, |
4078 | | copy_len_extra_bits: 0x00, |
4079 | | distance_code: -1, |
4080 | | context: 0x03, |
4081 | | insert_len_offset: 0x0842, |
4082 | | copy_len_offset: 0x0008, |
4083 | | }, |
4084 | | CmdLutElement { |
4085 | | insert_len_extra_bits: 0x0c, |
4086 | | copy_len_extra_bits: 0x00, |
4087 | | distance_code: -1, |
4088 | | context: 0x03, |
4089 | | insert_len_offset: 0x0842, |
4090 | | copy_len_offset: 0x0009, |
4091 | | }, |
4092 | | CmdLutElement { |
4093 | | insert_len_extra_bits: 0x0e, |
4094 | | copy_len_extra_bits: 0x00, |
4095 | | distance_code: -1, |
4096 | | context: 0x00, |
4097 | | insert_len_offset: 0x1842, |
4098 | | copy_len_offset: 0x0002, |
4099 | | }, |
4100 | | CmdLutElement { |
4101 | | insert_len_extra_bits: 0x0e, |
4102 | | copy_len_extra_bits: 0x00, |
4103 | | distance_code: -1, |
4104 | | context: 0x01, |
4105 | | insert_len_offset: 0x1842, |
4106 | | copy_len_offset: 0x0003, |
4107 | | }, |
4108 | | CmdLutElement { |
4109 | | insert_len_extra_bits: 0x0e, |
4110 | | copy_len_extra_bits: 0x00, |
4111 | | distance_code: -1, |
4112 | | context: 0x02, |
4113 | | insert_len_offset: 0x1842, |
4114 | | copy_len_offset: 0x0004, |
4115 | | }, |
4116 | | CmdLutElement { |
4117 | | insert_len_extra_bits: 0x0e, |
4118 | | copy_len_extra_bits: 0x00, |
4119 | | distance_code: -1, |
4120 | | context: 0x03, |
4121 | | insert_len_offset: 0x1842, |
4122 | | copy_len_offset: 0x0005, |
4123 | | }, |
4124 | | CmdLutElement { |
4125 | | insert_len_extra_bits: 0x0e, |
4126 | | copy_len_extra_bits: 0x00, |
4127 | | distance_code: -1, |
4128 | | context: 0x03, |
4129 | | insert_len_offset: 0x1842, |
4130 | | copy_len_offset: 0x0006, |
4131 | | }, |
4132 | | CmdLutElement { |
4133 | | insert_len_extra_bits: 0x0e, |
4134 | | copy_len_extra_bits: 0x00, |
4135 | | distance_code: -1, |
4136 | | context: 0x03, |
4137 | | insert_len_offset: 0x1842, |
4138 | | copy_len_offset: 0x0007, |
4139 | | }, |
4140 | | CmdLutElement { |
4141 | | insert_len_extra_bits: 0x0e, |
4142 | | copy_len_extra_bits: 0x00, |
4143 | | distance_code: -1, |
4144 | | context: 0x03, |
4145 | | insert_len_offset: 0x1842, |
4146 | | copy_len_offset: 0x0008, |
4147 | | }, |
4148 | | CmdLutElement { |
4149 | | insert_len_extra_bits: 0x0e, |
4150 | | copy_len_extra_bits: 0x00, |
4151 | | distance_code: -1, |
4152 | | context: 0x03, |
4153 | | insert_len_offset: 0x1842, |
4154 | | copy_len_offset: 0x0009, |
4155 | | }, |
4156 | | CmdLutElement { |
4157 | | insert_len_extra_bits: 0x18, |
4158 | | copy_len_extra_bits: 0x00, |
4159 | | distance_code: -1, |
4160 | | context: 0x00, |
4161 | | insert_len_offset: 0x5842, |
4162 | | copy_len_offset: 0x0002, |
4163 | | }, |
4164 | | CmdLutElement { |
4165 | | insert_len_extra_bits: 0x18, |
4166 | | copy_len_extra_bits: 0x00, |
4167 | | distance_code: -1, |
4168 | | context: 0x01, |
4169 | | insert_len_offset: 0x5842, |
4170 | | copy_len_offset: 0x0003, |
4171 | | }, |
4172 | | CmdLutElement { |
4173 | | insert_len_extra_bits: 0x18, |
4174 | | copy_len_extra_bits: 0x00, |
4175 | | distance_code: -1, |
4176 | | context: 0x02, |
4177 | | insert_len_offset: 0x5842, |
4178 | | copy_len_offset: 0x0004, |
4179 | | }, |
4180 | | CmdLutElement { |
4181 | | insert_len_extra_bits: 0x18, |
4182 | | copy_len_extra_bits: 0x00, |
4183 | | distance_code: -1, |
4184 | | context: 0x03, |
4185 | | insert_len_offset: 0x5842, |
4186 | | copy_len_offset: 0x0005, |
4187 | | }, |
4188 | | CmdLutElement { |
4189 | | insert_len_extra_bits: 0x18, |
4190 | | copy_len_extra_bits: 0x00, |
4191 | | distance_code: -1, |
4192 | | context: 0x03, |
4193 | | insert_len_offset: 0x5842, |
4194 | | copy_len_offset: 0x0006, |
4195 | | }, |
4196 | | CmdLutElement { |
4197 | | insert_len_extra_bits: 0x18, |
4198 | | copy_len_extra_bits: 0x00, |
4199 | | distance_code: -1, |
4200 | | context: 0x03, |
4201 | | insert_len_offset: 0x5842, |
4202 | | copy_len_offset: 0x0007, |
4203 | | }, |
4204 | | CmdLutElement { |
4205 | | insert_len_extra_bits: 0x18, |
4206 | | copy_len_extra_bits: 0x00, |
4207 | | distance_code: -1, |
4208 | | context: 0x03, |
4209 | | insert_len_offset: 0x5842, |
4210 | | copy_len_offset: 0x0008, |
4211 | | }, |
4212 | | CmdLutElement { |
4213 | | insert_len_extra_bits: 0x18, |
4214 | | copy_len_extra_bits: 0x00, |
4215 | | distance_code: -1, |
4216 | | context: 0x03, |
4217 | | insert_len_offset: 0x5842, |
4218 | | copy_len_offset: 0x0009, |
4219 | | }, |
4220 | | CmdLutElement { |
4221 | | insert_len_extra_bits: 0x02, |
4222 | | copy_len_extra_bits: 0x05, |
4223 | | distance_code: -1, |
4224 | | context: 0x03, |
4225 | | insert_len_offset: 0x000a, |
4226 | | copy_len_offset: 0x0046, |
4227 | | }, |
4228 | | CmdLutElement { |
4229 | | insert_len_extra_bits: 0x02, |
4230 | | copy_len_extra_bits: 0x05, |
4231 | | distance_code: -1, |
4232 | | context: 0x03, |
4233 | | insert_len_offset: 0x000a, |
4234 | | copy_len_offset: 0x0066, |
4235 | | }, |
4236 | | CmdLutElement { |
4237 | | insert_len_extra_bits: 0x02, |
4238 | | copy_len_extra_bits: 0x06, |
4239 | | distance_code: -1, |
4240 | | context: 0x03, |
4241 | | insert_len_offset: 0x000a, |
4242 | | copy_len_offset: 0x0086, |
4243 | | }, |
4244 | | CmdLutElement { |
4245 | | insert_len_extra_bits: 0x02, |
4246 | | copy_len_extra_bits: 0x07, |
4247 | | distance_code: -1, |
4248 | | context: 0x03, |
4249 | | insert_len_offset: 0x000a, |
4250 | | copy_len_offset: 0x00c6, |
4251 | | }, |
4252 | | CmdLutElement { |
4253 | | insert_len_extra_bits: 0x02, |
4254 | | copy_len_extra_bits: 0x08, |
4255 | | distance_code: -1, |
4256 | | context: 0x03, |
4257 | | insert_len_offset: 0x000a, |
4258 | | copy_len_offset: 0x0146, |
4259 | | }, |
4260 | | CmdLutElement { |
4261 | | insert_len_extra_bits: 0x02, |
4262 | | copy_len_extra_bits: 0x09, |
4263 | | distance_code: -1, |
4264 | | context: 0x03, |
4265 | | insert_len_offset: 0x000a, |
4266 | | copy_len_offset: 0x0246, |
4267 | | }, |
4268 | | CmdLutElement { |
4269 | | insert_len_extra_bits: 0x02, |
4270 | | copy_len_extra_bits: 0x0a, |
4271 | | distance_code: -1, |
4272 | | context: 0x03, |
4273 | | insert_len_offset: 0x000a, |
4274 | | copy_len_offset: 0x0446, |
4275 | | }, |
4276 | | CmdLutElement { |
4277 | | insert_len_extra_bits: 0x02, |
4278 | | copy_len_extra_bits: 0x18, |
4279 | | distance_code: -1, |
4280 | | context: 0x03, |
4281 | | insert_len_offset: 0x000a, |
4282 | | copy_len_offset: 0x0846, |
4283 | | }, |
4284 | | CmdLutElement { |
4285 | | insert_len_extra_bits: 0x02, |
4286 | | copy_len_extra_bits: 0x05, |
4287 | | distance_code: -1, |
4288 | | context: 0x03, |
4289 | | insert_len_offset: 0x000e, |
4290 | | copy_len_offset: 0x0046, |
4291 | | }, |
4292 | | CmdLutElement { |
4293 | | insert_len_extra_bits: 0x02, |
4294 | | copy_len_extra_bits: 0x05, |
4295 | | distance_code: -1, |
4296 | | context: 0x03, |
4297 | | insert_len_offset: 0x000e, |
4298 | | copy_len_offset: 0x0066, |
4299 | | }, |
4300 | | CmdLutElement { |
4301 | | insert_len_extra_bits: 0x02, |
4302 | | copy_len_extra_bits: 0x06, |
4303 | | distance_code: -1, |
4304 | | context: 0x03, |
4305 | | insert_len_offset: 0x000e, |
4306 | | copy_len_offset: 0x0086, |
4307 | | }, |
4308 | | CmdLutElement { |
4309 | | insert_len_extra_bits: 0x02, |
4310 | | copy_len_extra_bits: 0x07, |
4311 | | distance_code: -1, |
4312 | | context: 0x03, |
4313 | | insert_len_offset: 0x000e, |
4314 | | copy_len_offset: 0x00c6, |
4315 | | }, |
4316 | | CmdLutElement { |
4317 | | insert_len_extra_bits: 0x02, |
4318 | | copy_len_extra_bits: 0x08, |
4319 | | distance_code: -1, |
4320 | | context: 0x03, |
4321 | | insert_len_offset: 0x000e, |
4322 | | copy_len_offset: 0x0146, |
4323 | | }, |
4324 | | CmdLutElement { |
4325 | | insert_len_extra_bits: 0x02, |
4326 | | copy_len_extra_bits: 0x09, |
4327 | | distance_code: -1, |
4328 | | context: 0x03, |
4329 | | insert_len_offset: 0x000e, |
4330 | | copy_len_offset: 0x0246, |
4331 | | }, |
4332 | | CmdLutElement { |
4333 | | insert_len_extra_bits: 0x02, |
4334 | | copy_len_extra_bits: 0x0a, |
4335 | | distance_code: -1, |
4336 | | context: 0x03, |
4337 | | insert_len_offset: 0x000e, |
4338 | | copy_len_offset: 0x0446, |
4339 | | }, |
4340 | | CmdLutElement { |
4341 | | insert_len_extra_bits: 0x02, |
4342 | | copy_len_extra_bits: 0x18, |
4343 | | distance_code: -1, |
4344 | | context: 0x03, |
4345 | | insert_len_offset: 0x000e, |
4346 | | copy_len_offset: 0x0846, |
4347 | | }, |
4348 | | CmdLutElement { |
4349 | | insert_len_extra_bits: 0x03, |
4350 | | copy_len_extra_bits: 0x05, |
4351 | | distance_code: -1, |
4352 | | context: 0x03, |
4353 | | insert_len_offset: 0x0012, |
4354 | | copy_len_offset: 0x0046, |
4355 | | }, |
4356 | | CmdLutElement { |
4357 | | insert_len_extra_bits: 0x03, |
4358 | | copy_len_extra_bits: 0x05, |
4359 | | distance_code: -1, |
4360 | | context: 0x03, |
4361 | | insert_len_offset: 0x0012, |
4362 | | copy_len_offset: 0x0066, |
4363 | | }, |
4364 | | CmdLutElement { |
4365 | | insert_len_extra_bits: 0x03, |
4366 | | copy_len_extra_bits: 0x06, |
4367 | | distance_code: -1, |
4368 | | context: 0x03, |
4369 | | insert_len_offset: 0x0012, |
4370 | | copy_len_offset: 0x0086, |
4371 | | }, |
4372 | | CmdLutElement { |
4373 | | insert_len_extra_bits: 0x03, |
4374 | | copy_len_extra_bits: 0x07, |
4375 | | distance_code: -1, |
4376 | | context: 0x03, |
4377 | | insert_len_offset: 0x0012, |
4378 | | copy_len_offset: 0x00c6, |
4379 | | }, |
4380 | | CmdLutElement { |
4381 | | insert_len_extra_bits: 0x03, |
4382 | | copy_len_extra_bits: 0x08, |
4383 | | distance_code: -1, |
4384 | | context: 0x03, |
4385 | | insert_len_offset: 0x0012, |
4386 | | copy_len_offset: 0x0146, |
4387 | | }, |
4388 | | CmdLutElement { |
4389 | | insert_len_extra_bits: 0x03, |
4390 | | copy_len_extra_bits: 0x09, |
4391 | | distance_code: -1, |
4392 | | context: 0x03, |
4393 | | insert_len_offset: 0x0012, |
4394 | | copy_len_offset: 0x0246, |
4395 | | }, |
4396 | | CmdLutElement { |
4397 | | insert_len_extra_bits: 0x03, |
4398 | | copy_len_extra_bits: 0x0a, |
4399 | | distance_code: -1, |
4400 | | context: 0x03, |
4401 | | insert_len_offset: 0x0012, |
4402 | | copy_len_offset: 0x0446, |
4403 | | }, |
4404 | | CmdLutElement { |
4405 | | insert_len_extra_bits: 0x03, |
4406 | | copy_len_extra_bits: 0x18, |
4407 | | distance_code: -1, |
4408 | | context: 0x03, |
4409 | | insert_len_offset: 0x0012, |
4410 | | copy_len_offset: 0x0846, |
4411 | | }, |
4412 | | CmdLutElement { |
4413 | | insert_len_extra_bits: 0x03, |
4414 | | copy_len_extra_bits: 0x05, |
4415 | | distance_code: -1, |
4416 | | context: 0x03, |
4417 | | insert_len_offset: 0x001a, |
4418 | | copy_len_offset: 0x0046, |
4419 | | }, |
4420 | | CmdLutElement { |
4421 | | insert_len_extra_bits: 0x03, |
4422 | | copy_len_extra_bits: 0x05, |
4423 | | distance_code: -1, |
4424 | | context: 0x03, |
4425 | | insert_len_offset: 0x001a, |
4426 | | copy_len_offset: 0x0066, |
4427 | | }, |
4428 | | CmdLutElement { |
4429 | | insert_len_extra_bits: 0x03, |
4430 | | copy_len_extra_bits: 0x06, |
4431 | | distance_code: -1, |
4432 | | context: 0x03, |
4433 | | insert_len_offset: 0x001a, |
4434 | | copy_len_offset: 0x0086, |
4435 | | }, |
4436 | | CmdLutElement { |
4437 | | insert_len_extra_bits: 0x03, |
4438 | | copy_len_extra_bits: 0x07, |
4439 | | distance_code: -1, |
4440 | | context: 0x03, |
4441 | | insert_len_offset: 0x001a, |
4442 | | copy_len_offset: 0x00c6, |
4443 | | }, |
4444 | | CmdLutElement { |
4445 | | insert_len_extra_bits: 0x03, |
4446 | | copy_len_extra_bits: 0x08, |
4447 | | distance_code: -1, |
4448 | | context: 0x03, |
4449 | | insert_len_offset: 0x001a, |
4450 | | copy_len_offset: 0x0146, |
4451 | | }, |
4452 | | CmdLutElement { |
4453 | | insert_len_extra_bits: 0x03, |
4454 | | copy_len_extra_bits: 0x09, |
4455 | | distance_code: -1, |
4456 | | context: 0x03, |
4457 | | insert_len_offset: 0x001a, |
4458 | | copy_len_offset: 0x0246, |
4459 | | }, |
4460 | | CmdLutElement { |
4461 | | insert_len_extra_bits: 0x03, |
4462 | | copy_len_extra_bits: 0x0a, |
4463 | | distance_code: -1, |
4464 | | context: 0x03, |
4465 | | insert_len_offset: 0x001a, |
4466 | | copy_len_offset: 0x0446, |
4467 | | }, |
4468 | | CmdLutElement { |
4469 | | insert_len_extra_bits: 0x03, |
4470 | | copy_len_extra_bits: 0x18, |
4471 | | distance_code: -1, |
4472 | | context: 0x03, |
4473 | | insert_len_offset: 0x001a, |
4474 | | copy_len_offset: 0x0846, |
4475 | | }, |
4476 | | CmdLutElement { |
4477 | | insert_len_extra_bits: 0x04, |
4478 | | copy_len_extra_bits: 0x05, |
4479 | | distance_code: -1, |
4480 | | context: 0x03, |
4481 | | insert_len_offset: 0x0022, |
4482 | | copy_len_offset: 0x0046, |
4483 | | }, |
4484 | | CmdLutElement { |
4485 | | insert_len_extra_bits: 0x04, |
4486 | | copy_len_extra_bits: 0x05, |
4487 | | distance_code: -1, |
4488 | | context: 0x03, |
4489 | | insert_len_offset: 0x0022, |
4490 | | copy_len_offset: 0x0066, |
4491 | | }, |
4492 | | CmdLutElement { |
4493 | | insert_len_extra_bits: 0x04, |
4494 | | copy_len_extra_bits: 0x06, |
4495 | | distance_code: -1, |
4496 | | context: 0x03, |
4497 | | insert_len_offset: 0x0022, |
4498 | | copy_len_offset: 0x0086, |
4499 | | }, |
4500 | | CmdLutElement { |
4501 | | insert_len_extra_bits: 0x04, |
4502 | | copy_len_extra_bits: 0x07, |
4503 | | distance_code: -1, |
4504 | | context: 0x03, |
4505 | | insert_len_offset: 0x0022, |
4506 | | copy_len_offset: 0x00c6, |
4507 | | }, |
4508 | | CmdLutElement { |
4509 | | insert_len_extra_bits: 0x04, |
4510 | | copy_len_extra_bits: 0x08, |
4511 | | distance_code: -1, |
4512 | | context: 0x03, |
4513 | | insert_len_offset: 0x0022, |
4514 | | copy_len_offset: 0x0146, |
4515 | | }, |
4516 | | CmdLutElement { |
4517 | | insert_len_extra_bits: 0x04, |
4518 | | copy_len_extra_bits: 0x09, |
4519 | | distance_code: -1, |
4520 | | context: 0x03, |
4521 | | insert_len_offset: 0x0022, |
4522 | | copy_len_offset: 0x0246, |
4523 | | }, |
4524 | | CmdLutElement { |
4525 | | insert_len_extra_bits: 0x04, |
4526 | | copy_len_extra_bits: 0x0a, |
4527 | | distance_code: -1, |
4528 | | context: 0x03, |
4529 | | insert_len_offset: 0x0022, |
4530 | | copy_len_offset: 0x0446, |
4531 | | }, |
4532 | | CmdLutElement { |
4533 | | insert_len_extra_bits: 0x04, |
4534 | | copy_len_extra_bits: 0x18, |
4535 | | distance_code: -1, |
4536 | | context: 0x03, |
4537 | | insert_len_offset: 0x0022, |
4538 | | copy_len_offset: 0x0846, |
4539 | | }, |
4540 | | CmdLutElement { |
4541 | | insert_len_extra_bits: 0x04, |
4542 | | copy_len_extra_bits: 0x05, |
4543 | | distance_code: -1, |
4544 | | context: 0x03, |
4545 | | insert_len_offset: 0x0032, |
4546 | | copy_len_offset: 0x0046, |
4547 | | }, |
4548 | | CmdLutElement { |
4549 | | insert_len_extra_bits: 0x04, |
4550 | | copy_len_extra_bits: 0x05, |
4551 | | distance_code: -1, |
4552 | | context: 0x03, |
4553 | | insert_len_offset: 0x0032, |
4554 | | copy_len_offset: 0x0066, |
4555 | | }, |
4556 | | CmdLutElement { |
4557 | | insert_len_extra_bits: 0x04, |
4558 | | copy_len_extra_bits: 0x06, |
4559 | | distance_code: -1, |
4560 | | context: 0x03, |
4561 | | insert_len_offset: 0x0032, |
4562 | | copy_len_offset: 0x0086, |
4563 | | }, |
4564 | | CmdLutElement { |
4565 | | insert_len_extra_bits: 0x04, |
4566 | | copy_len_extra_bits: 0x07, |
4567 | | distance_code: -1, |
4568 | | context: 0x03, |
4569 | | insert_len_offset: 0x0032, |
4570 | | copy_len_offset: 0x00c6, |
4571 | | }, |
4572 | | CmdLutElement { |
4573 | | insert_len_extra_bits: 0x04, |
4574 | | copy_len_extra_bits: 0x08, |
4575 | | distance_code: -1, |
4576 | | context: 0x03, |
4577 | | insert_len_offset: 0x0032, |
4578 | | copy_len_offset: 0x0146, |
4579 | | }, |
4580 | | CmdLutElement { |
4581 | | insert_len_extra_bits: 0x04, |
4582 | | copy_len_extra_bits: 0x09, |
4583 | | distance_code: -1, |
4584 | | context: 0x03, |
4585 | | insert_len_offset: 0x0032, |
4586 | | copy_len_offset: 0x0246, |
4587 | | }, |
4588 | | CmdLutElement { |
4589 | | insert_len_extra_bits: 0x04, |
4590 | | copy_len_extra_bits: 0x0a, |
4591 | | distance_code: -1, |
4592 | | context: 0x03, |
4593 | | insert_len_offset: 0x0032, |
4594 | | copy_len_offset: 0x0446, |
4595 | | }, |
4596 | | CmdLutElement { |
4597 | | insert_len_extra_bits: 0x04, |
4598 | | copy_len_extra_bits: 0x18, |
4599 | | distance_code: -1, |
4600 | | context: 0x03, |
4601 | | insert_len_offset: 0x0032, |
4602 | | copy_len_offset: 0x0846, |
4603 | | }, |
4604 | | CmdLutElement { |
4605 | | insert_len_extra_bits: 0x05, |
4606 | | copy_len_extra_bits: 0x05, |
4607 | | distance_code: -1, |
4608 | | context: 0x03, |
4609 | | insert_len_offset: 0x0042, |
4610 | | copy_len_offset: 0x0046, |
4611 | | }, |
4612 | | CmdLutElement { |
4613 | | insert_len_extra_bits: 0x05, |
4614 | | copy_len_extra_bits: 0x05, |
4615 | | distance_code: -1, |
4616 | | context: 0x03, |
4617 | | insert_len_offset: 0x0042, |
4618 | | copy_len_offset: 0x0066, |
4619 | | }, |
4620 | | CmdLutElement { |
4621 | | insert_len_extra_bits: 0x05, |
4622 | | copy_len_extra_bits: 0x06, |
4623 | | distance_code: -1, |
4624 | | context: 0x03, |
4625 | | insert_len_offset: 0x0042, |
4626 | | copy_len_offset: 0x0086, |
4627 | | }, |
4628 | | CmdLutElement { |
4629 | | insert_len_extra_bits: 0x05, |
4630 | | copy_len_extra_bits: 0x07, |
4631 | | distance_code: -1, |
4632 | | context: 0x03, |
4633 | | insert_len_offset: 0x0042, |
4634 | | copy_len_offset: 0x00c6, |
4635 | | }, |
4636 | | CmdLutElement { |
4637 | | insert_len_extra_bits: 0x05, |
4638 | | copy_len_extra_bits: 0x08, |
4639 | | distance_code: -1, |
4640 | | context: 0x03, |
4641 | | insert_len_offset: 0x0042, |
4642 | | copy_len_offset: 0x0146, |
4643 | | }, |
4644 | | CmdLutElement { |
4645 | | insert_len_extra_bits: 0x05, |
4646 | | copy_len_extra_bits: 0x09, |
4647 | | distance_code: -1, |
4648 | | context: 0x03, |
4649 | | insert_len_offset: 0x0042, |
4650 | | copy_len_offset: 0x0246, |
4651 | | }, |
4652 | | CmdLutElement { |
4653 | | insert_len_extra_bits: 0x05, |
4654 | | copy_len_extra_bits: 0x0a, |
4655 | | distance_code: -1, |
4656 | | context: 0x03, |
4657 | | insert_len_offset: 0x0042, |
4658 | | copy_len_offset: 0x0446, |
4659 | | }, |
4660 | | CmdLutElement { |
4661 | | insert_len_extra_bits: 0x05, |
4662 | | copy_len_extra_bits: 0x18, |
4663 | | distance_code: -1, |
4664 | | context: 0x03, |
4665 | | insert_len_offset: 0x0042, |
4666 | | copy_len_offset: 0x0846, |
4667 | | }, |
4668 | | CmdLutElement { |
4669 | | insert_len_extra_bits: 0x05, |
4670 | | copy_len_extra_bits: 0x05, |
4671 | | distance_code: -1, |
4672 | | context: 0x03, |
4673 | | insert_len_offset: 0x0062, |
4674 | | copy_len_offset: 0x0046, |
4675 | | }, |
4676 | | CmdLutElement { |
4677 | | insert_len_extra_bits: 0x05, |
4678 | | copy_len_extra_bits: 0x05, |
4679 | | distance_code: -1, |
4680 | | context: 0x03, |
4681 | | insert_len_offset: 0x0062, |
4682 | | copy_len_offset: 0x0066, |
4683 | | }, |
4684 | | CmdLutElement { |
4685 | | insert_len_extra_bits: 0x05, |
4686 | | copy_len_extra_bits: 0x06, |
4687 | | distance_code: -1, |
4688 | | context: 0x03, |
4689 | | insert_len_offset: 0x0062, |
4690 | | copy_len_offset: 0x0086, |
4691 | | }, |
4692 | | CmdLutElement { |
4693 | | insert_len_extra_bits: 0x05, |
4694 | | copy_len_extra_bits: 0x07, |
4695 | | distance_code: -1, |
4696 | | context: 0x03, |
4697 | | insert_len_offset: 0x0062, |
4698 | | copy_len_offset: 0x00c6, |
4699 | | }, |
4700 | | CmdLutElement { |
4701 | | insert_len_extra_bits: 0x05, |
4702 | | copy_len_extra_bits: 0x08, |
4703 | | distance_code: -1, |
4704 | | context: 0x03, |
4705 | | insert_len_offset: 0x0062, |
4706 | | copy_len_offset: 0x0146, |
4707 | | }, |
4708 | | CmdLutElement { |
4709 | | insert_len_extra_bits: 0x05, |
4710 | | copy_len_extra_bits: 0x09, |
4711 | | distance_code: -1, |
4712 | | context: 0x03, |
4713 | | insert_len_offset: 0x0062, |
4714 | | copy_len_offset: 0x0246, |
4715 | | }, |
4716 | | CmdLutElement { |
4717 | | insert_len_extra_bits: 0x05, |
4718 | | copy_len_extra_bits: 0x0a, |
4719 | | distance_code: -1, |
4720 | | context: 0x03, |
4721 | | insert_len_offset: 0x0062, |
4722 | | copy_len_offset: 0x0446, |
4723 | | }, |
4724 | | CmdLutElement { |
4725 | | insert_len_extra_bits: 0x05, |
4726 | | copy_len_extra_bits: 0x18, |
4727 | | distance_code: -1, |
4728 | | context: 0x03, |
4729 | | insert_len_offset: 0x0062, |
4730 | | copy_len_offset: 0x0846, |
4731 | | }, |
4732 | | CmdLutElement { |
4733 | | insert_len_extra_bits: 0x06, |
4734 | | copy_len_extra_bits: 0x01, |
4735 | | distance_code: -1, |
4736 | | context: 0x03, |
4737 | | insert_len_offset: 0x0082, |
4738 | | copy_len_offset: 0x000a, |
4739 | | }, |
4740 | | CmdLutElement { |
4741 | | insert_len_extra_bits: 0x06, |
4742 | | copy_len_extra_bits: 0x01, |
4743 | | distance_code: -1, |
4744 | | context: 0x03, |
4745 | | insert_len_offset: 0x0082, |
4746 | | copy_len_offset: 0x000c, |
4747 | | }, |
4748 | | CmdLutElement { |
4749 | | insert_len_extra_bits: 0x06, |
4750 | | copy_len_extra_bits: 0x02, |
4751 | | distance_code: -1, |
4752 | | context: 0x03, |
4753 | | insert_len_offset: 0x0082, |
4754 | | copy_len_offset: 0x000e, |
4755 | | }, |
4756 | | CmdLutElement { |
4757 | | insert_len_extra_bits: 0x06, |
4758 | | copy_len_extra_bits: 0x02, |
4759 | | distance_code: -1, |
4760 | | context: 0x03, |
4761 | | insert_len_offset: 0x0082, |
4762 | | copy_len_offset: 0x0012, |
4763 | | }, |
4764 | | CmdLutElement { |
4765 | | insert_len_extra_bits: 0x06, |
4766 | | copy_len_extra_bits: 0x03, |
4767 | | distance_code: -1, |
4768 | | context: 0x03, |
4769 | | insert_len_offset: 0x0082, |
4770 | | copy_len_offset: 0x0016, |
4771 | | }, |
4772 | | CmdLutElement { |
4773 | | insert_len_extra_bits: 0x06, |
4774 | | copy_len_extra_bits: 0x03, |
4775 | | distance_code: -1, |
4776 | | context: 0x03, |
4777 | | insert_len_offset: 0x0082, |
4778 | | copy_len_offset: 0x001e, |
4779 | | }, |
4780 | | CmdLutElement { |
4781 | | insert_len_extra_bits: 0x06, |
4782 | | copy_len_extra_bits: 0x04, |
4783 | | distance_code: -1, |
4784 | | context: 0x03, |
4785 | | insert_len_offset: 0x0082, |
4786 | | copy_len_offset: 0x0026, |
4787 | | }, |
4788 | | CmdLutElement { |
4789 | | insert_len_extra_bits: 0x06, |
4790 | | copy_len_extra_bits: 0x04, |
4791 | | distance_code: -1, |
4792 | | context: 0x03, |
4793 | | insert_len_offset: 0x0082, |
4794 | | copy_len_offset: 0x0036, |
4795 | | }, |
4796 | | CmdLutElement { |
4797 | | insert_len_extra_bits: 0x07, |
4798 | | copy_len_extra_bits: 0x01, |
4799 | | distance_code: -1, |
4800 | | context: 0x03, |
4801 | | insert_len_offset: 0x00c2, |
4802 | | copy_len_offset: 0x000a, |
4803 | | }, |
4804 | | CmdLutElement { |
4805 | | insert_len_extra_bits: 0x07, |
4806 | | copy_len_extra_bits: 0x01, |
4807 | | distance_code: -1, |
4808 | | context: 0x03, |
4809 | | insert_len_offset: 0x00c2, |
4810 | | copy_len_offset: 0x000c, |
4811 | | }, |
4812 | | CmdLutElement { |
4813 | | insert_len_extra_bits: 0x07, |
4814 | | copy_len_extra_bits: 0x02, |
4815 | | distance_code: -1, |
4816 | | context: 0x03, |
4817 | | insert_len_offset: 0x00c2, |
4818 | | copy_len_offset: 0x000e, |
4819 | | }, |
4820 | | CmdLutElement { |
4821 | | insert_len_extra_bits: 0x07, |
4822 | | copy_len_extra_bits: 0x02, |
4823 | | distance_code: -1, |
4824 | | context: 0x03, |
4825 | | insert_len_offset: 0x00c2, |
4826 | | copy_len_offset: 0x0012, |
4827 | | }, |
4828 | | CmdLutElement { |
4829 | | insert_len_extra_bits: 0x07, |
4830 | | copy_len_extra_bits: 0x03, |
4831 | | distance_code: -1, |
4832 | | context: 0x03, |
4833 | | insert_len_offset: 0x00c2, |
4834 | | copy_len_offset: 0x0016, |
4835 | | }, |
4836 | | CmdLutElement { |
4837 | | insert_len_extra_bits: 0x07, |
4838 | | copy_len_extra_bits: 0x03, |
4839 | | distance_code: -1, |
4840 | | context: 0x03, |
4841 | | insert_len_offset: 0x00c2, |
4842 | | copy_len_offset: 0x001e, |
4843 | | }, |
4844 | | CmdLutElement { |
4845 | | insert_len_extra_bits: 0x07, |
4846 | | copy_len_extra_bits: 0x04, |
4847 | | distance_code: -1, |
4848 | | context: 0x03, |
4849 | | insert_len_offset: 0x00c2, |
4850 | | copy_len_offset: 0x0026, |
4851 | | }, |
4852 | | CmdLutElement { |
4853 | | insert_len_extra_bits: 0x07, |
4854 | | copy_len_extra_bits: 0x04, |
4855 | | distance_code: -1, |
4856 | | context: 0x03, |
4857 | | insert_len_offset: 0x00c2, |
4858 | | copy_len_offset: 0x0036, |
4859 | | }, |
4860 | | CmdLutElement { |
4861 | | insert_len_extra_bits: 0x08, |
4862 | | copy_len_extra_bits: 0x01, |
4863 | | distance_code: -1, |
4864 | | context: 0x03, |
4865 | | insert_len_offset: 0x0142, |
4866 | | copy_len_offset: 0x000a, |
4867 | | }, |
4868 | | CmdLutElement { |
4869 | | insert_len_extra_bits: 0x08, |
4870 | | copy_len_extra_bits: 0x01, |
4871 | | distance_code: -1, |
4872 | | context: 0x03, |
4873 | | insert_len_offset: 0x0142, |
4874 | | copy_len_offset: 0x000c, |
4875 | | }, |
4876 | | CmdLutElement { |
4877 | | insert_len_extra_bits: 0x08, |
4878 | | copy_len_extra_bits: 0x02, |
4879 | | distance_code: -1, |
4880 | | context: 0x03, |
4881 | | insert_len_offset: 0x0142, |
4882 | | copy_len_offset: 0x000e, |
4883 | | }, |
4884 | | CmdLutElement { |
4885 | | insert_len_extra_bits: 0x08, |
4886 | | copy_len_extra_bits: 0x02, |
4887 | | distance_code: -1, |
4888 | | context: 0x03, |
4889 | | insert_len_offset: 0x0142, |
4890 | | copy_len_offset: 0x0012, |
4891 | | }, |
4892 | | CmdLutElement { |
4893 | | insert_len_extra_bits: 0x08, |
4894 | | copy_len_extra_bits: 0x03, |
4895 | | distance_code: -1, |
4896 | | context: 0x03, |
4897 | | insert_len_offset: 0x0142, |
4898 | | copy_len_offset: 0x0016, |
4899 | | }, |
4900 | | CmdLutElement { |
4901 | | insert_len_extra_bits: 0x08, |
4902 | | copy_len_extra_bits: 0x03, |
4903 | | distance_code: -1, |
4904 | | context: 0x03, |
4905 | | insert_len_offset: 0x0142, |
4906 | | copy_len_offset: 0x001e, |
4907 | | }, |
4908 | | CmdLutElement { |
4909 | | insert_len_extra_bits: 0x08, |
4910 | | copy_len_extra_bits: 0x04, |
4911 | | distance_code: -1, |
4912 | | context: 0x03, |
4913 | | insert_len_offset: 0x0142, |
4914 | | copy_len_offset: 0x0026, |
4915 | | }, |
4916 | | CmdLutElement { |
4917 | | insert_len_extra_bits: 0x08, |
4918 | | copy_len_extra_bits: 0x04, |
4919 | | distance_code: -1, |
4920 | | context: 0x03, |
4921 | | insert_len_offset: 0x0142, |
4922 | | copy_len_offset: 0x0036, |
4923 | | }, |
4924 | | CmdLutElement { |
4925 | | insert_len_extra_bits: 0x09, |
4926 | | copy_len_extra_bits: 0x01, |
4927 | | distance_code: -1, |
4928 | | context: 0x03, |
4929 | | insert_len_offset: 0x0242, |
4930 | | copy_len_offset: 0x000a, |
4931 | | }, |
4932 | | CmdLutElement { |
4933 | | insert_len_extra_bits: 0x09, |
4934 | | copy_len_extra_bits: 0x01, |
4935 | | distance_code: -1, |
4936 | | context: 0x03, |
4937 | | insert_len_offset: 0x0242, |
4938 | | copy_len_offset: 0x000c, |
4939 | | }, |
4940 | | CmdLutElement { |
4941 | | insert_len_extra_bits: 0x09, |
4942 | | copy_len_extra_bits: 0x02, |
4943 | | distance_code: -1, |
4944 | | context: 0x03, |
4945 | | insert_len_offset: 0x0242, |
4946 | | copy_len_offset: 0x000e, |
4947 | | }, |
4948 | | CmdLutElement { |
4949 | | insert_len_extra_bits: 0x09, |
4950 | | copy_len_extra_bits: 0x02, |
4951 | | distance_code: -1, |
4952 | | context: 0x03, |
4953 | | insert_len_offset: 0x0242, |
4954 | | copy_len_offset: 0x0012, |
4955 | | }, |
4956 | | CmdLutElement { |
4957 | | insert_len_extra_bits: 0x09, |
4958 | | copy_len_extra_bits: 0x03, |
4959 | | distance_code: -1, |
4960 | | context: 0x03, |
4961 | | insert_len_offset: 0x0242, |
4962 | | copy_len_offset: 0x0016, |
4963 | | }, |
4964 | | CmdLutElement { |
4965 | | insert_len_extra_bits: 0x09, |
4966 | | copy_len_extra_bits: 0x03, |
4967 | | distance_code: -1, |
4968 | | context: 0x03, |
4969 | | insert_len_offset: 0x0242, |
4970 | | copy_len_offset: 0x001e, |
4971 | | }, |
4972 | | CmdLutElement { |
4973 | | insert_len_extra_bits: 0x09, |
4974 | | copy_len_extra_bits: 0x04, |
4975 | | distance_code: -1, |
4976 | | context: 0x03, |
4977 | | insert_len_offset: 0x0242, |
4978 | | copy_len_offset: 0x0026, |
4979 | | }, |
4980 | | CmdLutElement { |
4981 | | insert_len_extra_bits: 0x09, |
4982 | | copy_len_extra_bits: 0x04, |
4983 | | distance_code: -1, |
4984 | | context: 0x03, |
4985 | | insert_len_offset: 0x0242, |
4986 | | copy_len_offset: 0x0036, |
4987 | | }, |
4988 | | CmdLutElement { |
4989 | | insert_len_extra_bits: 0x0a, |
4990 | | copy_len_extra_bits: 0x01, |
4991 | | distance_code: -1, |
4992 | | context: 0x03, |
4993 | | insert_len_offset: 0x0442, |
4994 | | copy_len_offset: 0x000a, |
4995 | | }, |
4996 | | CmdLutElement { |
4997 | | insert_len_extra_bits: 0x0a, |
4998 | | copy_len_extra_bits: 0x01, |
4999 | | distance_code: -1, |
5000 | | context: 0x03, |
5001 | | insert_len_offset: 0x0442, |
5002 | | copy_len_offset: 0x000c, |
5003 | | }, |
5004 | | CmdLutElement { |
5005 | | insert_len_extra_bits: 0x0a, |
5006 | | copy_len_extra_bits: 0x02, |
5007 | | distance_code: -1, |
5008 | | context: 0x03, |
5009 | | insert_len_offset: 0x0442, |
5010 | | copy_len_offset: 0x000e, |
5011 | | }, |
5012 | | CmdLutElement { |
5013 | | insert_len_extra_bits: 0x0a, |
5014 | | copy_len_extra_bits: 0x02, |
5015 | | distance_code: -1, |
5016 | | context: 0x03, |
5017 | | insert_len_offset: 0x0442, |
5018 | | copy_len_offset: 0x0012, |
5019 | | }, |
5020 | | CmdLutElement { |
5021 | | insert_len_extra_bits: 0x0a, |
5022 | | copy_len_extra_bits: 0x03, |
5023 | | distance_code: -1, |
5024 | | context: 0x03, |
5025 | | insert_len_offset: 0x0442, |
5026 | | copy_len_offset: 0x0016, |
5027 | | }, |
5028 | | CmdLutElement { |
5029 | | insert_len_extra_bits: 0x0a, |
5030 | | copy_len_extra_bits: 0x03, |
5031 | | distance_code: -1, |
5032 | | context: 0x03, |
5033 | | insert_len_offset: 0x0442, |
5034 | | copy_len_offset: 0x001e, |
5035 | | }, |
5036 | | CmdLutElement { |
5037 | | insert_len_extra_bits: 0x0a, |
5038 | | copy_len_extra_bits: 0x04, |
5039 | | distance_code: -1, |
5040 | | context: 0x03, |
5041 | | insert_len_offset: 0x0442, |
5042 | | copy_len_offset: 0x0026, |
5043 | | }, |
5044 | | CmdLutElement { |
5045 | | insert_len_extra_bits: 0x0a, |
5046 | | copy_len_extra_bits: 0x04, |
5047 | | distance_code: -1, |
5048 | | context: 0x03, |
5049 | | insert_len_offset: 0x0442, |
5050 | | copy_len_offset: 0x0036, |
5051 | | }, |
5052 | | CmdLutElement { |
5053 | | insert_len_extra_bits: 0x0c, |
5054 | | copy_len_extra_bits: 0x01, |
5055 | | distance_code: -1, |
5056 | | context: 0x03, |
5057 | | insert_len_offset: 0x0842, |
5058 | | copy_len_offset: 0x000a, |
5059 | | }, |
5060 | | CmdLutElement { |
5061 | | insert_len_extra_bits: 0x0c, |
5062 | | copy_len_extra_bits: 0x01, |
5063 | | distance_code: -1, |
5064 | | context: 0x03, |
5065 | | insert_len_offset: 0x0842, |
5066 | | copy_len_offset: 0x000c, |
5067 | | }, |
5068 | | CmdLutElement { |
5069 | | insert_len_extra_bits: 0x0c, |
5070 | | copy_len_extra_bits: 0x02, |
5071 | | distance_code: -1, |
5072 | | context: 0x03, |
5073 | | insert_len_offset: 0x0842, |
5074 | | copy_len_offset: 0x000e, |
5075 | | }, |
5076 | | CmdLutElement { |
5077 | | insert_len_extra_bits: 0x0c, |
5078 | | copy_len_extra_bits: 0x02, |
5079 | | distance_code: -1, |
5080 | | context: 0x03, |
5081 | | insert_len_offset: 0x0842, |
5082 | | copy_len_offset: 0x0012, |
5083 | | }, |
5084 | | CmdLutElement { |
5085 | | insert_len_extra_bits: 0x0c, |
5086 | | copy_len_extra_bits: 0x03, |
5087 | | distance_code: -1, |
5088 | | context: 0x03, |
5089 | | insert_len_offset: 0x0842, |
5090 | | copy_len_offset: 0x0016, |
5091 | | }, |
5092 | | CmdLutElement { |
5093 | | insert_len_extra_bits: 0x0c, |
5094 | | copy_len_extra_bits: 0x03, |
5095 | | distance_code: -1, |
5096 | | context: 0x03, |
5097 | | insert_len_offset: 0x0842, |
5098 | | copy_len_offset: 0x001e, |
5099 | | }, |
5100 | | CmdLutElement { |
5101 | | insert_len_extra_bits: 0x0c, |
5102 | | copy_len_extra_bits: 0x04, |
5103 | | distance_code: -1, |
5104 | | context: 0x03, |
5105 | | insert_len_offset: 0x0842, |
5106 | | copy_len_offset: 0x0026, |
5107 | | }, |
5108 | | CmdLutElement { |
5109 | | insert_len_extra_bits: 0x0c, |
5110 | | copy_len_extra_bits: 0x04, |
5111 | | distance_code: -1, |
5112 | | context: 0x03, |
5113 | | insert_len_offset: 0x0842, |
5114 | | copy_len_offset: 0x0036, |
5115 | | }, |
5116 | | CmdLutElement { |
5117 | | insert_len_extra_bits: 0x0e, |
5118 | | copy_len_extra_bits: 0x01, |
5119 | | distance_code: -1, |
5120 | | context: 0x03, |
5121 | | insert_len_offset: 0x1842, |
5122 | | copy_len_offset: 0x000a, |
5123 | | }, |
5124 | | CmdLutElement { |
5125 | | insert_len_extra_bits: 0x0e, |
5126 | | copy_len_extra_bits: 0x01, |
5127 | | distance_code: -1, |
5128 | | context: 0x03, |
5129 | | insert_len_offset: 0x1842, |
5130 | | copy_len_offset: 0x000c, |
5131 | | }, |
5132 | | CmdLutElement { |
5133 | | insert_len_extra_bits: 0x0e, |
5134 | | copy_len_extra_bits: 0x02, |
5135 | | distance_code: -1, |
5136 | | context: 0x03, |
5137 | | insert_len_offset: 0x1842, |
5138 | | copy_len_offset: 0x000e, |
5139 | | }, |
5140 | | CmdLutElement { |
5141 | | insert_len_extra_bits: 0x0e, |
5142 | | copy_len_extra_bits: 0x02, |
5143 | | distance_code: -1, |
5144 | | context: 0x03, |
5145 | | insert_len_offset: 0x1842, |
5146 | | copy_len_offset: 0x0012, |
5147 | | }, |
5148 | | CmdLutElement { |
5149 | | insert_len_extra_bits: 0x0e, |
5150 | | copy_len_extra_bits: 0x03, |
5151 | | distance_code: -1, |
5152 | | context: 0x03, |
5153 | | insert_len_offset: 0x1842, |
5154 | | copy_len_offset: 0x0016, |
5155 | | }, |
5156 | | CmdLutElement { |
5157 | | insert_len_extra_bits: 0x0e, |
5158 | | copy_len_extra_bits: 0x03, |
5159 | | distance_code: -1, |
5160 | | context: 0x03, |
5161 | | insert_len_offset: 0x1842, |
5162 | | copy_len_offset: 0x001e, |
5163 | | }, |
5164 | | CmdLutElement { |
5165 | | insert_len_extra_bits: 0x0e, |
5166 | | copy_len_extra_bits: 0x04, |
5167 | | distance_code: -1, |
5168 | | context: 0x03, |
5169 | | insert_len_offset: 0x1842, |
5170 | | copy_len_offset: 0x0026, |
5171 | | }, |
5172 | | CmdLutElement { |
5173 | | insert_len_extra_bits: 0x0e, |
5174 | | copy_len_extra_bits: 0x04, |
5175 | | distance_code: -1, |
5176 | | context: 0x03, |
5177 | | insert_len_offset: 0x1842, |
5178 | | copy_len_offset: 0x0036, |
5179 | | }, |
5180 | | CmdLutElement { |
5181 | | insert_len_extra_bits: 0x18, |
5182 | | copy_len_extra_bits: 0x01, |
5183 | | distance_code: -1, |
5184 | | context: 0x03, |
5185 | | insert_len_offset: 0x5842, |
5186 | | copy_len_offset: 0x000a, |
5187 | | }, |
5188 | | CmdLutElement { |
5189 | | insert_len_extra_bits: 0x18, |
5190 | | copy_len_extra_bits: 0x01, |
5191 | | distance_code: -1, |
5192 | | context: 0x03, |
5193 | | insert_len_offset: 0x5842, |
5194 | | copy_len_offset: 0x000c, |
5195 | | }, |
5196 | | CmdLutElement { |
5197 | | insert_len_extra_bits: 0x18, |
5198 | | copy_len_extra_bits: 0x02, |
5199 | | distance_code: -1, |
5200 | | context: 0x03, |
5201 | | insert_len_offset: 0x5842, |
5202 | | copy_len_offset: 0x000e, |
5203 | | }, |
5204 | | CmdLutElement { |
5205 | | insert_len_extra_bits: 0x18, |
5206 | | copy_len_extra_bits: 0x02, |
5207 | | distance_code: -1, |
5208 | | context: 0x03, |
5209 | | insert_len_offset: 0x5842, |
5210 | | copy_len_offset: 0x0012, |
5211 | | }, |
5212 | | CmdLutElement { |
5213 | | insert_len_extra_bits: 0x18, |
5214 | | copy_len_extra_bits: 0x03, |
5215 | | distance_code: -1, |
5216 | | context: 0x03, |
5217 | | insert_len_offset: 0x5842, |
5218 | | copy_len_offset: 0x0016, |
5219 | | }, |
5220 | | CmdLutElement { |
5221 | | insert_len_extra_bits: 0x18, |
5222 | | copy_len_extra_bits: 0x03, |
5223 | | distance_code: -1, |
5224 | | context: 0x03, |
5225 | | insert_len_offset: 0x5842, |
5226 | | copy_len_offset: 0x001e, |
5227 | | }, |
5228 | | CmdLutElement { |
5229 | | insert_len_extra_bits: 0x18, |
5230 | | copy_len_extra_bits: 0x04, |
5231 | | distance_code: -1, |
5232 | | context: 0x03, |
5233 | | insert_len_offset: 0x5842, |
5234 | | copy_len_offset: 0x0026, |
5235 | | }, |
5236 | | CmdLutElement { |
5237 | | insert_len_extra_bits: 0x18, |
5238 | | copy_len_extra_bits: 0x04, |
5239 | | distance_code: -1, |
5240 | | context: 0x03, |
5241 | | insert_len_offset: 0x5842, |
5242 | | copy_len_offset: 0x0036, |
5243 | | }, |
5244 | | CmdLutElement { |
5245 | | insert_len_extra_bits: 0x06, |
5246 | | copy_len_extra_bits: 0x05, |
5247 | | distance_code: -1, |
5248 | | context: 0x03, |
5249 | | insert_len_offset: 0x0082, |
5250 | | copy_len_offset: 0x0046, |
5251 | | }, |
5252 | | CmdLutElement { |
5253 | | insert_len_extra_bits: 0x06, |
5254 | | copy_len_extra_bits: 0x05, |
5255 | | distance_code: -1, |
5256 | | context: 0x03, |
5257 | | insert_len_offset: 0x0082, |
5258 | | copy_len_offset: 0x0066, |
5259 | | }, |
5260 | | CmdLutElement { |
5261 | | insert_len_extra_bits: 0x06, |
5262 | | copy_len_extra_bits: 0x06, |
5263 | | distance_code: -1, |
5264 | | context: 0x03, |
5265 | | insert_len_offset: 0x0082, |
5266 | | copy_len_offset: 0x0086, |
5267 | | }, |
5268 | | CmdLutElement { |
5269 | | insert_len_extra_bits: 0x06, |
5270 | | copy_len_extra_bits: 0x07, |
5271 | | distance_code: -1, |
5272 | | context: 0x03, |
5273 | | insert_len_offset: 0x0082, |
5274 | | copy_len_offset: 0x00c6, |
5275 | | }, |
5276 | | CmdLutElement { |
5277 | | insert_len_extra_bits: 0x06, |
5278 | | copy_len_extra_bits: 0x08, |
5279 | | distance_code: -1, |
5280 | | context: 0x03, |
5281 | | insert_len_offset: 0x0082, |
5282 | | copy_len_offset: 0x0146, |
5283 | | }, |
5284 | | CmdLutElement { |
5285 | | insert_len_extra_bits: 0x06, |
5286 | | copy_len_extra_bits: 0x09, |
5287 | | distance_code: -1, |
5288 | | context: 0x03, |
5289 | | insert_len_offset: 0x0082, |
5290 | | copy_len_offset: 0x0246, |
5291 | | }, |
5292 | | CmdLutElement { |
5293 | | insert_len_extra_bits: 0x06, |
5294 | | copy_len_extra_bits: 0x0a, |
5295 | | distance_code: -1, |
5296 | | context: 0x03, |
5297 | | insert_len_offset: 0x0082, |
5298 | | copy_len_offset: 0x0446, |
5299 | | }, |
5300 | | CmdLutElement { |
5301 | | insert_len_extra_bits: 0x06, |
5302 | | copy_len_extra_bits: 0x18, |
5303 | | distance_code: -1, |
5304 | | context: 0x03, |
5305 | | insert_len_offset: 0x0082, |
5306 | | copy_len_offset: 0x0846, |
5307 | | }, |
5308 | | CmdLutElement { |
5309 | | insert_len_extra_bits: 0x07, |
5310 | | copy_len_extra_bits: 0x05, |
5311 | | distance_code: -1, |
5312 | | context: 0x03, |
5313 | | insert_len_offset: 0x00c2, |
5314 | | copy_len_offset: 0x0046, |
5315 | | }, |
5316 | | CmdLutElement { |
5317 | | insert_len_extra_bits: 0x07, |
5318 | | copy_len_extra_bits: 0x05, |
5319 | | distance_code: -1, |
5320 | | context: 0x03, |
5321 | | insert_len_offset: 0x00c2, |
5322 | | copy_len_offset: 0x0066, |
5323 | | }, |
5324 | | CmdLutElement { |
5325 | | insert_len_extra_bits: 0x07, |
5326 | | copy_len_extra_bits: 0x06, |
5327 | | distance_code: -1, |
5328 | | context: 0x03, |
5329 | | insert_len_offset: 0x00c2, |
5330 | | copy_len_offset: 0x0086, |
5331 | | }, |
5332 | | CmdLutElement { |
5333 | | insert_len_extra_bits: 0x07, |
5334 | | copy_len_extra_bits: 0x07, |
5335 | | distance_code: -1, |
5336 | | context: 0x03, |
5337 | | insert_len_offset: 0x00c2, |
5338 | | copy_len_offset: 0x00c6, |
5339 | | }, |
5340 | | CmdLutElement { |
5341 | | insert_len_extra_bits: 0x07, |
5342 | | copy_len_extra_bits: 0x08, |
5343 | | distance_code: -1, |
5344 | | context: 0x03, |
5345 | | insert_len_offset: 0x00c2, |
5346 | | copy_len_offset: 0x0146, |
5347 | | }, |
5348 | | CmdLutElement { |
5349 | | insert_len_extra_bits: 0x07, |
5350 | | copy_len_extra_bits: 0x09, |
5351 | | distance_code: -1, |
5352 | | context: 0x03, |
5353 | | insert_len_offset: 0x00c2, |
5354 | | copy_len_offset: 0x0246, |
5355 | | }, |
5356 | | CmdLutElement { |
5357 | | insert_len_extra_bits: 0x07, |
5358 | | copy_len_extra_bits: 0x0a, |
5359 | | distance_code: -1, |
5360 | | context: 0x03, |
5361 | | insert_len_offset: 0x00c2, |
5362 | | copy_len_offset: 0x0446, |
5363 | | }, |
5364 | | CmdLutElement { |
5365 | | insert_len_extra_bits: 0x07, |
5366 | | copy_len_extra_bits: 0x18, |
5367 | | distance_code: -1, |
5368 | | context: 0x03, |
5369 | | insert_len_offset: 0x00c2, |
5370 | | copy_len_offset: 0x0846, |
5371 | | }, |
5372 | | CmdLutElement { |
5373 | | insert_len_extra_bits: 0x08, |
5374 | | copy_len_extra_bits: 0x05, |
5375 | | distance_code: -1, |
5376 | | context: 0x03, |
5377 | | insert_len_offset: 0x0142, |
5378 | | copy_len_offset: 0x0046, |
5379 | | }, |
5380 | | CmdLutElement { |
5381 | | insert_len_extra_bits: 0x08, |
5382 | | copy_len_extra_bits: 0x05, |
5383 | | distance_code: -1, |
5384 | | context: 0x03, |
5385 | | insert_len_offset: 0x0142, |
5386 | | copy_len_offset: 0x0066, |
5387 | | }, |
5388 | | CmdLutElement { |
5389 | | insert_len_extra_bits: 0x08, |
5390 | | copy_len_extra_bits: 0x06, |
5391 | | distance_code: -1, |
5392 | | context: 0x03, |
5393 | | insert_len_offset: 0x0142, |
5394 | | copy_len_offset: 0x0086, |
5395 | | }, |
5396 | | CmdLutElement { |
5397 | | insert_len_extra_bits: 0x08, |
5398 | | copy_len_extra_bits: 0x07, |
5399 | | distance_code: -1, |
5400 | | context: 0x03, |
5401 | | insert_len_offset: 0x0142, |
5402 | | copy_len_offset: 0x00c6, |
5403 | | }, |
5404 | | CmdLutElement { |
5405 | | insert_len_extra_bits: 0x08, |
5406 | | copy_len_extra_bits: 0x08, |
5407 | | distance_code: -1, |
5408 | | context: 0x03, |
5409 | | insert_len_offset: 0x0142, |
5410 | | copy_len_offset: 0x0146, |
5411 | | }, |
5412 | | CmdLutElement { |
5413 | | insert_len_extra_bits: 0x08, |
5414 | | copy_len_extra_bits: 0x09, |
5415 | | distance_code: -1, |
5416 | | context: 0x03, |
5417 | | insert_len_offset: 0x0142, |
5418 | | copy_len_offset: 0x0246, |
5419 | | }, |
5420 | | CmdLutElement { |
5421 | | insert_len_extra_bits: 0x08, |
5422 | | copy_len_extra_bits: 0x0a, |
5423 | | distance_code: -1, |
5424 | | context: 0x03, |
5425 | | insert_len_offset: 0x0142, |
5426 | | copy_len_offset: 0x0446, |
5427 | | }, |
5428 | | CmdLutElement { |
5429 | | insert_len_extra_bits: 0x08, |
5430 | | copy_len_extra_bits: 0x18, |
5431 | | distance_code: -1, |
5432 | | context: 0x03, |
5433 | | insert_len_offset: 0x0142, |
5434 | | copy_len_offset: 0x0846, |
5435 | | }, |
5436 | | CmdLutElement { |
5437 | | insert_len_extra_bits: 0x09, |
5438 | | copy_len_extra_bits: 0x05, |
5439 | | distance_code: -1, |
5440 | | context: 0x03, |
5441 | | insert_len_offset: 0x0242, |
5442 | | copy_len_offset: 0x0046, |
5443 | | }, |
5444 | | CmdLutElement { |
5445 | | insert_len_extra_bits: 0x09, |
5446 | | copy_len_extra_bits: 0x05, |
5447 | | distance_code: -1, |
5448 | | context: 0x03, |
5449 | | insert_len_offset: 0x0242, |
5450 | | copy_len_offset: 0x0066, |
5451 | | }, |
5452 | | CmdLutElement { |
5453 | | insert_len_extra_bits: 0x09, |
5454 | | copy_len_extra_bits: 0x06, |
5455 | | distance_code: -1, |
5456 | | context: 0x03, |
5457 | | insert_len_offset: 0x0242, |
5458 | | copy_len_offset: 0x0086, |
5459 | | }, |
5460 | | CmdLutElement { |
5461 | | insert_len_extra_bits: 0x09, |
5462 | | copy_len_extra_bits: 0x07, |
5463 | | distance_code: -1, |
5464 | | context: 0x03, |
5465 | | insert_len_offset: 0x0242, |
5466 | | copy_len_offset: 0x00c6, |
5467 | | }, |
5468 | | CmdLutElement { |
5469 | | insert_len_extra_bits: 0x09, |
5470 | | copy_len_extra_bits: 0x08, |
5471 | | distance_code: -1, |
5472 | | context: 0x03, |
5473 | | insert_len_offset: 0x0242, |
5474 | | copy_len_offset: 0x0146, |
5475 | | }, |
5476 | | CmdLutElement { |
5477 | | insert_len_extra_bits: 0x09, |
5478 | | copy_len_extra_bits: 0x09, |
5479 | | distance_code: -1, |
5480 | | context: 0x03, |
5481 | | insert_len_offset: 0x0242, |
5482 | | copy_len_offset: 0x0246, |
5483 | | }, |
5484 | | CmdLutElement { |
5485 | | insert_len_extra_bits: 0x09, |
5486 | | copy_len_extra_bits: 0x0a, |
5487 | | distance_code: -1, |
5488 | | context: 0x03, |
5489 | | insert_len_offset: 0x0242, |
5490 | | copy_len_offset: 0x0446, |
5491 | | }, |
5492 | | CmdLutElement { |
5493 | | insert_len_extra_bits: 0x09, |
5494 | | copy_len_extra_bits: 0x18, |
5495 | | distance_code: -1, |
5496 | | context: 0x03, |
5497 | | insert_len_offset: 0x0242, |
5498 | | copy_len_offset: 0x0846, |
5499 | | }, |
5500 | | CmdLutElement { |
5501 | | insert_len_extra_bits: 0x0a, |
5502 | | copy_len_extra_bits: 0x05, |
5503 | | distance_code: -1, |
5504 | | context: 0x03, |
5505 | | insert_len_offset: 0x0442, |
5506 | | copy_len_offset: 0x0046, |
5507 | | }, |
5508 | | CmdLutElement { |
5509 | | insert_len_extra_bits: 0x0a, |
5510 | | copy_len_extra_bits: 0x05, |
5511 | | distance_code: -1, |
5512 | | context: 0x03, |
5513 | | insert_len_offset: 0x0442, |
5514 | | copy_len_offset: 0x0066, |
5515 | | }, |
5516 | | CmdLutElement { |
5517 | | insert_len_extra_bits: 0x0a, |
5518 | | copy_len_extra_bits: 0x06, |
5519 | | distance_code: -1, |
5520 | | context: 0x03, |
5521 | | insert_len_offset: 0x0442, |
5522 | | copy_len_offset: 0x0086, |
5523 | | }, |
5524 | | CmdLutElement { |
5525 | | insert_len_extra_bits: 0x0a, |
5526 | | copy_len_extra_bits: 0x07, |
5527 | | distance_code: -1, |
5528 | | context: 0x03, |
5529 | | insert_len_offset: 0x0442, |
5530 | | copy_len_offset: 0x00c6, |
5531 | | }, |
5532 | | CmdLutElement { |
5533 | | insert_len_extra_bits: 0x0a, |
5534 | | copy_len_extra_bits: 0x08, |
5535 | | distance_code: -1, |
5536 | | context: 0x03, |
5537 | | insert_len_offset: 0x0442, |
5538 | | copy_len_offset: 0x0146, |
5539 | | }, |
5540 | | CmdLutElement { |
5541 | | insert_len_extra_bits: 0x0a, |
5542 | | copy_len_extra_bits: 0x09, |
5543 | | distance_code: -1, |
5544 | | context: 0x03, |
5545 | | insert_len_offset: 0x0442, |
5546 | | copy_len_offset: 0x0246, |
5547 | | }, |
5548 | | CmdLutElement { |
5549 | | insert_len_extra_bits: 0x0a, |
5550 | | copy_len_extra_bits: 0x0a, |
5551 | | distance_code: -1, |
5552 | | context: 0x03, |
5553 | | insert_len_offset: 0x0442, |
5554 | | copy_len_offset: 0x0446, |
5555 | | }, |
5556 | | CmdLutElement { |
5557 | | insert_len_extra_bits: 0x0a, |
5558 | | copy_len_extra_bits: 0x18, |
5559 | | distance_code: -1, |
5560 | | context: 0x03, |
5561 | | insert_len_offset: 0x0442, |
5562 | | copy_len_offset: 0x0846, |
5563 | | }, |
5564 | | CmdLutElement { |
5565 | | insert_len_extra_bits: 0x0c, |
5566 | | copy_len_extra_bits: 0x05, |
5567 | | distance_code: -1, |
5568 | | context: 0x03, |
5569 | | insert_len_offset: 0x0842, |
5570 | | copy_len_offset: 0x0046, |
5571 | | }, |
5572 | | CmdLutElement { |
5573 | | insert_len_extra_bits: 0x0c, |
5574 | | copy_len_extra_bits: 0x05, |
5575 | | distance_code: -1, |
5576 | | context: 0x03, |
5577 | | insert_len_offset: 0x0842, |
5578 | | copy_len_offset: 0x0066, |
5579 | | }, |
5580 | | CmdLutElement { |
5581 | | insert_len_extra_bits: 0x0c, |
5582 | | copy_len_extra_bits: 0x06, |
5583 | | distance_code: -1, |
5584 | | context: 0x03, |
5585 | | insert_len_offset: 0x0842, |
5586 | | copy_len_offset: 0x0086, |
5587 | | }, |
5588 | | CmdLutElement { |
5589 | | insert_len_extra_bits: 0x0c, |
5590 | | copy_len_extra_bits: 0x07, |
5591 | | distance_code: -1, |
5592 | | context: 0x03, |
5593 | | insert_len_offset: 0x0842, |
5594 | | copy_len_offset: 0x00c6, |
5595 | | }, |
5596 | | CmdLutElement { |
5597 | | insert_len_extra_bits: 0x0c, |
5598 | | copy_len_extra_bits: 0x08, |
5599 | | distance_code: -1, |
5600 | | context: 0x03, |
5601 | | insert_len_offset: 0x0842, |
5602 | | copy_len_offset: 0x0146, |
5603 | | }, |
5604 | | CmdLutElement { |
5605 | | insert_len_extra_bits: 0x0c, |
5606 | | copy_len_extra_bits: 0x09, |
5607 | | distance_code: -1, |
5608 | | context: 0x03, |
5609 | | insert_len_offset: 0x0842, |
5610 | | copy_len_offset: 0x0246, |
5611 | | }, |
5612 | | CmdLutElement { |
5613 | | insert_len_extra_bits: 0x0c, |
5614 | | copy_len_extra_bits: 0x0a, |
5615 | | distance_code: -1, |
5616 | | context: 0x03, |
5617 | | insert_len_offset: 0x0842, |
5618 | | copy_len_offset: 0x0446, |
5619 | | }, |
5620 | | CmdLutElement { |
5621 | | insert_len_extra_bits: 0x0c, |
5622 | | copy_len_extra_bits: 0x18, |
5623 | | distance_code: -1, |
5624 | | context: 0x03, |
5625 | | insert_len_offset: 0x0842, |
5626 | | copy_len_offset: 0x0846, |
5627 | | }, |
5628 | | CmdLutElement { |
5629 | | insert_len_extra_bits: 0x0e, |
5630 | | copy_len_extra_bits: 0x05, |
5631 | | distance_code: -1, |
5632 | | context: 0x03, |
5633 | | insert_len_offset: 0x1842, |
5634 | | copy_len_offset: 0x0046, |
5635 | | }, |
5636 | | CmdLutElement { |
5637 | | insert_len_extra_bits: 0x0e, |
5638 | | copy_len_extra_bits: 0x05, |
5639 | | distance_code: -1, |
5640 | | context: 0x03, |
5641 | | insert_len_offset: 0x1842, |
5642 | | copy_len_offset: 0x0066, |
5643 | | }, |
5644 | | CmdLutElement { |
5645 | | insert_len_extra_bits: 0x0e, |
5646 | | copy_len_extra_bits: 0x06, |
5647 | | distance_code: -1, |
5648 | | context: 0x03, |
5649 | | insert_len_offset: 0x1842, |
5650 | | copy_len_offset: 0x0086, |
5651 | | }, |
5652 | | CmdLutElement { |
5653 | | insert_len_extra_bits: 0x0e, |
5654 | | copy_len_extra_bits: 0x07, |
5655 | | distance_code: -1, |
5656 | | context: 0x03, |
5657 | | insert_len_offset: 0x1842, |
5658 | | copy_len_offset: 0x00c6, |
5659 | | }, |
5660 | | CmdLutElement { |
5661 | | insert_len_extra_bits: 0x0e, |
5662 | | copy_len_extra_bits: 0x08, |
5663 | | distance_code: -1, |
5664 | | context: 0x03, |
5665 | | insert_len_offset: 0x1842, |
5666 | | copy_len_offset: 0x0146, |
5667 | | }, |
5668 | | CmdLutElement { |
5669 | | insert_len_extra_bits: 0x0e, |
5670 | | copy_len_extra_bits: 0x09, |
5671 | | distance_code: -1, |
5672 | | context: 0x03, |
5673 | | insert_len_offset: 0x1842, |
5674 | | copy_len_offset: 0x0246, |
5675 | | }, |
5676 | | CmdLutElement { |
5677 | | insert_len_extra_bits: 0x0e, |
5678 | | copy_len_extra_bits: 0x0a, |
5679 | | distance_code: -1, |
5680 | | context: 0x03, |
5681 | | insert_len_offset: 0x1842, |
5682 | | copy_len_offset: 0x0446, |
5683 | | }, |
5684 | | CmdLutElement { |
5685 | | insert_len_extra_bits: 0x0e, |
5686 | | copy_len_extra_bits: 0x18, |
5687 | | distance_code: -1, |
5688 | | context: 0x03, |
5689 | | insert_len_offset: 0x1842, |
5690 | | copy_len_offset: 0x0846, |
5691 | | }, |
5692 | | CmdLutElement { |
5693 | | insert_len_extra_bits: 0x18, |
5694 | | copy_len_extra_bits: 0x05, |
5695 | | distance_code: -1, |
5696 | | context: 0x03, |
5697 | | insert_len_offset: 0x5842, |
5698 | | copy_len_offset: 0x0046, |
5699 | | }, |
5700 | | CmdLutElement { |
5701 | | insert_len_extra_bits: 0x18, |
5702 | | copy_len_extra_bits: 0x05, |
5703 | | distance_code: -1, |
5704 | | context: 0x03, |
5705 | | insert_len_offset: 0x5842, |
5706 | | copy_len_offset: 0x0066, |
5707 | | }, |
5708 | | CmdLutElement { |
5709 | | insert_len_extra_bits: 0x18, |
5710 | | copy_len_extra_bits: 0x06, |
5711 | | distance_code: -1, |
5712 | | context: 0x03, |
5713 | | insert_len_offset: 0x5842, |
5714 | | copy_len_offset: 0x0086, |
5715 | | }, |
5716 | | CmdLutElement { |
5717 | | insert_len_extra_bits: 0x18, |
5718 | | copy_len_extra_bits: 0x07, |
5719 | | distance_code: -1, |
5720 | | context: 0x03, |
5721 | | insert_len_offset: 0x5842, |
5722 | | copy_len_offset: 0x00c6, |
5723 | | }, |
5724 | | CmdLutElement { |
5725 | | insert_len_extra_bits: 0x18, |
5726 | | copy_len_extra_bits: 0x08, |
5727 | | distance_code: -1, |
5728 | | context: 0x03, |
5729 | | insert_len_offset: 0x5842, |
5730 | | copy_len_offset: 0x0146, |
5731 | | }, |
5732 | | CmdLutElement { |
5733 | | insert_len_extra_bits: 0x18, |
5734 | | copy_len_extra_bits: 0x09, |
5735 | | distance_code: -1, |
5736 | | context: 0x03, |
5737 | | insert_len_offset: 0x5842, |
5738 | | copy_len_offset: 0x0246, |
5739 | | }, |
5740 | | CmdLutElement { |
5741 | | insert_len_extra_bits: 0x18, |
5742 | | copy_len_extra_bits: 0x0a, |
5743 | | distance_code: -1, |
5744 | | context: 0x03, |
5745 | | insert_len_offset: 0x5842, |
5746 | | copy_len_offset: 0x0446, |
5747 | | }, |
5748 | | CmdLutElement { |
5749 | | insert_len_extra_bits: 0x18, |
5750 | | copy_len_extra_bits: 0x18, |
5751 | | distance_code: -1, |
5752 | | context: 0x03, |
5753 | | insert_len_offset: 0x5842, |
5754 | | copy_len_offset: 0x0846, |
5755 | | }]; |