annotate rv34vlc.h @ 12530:63edd10ad4bc libavcodec tip

Try to fix crashes introduced by r25218 r25218 made assumptions about the existence of past reference frames that weren't necessarily true.
author darkshikari
date Tue, 28 Sep 2010 09:06:22 +0000
parents e8cf7f5fb715
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5965
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1 /*
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2 * RealVideo 3/4 decoder
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3 * Copyright (c) 2007 Konstantin Shishkov
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4 *
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
5 * This file is part of FFmpeg.
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
6 *
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
7 * FFmpeg is free software; you can redistribute it and/or
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
9 * License as published by the Free Software Foundation; either
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
10 * version 2.1 of the License, or (at your option) any later version.
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
11 *
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
12 * FFmpeg is distributed in the hope that it will be useful,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
15 * Lesser General Public License for more details.
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
16 *
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
17 * You should have received a copy of the GNU Lesser General Public
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
18 * License along with FFmpeg; if not, write to the Free Software
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
20 */
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
21
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
22 /**
11644
7dd2a45249a9 Remove explicit filename from Doxygen @file commands.
diego
parents: 8718
diff changeset
23 * @file
5981
b60d7f351e9d cosmetics: comment spelling fixes
diego
parents: 5965
diff changeset
24 * RV30/40 VLC tables
5965
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
25 */
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
26
7760
c4a4495715dd Globally rename the header inclusion guard names.
stefano
parents: 5996
diff changeset
27 #ifndef AVCODEC_RV34VLC_H
c4a4495715dd Globally rename the header inclusion guard names.
stefano
parents: 5996
diff changeset
28 #define AVCODEC_RV34VLC_H
5965
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
29
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
30 #include <stdint.h>
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
31
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
32 #define NUM_INTRA_TABLES 5
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
33 #define NUM_INTER_TABLES 7
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
34
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
35 #define CBPPAT_VLC_SIZE 1296
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
36 #define CBP_VLC_SIZE 16
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
37 #define FIRSTBLK_VLC_SIZE 864
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
38 #define OTHERBLK_VLC_SIZE 108
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
39 #define COEFF_VLC_SIZE 32
11948
e8cf7f5fb715 rv34: kill VLAs
mru
parents: 11644
diff changeset
40 #define MAX_VLC_SIZE 1296
5965
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
41
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
42 static const uint8_t rv34_table_intra_cbppat[NUM_INTRA_TABLES][2][CBPPAT_VLC_SIZE] = {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
43 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
44 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
45 8, 10, 10, 10, 10, 10, 11, 10, 10, 11, 10, 10, 10, 10, 10, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
46 12, 12, 13, 12, 13, 12, 13, 11, 13, 13, 13, 12, 13, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
47 14, 13, 16, 13, 15, 13, 16, 12, 16, 16, 16, 14, 16, 13, 14, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
48 12, 13, 12, 12, 13, 13, 13, 12, 13, 13, 12, 12, 13, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
49 13, 14, 14, 12, 14, 14, 14, 12, 14, 15, 14, 12, 14, 13, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
50 16, 16, 16, 12, 16, 16, 16, 13, 16, 16, 16, 13, 16, 14, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
51 14, 16, 13, 13, 16, 16, 16, 14, 15, 16, 14, 13, 15, 15, 14, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
52 16, 16, 14, 13, 16, 16, 16, 13, 16, 16, 16, 13, 16, 15, 14, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
53 16, 16, 16, 11, 16, 16, 16, 12, 16, 16, 16, 12, 16, 16, 15, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
54 12, 13, 13, 13, 12, 12, 14, 12, 12, 14, 13, 12, 12, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
55 14, 14, 16, 14, 13, 12, 14, 12, 14, 15, 14, 13, 13, 12, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
56 16, 16, 16, 15, 16, 13, 16, 13, 16, 16, 16, 15, 16, 13, 15, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
57 14, 16, 14, 14, 14, 14, 15, 13, 14, 16, 14, 13, 13, 13, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
58 16, 16, 16, 14, 16, 14, 16, 12, 16, 16, 14, 13, 14, 13, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
59 16, 16, 16, 14, 16, 14, 16, 13, 16, 16, 16, 14, 16, 14, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
60 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14, 16, 16, 14, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
61 16, 16, 16, 14, 16, 16, 16, 13, 16, 16, 16, 14, 16, 15, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
62 16, 16, 16, 13, 16, 16, 16, 12, 16, 16, 16, 13, 16, 15, 15, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
63 14, 16, 16, 16, 14, 14, 16, 14, 16, 16, 16, 15, 13, 13, 14, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
64 16, 16, 16, 16, 15, 13, 16, 13, 16, 16, 16, 16, 16, 13, 14, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
65 16, 16, 16, 16, 16, 11, 16, 12, 16, 16, 16, 16, 16, 12, 16, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
66 16, 16, 16, 16, 16, 16, 16, 15, 16, 16, 16, 16, 16, 14, 14, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
67 16, 16, 16, 16, 16, 15, 16, 13, 16, 16, 16, 15, 16, 13, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
68 16, 16, 16, 16, 16, 13, 16, 12, 16, 16, 16, 16, 16, 13, 14, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
69 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 15, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
70 16, 16, 16, 16, 16, 16, 16, 14, 16, 16, 16, 16, 16, 16, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
71 16, 16, 16, 14, 16, 15, 16, 11, 16, 16, 16, 14, 16, 14, 14, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
72 12, 13, 13, 13, 13, 13, 14, 12, 12, 13, 12, 12, 12, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
73 14, 14, 16, 14, 15, 14, 16, 13, 14, 15, 14, 13, 14, 13, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
74 16, 16, 16, 15, 16, 16, 16, 14, 16, 16, 16, 14, 16, 14, 16, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
75 14, 15, 14, 14, 15, 14, 15, 13, 14, 14, 13, 12, 13, 13, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
76 15, 16, 15, 14, 16, 16, 16, 13, 15, 16, 14, 12, 14, 13, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
77 16, 16, 16, 14, 16, 16, 16, 13, 16, 16, 16, 13, 16, 14, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
78 16, 16, 16, 16, 16, 16, 16, 15, 16, 16, 13, 13, 16, 16, 14, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
79 16, 16, 16, 14, 16, 16, 16, 14, 16, 16, 15, 13, 16, 14, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
80 16, 16, 16, 12, 16, 16, 16, 13, 16, 16, 16, 12, 16, 16, 15, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
81 13, 14, 14, 14, 14, 14, 16, 13, 13, 14, 14, 13, 12, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
82 16, 16, 16, 14, 15, 14, 16, 13, 15, 16, 14, 13, 13, 12, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
83 16, 16, 16, 16, 16, 14, 16, 14, 16, 16, 16, 14, 16, 13, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
84 15, 16, 16, 15, 16, 15, 16, 13, 14, 16, 14, 13, 13, 13, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
85 16, 16, 16, 14, 16, 14, 15, 12, 15, 15, 14, 12, 13, 12, 12, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
86 16, 16, 16, 14, 16, 14, 16, 12, 16, 16, 16, 13, 16, 13, 13, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
87 16, 16, 16, 16, 16, 16, 16, 14, 16, 16, 14, 14, 16, 14, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
88 16, 16, 16, 14, 16, 16, 16, 13, 16, 16, 14, 12, 16, 13, 12, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
89 16, 16, 16, 12, 16, 16, 16, 11, 16, 16, 15, 12, 16, 13, 13, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
90 16, 16, 16, 16, 16, 16, 16, 15, 16, 16, 16, 15, 13, 13, 14, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
91 16, 16, 16, 16, 16, 14, 16, 14, 16, 16, 16, 16, 14, 13, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
92 16, 16, 16, 16, 16, 13, 16, 13, 16, 16, 16, 16, 16, 12, 14, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
93 16, 16, 16, 16, 16, 16, 16, 14, 16, 16, 16, 14, 14, 13, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
94 16, 16, 16, 16, 16, 14, 16, 13, 16, 16, 16, 13, 14, 12, 12, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
95 16, 16, 16, 16, 16, 13, 16, 12, 16, 16, 16, 13, 14, 12, 13, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
96 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 15, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
97 16, 16, 16, 16, 16, 16, 16, 13, 16, 16, 16, 13, 15, 13, 12, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
98 16, 16, 16, 13, 16, 14, 16, 11, 16, 16, 16, 12, 16, 12, 12, 5,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
99 14, 16, 15, 16, 16, 16, 16, 15, 14, 15, 14, 14, 13, 14, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
100 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14, 16, 14, 16, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
101 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
102 16, 16, 16, 16, 16, 16, 16, 16, 14, 16, 14, 14, 15, 14, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
103 16, 16, 16, 16, 16, 16, 16, 15, 16, 16, 14, 13, 16, 14, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
104 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14, 16, 16, 15, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
105 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 12, 13, 16, 16, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
106 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 13, 13, 16, 16, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
107 16, 16, 16, 14, 16, 16, 16, 14, 16, 16, 15, 12, 16, 16, 14, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
108 16, 16, 16, 16, 16, 16, 16, 16, 14, 16, 15, 14, 13, 13, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
109 16, 16, 16, 16, 16, 16, 16, 14, 16, 16, 16, 14, 14, 13, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
110 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14, 15, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
111 16, 16, 16, 16, 16, 16, 16, 15, 15, 16, 14, 14, 14, 13, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
112 16, 16, 16, 16, 16, 16, 16, 13, 16, 16, 14, 12, 13, 12, 12, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
113 16, 16, 16, 16, 16, 16, 16, 13, 16, 16, 16, 13, 16, 13, 13, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
114 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 13, 13, 16, 14, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
115 16, 16, 16, 15, 16, 16, 16, 13, 16, 16, 13, 12, 14, 13, 12, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
116 16, 16, 16, 13, 16, 16, 16, 12, 16, 16, 14, 10, 15, 12, 12, 5,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
117 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 12, 13, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
118 16, 16, 16, 16, 16, 16, 16, 14, 16, 16, 16, 15, 13, 12, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
119 16, 16, 16, 16, 16, 14, 16, 14, 16, 16, 16, 16, 15, 12, 14, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
120 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14, 13, 13, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
121 16, 16, 16, 16, 16, 16, 16, 13, 16, 16, 15, 13, 12, 11, 12, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
122 16, 16, 16, 15, 16, 14, 16, 12, 16, 16, 16, 12, 13, 10, 12, 5,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
123 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14, 14, 13, 14, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
124 16, 16, 16, 16, 16, 16, 16, 13, 16, 16, 13, 12, 13, 12, 10, 5,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
125 16, 16, 16, 13, 16, 13, 16, 10, 16, 16, 13, 10, 13, 10, 10, 1,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
126 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
127 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
128 2, 7, 7, 8, 7, 8, 9, 8, 7, 9, 8, 8, 8, 8, 9, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
129 6, 9, 10, 10, 10, 10, 11, 10, 10, 11, 11, 11, 10, 11, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
130 9, 11, 12, 12, 12, 13, 14, 13, 13, 14, 14, 13, 13, 13, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
131 6, 10, 9, 10, 10, 11, 11, 11, 10, 11, 10, 11, 11, 11, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
132 6, 9, 10, 10, 10, 11, 12, 11, 10, 12, 11, 11, 11, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
133 9, 11, 12, 12, 12, 13, 13, 13, 12, 14, 14, 13, 13, 13, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
134 9, 13, 11, 13, 13, 14, 14, 13, 13, 14, 13, 13, 14, 14, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
135 9, 12, 12, 12, 12, 14, 14, 13, 13, 14, 13, 13, 13, 14, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
136 8, 12, 12, 11, 12, 14, 14, 12, 13, 14, 14, 13, 13, 13, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
137 6, 10, 10, 11, 9, 10, 12, 11, 10, 12, 11, 11, 10, 11, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
138 7, 10, 10, 11, 10, 11, 12, 11, 11, 12, 11, 11, 11, 11, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
139 9, 12, 13, 13, 12, 12, 14, 13, 13, 14, 14, 13, 14, 13, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
140 8, 11, 11, 12, 11, 12, 12, 12, 11, 13, 12, 12, 12, 12, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
141 7, 10, 10, 11, 10, 11, 12, 11, 10, 12, 11, 11, 11, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
142 9, 11, 12, 12, 12, 12, 13, 12, 12, 13, 13, 12, 13, 12, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
143 10, 13, 13, 14, 14, 14, 15, 14, 14, 15, 14, 15, 14, 14, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
144 9, 12, 12, 13, 12, 13, 14, 13, 12, 13, 13, 12, 13, 13, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
145 9, 12, 12, 12, 12, 13, 14, 12, 12, 14, 13, 12, 13, 13, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
146 9, 12, 13, 13, 11, 13, 14, 13, 13, 14, 14, 14, 12, 13, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
147 10, 12, 13, 13, 12, 12, 14, 13, 13, 14, 14, 14, 13, 13, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
148 10, 13, 14, 14, 13, 12, 15, 13, 14, 14, 14, 14, 15, 13, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
149 11, 14, 14, 14, 13, 14, 15, 14, 14, 15, 15, 14, 13, 14, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
150 10, 13, 12, 13, 12, 12, 14, 13, 13, 14, 13, 13, 13, 13, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
151 10, 12, 13, 13, 13, 12, 14, 12, 13, 14, 14, 13, 13, 13, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
152 13, 15, 16, 16, 15, 15, 16, 16, 15, 16, 15, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
153 11, 14, 14, 14, 14, 14, 15, 14, 14, 15, 15, 14, 14, 14, 15, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
154 10, 13, 13, 13, 13, 13, 14, 12, 13, 14, 14, 13, 13, 13, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
155 6, 10, 10, 11, 10, 11, 12, 11, 10, 12, 10, 11, 10, 11, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
156 8, 11, 11, 12, 11, 12, 13, 12, 11, 12, 12, 12, 12, 12, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
157 11, 13, 14, 14, 13, 14, 15, 14, 13, 15, 15, 14, 14, 14, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
158 7, 11, 10, 12, 11, 12, 12, 12, 11, 12, 11, 12, 11, 12, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
159 7, 10, 10, 11, 10, 11, 12, 11, 11, 12, 11, 11, 11, 11, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
160 10, 12, 13, 13, 12, 13, 14, 13, 13, 14, 13, 13, 13, 13, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
161 10, 13, 12, 14, 13, 14, 14, 14, 13, 14, 12, 14, 15, 14, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
162 10, 12, 12, 12, 12, 13, 14, 13, 13, 14, 13, 12, 13, 13, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
163 9, 12, 13, 13, 13, 14, 14, 13, 13, 14, 14, 13, 13, 13, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
164 7, 10, 10, 11, 10, 11, 12, 11, 10, 12, 12, 11, 9, 11, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
165 7, 10, 11, 11, 10, 11, 12, 11, 10, 12, 12, 11, 11, 11, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
166 10, 12, 13, 13, 13, 13, 15, 13, 13, 14, 13, 13, 13, 13, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
167 8, 11, 11, 11, 11, 11, 12, 11, 11, 12, 12, 11, 11, 12, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
168 6, 9, 9, 10, 9, 10, 10, 10, 9, 11, 10, 10, 9, 10, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
169 8, 10, 11, 11, 11, 11, 12, 11, 11, 12, 12, 11, 11, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
170 10, 13, 13, 13, 13, 14, 14, 13, 13, 14, 13, 13, 13, 13, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
171 8, 11, 11, 11, 11, 12, 12, 11, 11, 12, 11, 11, 11, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
172 8, 11, 11, 11, 11, 12, 12, 10, 11, 12, 12, 11, 11, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
173 10, 13, 13, 13, 12, 13, 14, 13, 12, 14, 14, 14, 10, 13, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
174 10, 12, 12, 13, 12, 13, 14, 12, 12, 13, 13, 13, 12, 12, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
175 11, 13, 14, 14, 13, 13, 14, 13, 13, 15, 14, 13, 13, 13, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
176 10, 12, 13, 13, 12, 13, 14, 13, 13, 14, 14, 13, 12, 13, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
177 8, 11, 11, 11, 11, 11, 12, 11, 11, 12, 12, 11, 11, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
178 9, 11, 12, 12, 11, 11, 12, 11, 12, 12, 12, 11, 12, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
179 12, 15, 14, 14, 14, 15, 15, 14, 14, 15, 15, 14, 14, 14, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
180 10, 12, 12, 12, 12, 12, 13, 12, 12, 13, 13, 12, 12, 12, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
181 9, 11, 11, 11, 11, 11, 12, 10, 11, 12, 12, 11, 11, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
182 10, 13, 13, 13, 13, 14, 15, 14, 13, 14, 14, 14, 12, 14, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
183 11, 14, 14, 14, 14, 15, 15, 14, 14, 15, 15, 15, 14, 15, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
184 13, 16, 16, 16, 15, 16, 16, 16, 15, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
185 10, 13, 13, 14, 13, 15, 14, 14, 13, 15, 13, 14, 14, 14, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
186 10, 13, 13, 13, 13, 13, 14, 13, 13, 14, 13, 13, 13, 13, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
187 12, 14, 14, 14, 14, 15, 15, 14, 14, 15, 15, 14, 15, 14, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
188 11, 14, 14, 15, 14, 15, 15, 14, 14, 15, 12, 14, 15, 16, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
189 11, 13, 13, 14, 13, 14, 14, 14, 14, 14, 13, 13, 14, 14, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
190 11, 14, 14, 14, 14, 15, 15, 14, 14, 16, 14, 13, 14, 14, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
191 10, 13, 13, 13, 12, 14, 14, 14, 12, 15, 14, 14, 11, 13, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
192 10, 12, 13, 14, 12, 13, 14, 13, 13, 14, 14, 13, 12, 13, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
193 12, 14, 14, 15, 14, 15, 16, 15, 15, 15, 15, 15, 14, 14, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
194 10, 13, 13, 13, 12, 13, 14, 13, 13, 14, 13, 13, 12, 13, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
195 9, 11, 11, 12, 11, 12, 12, 11, 11, 12, 12, 11, 11, 11, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
196 10, 12, 12, 12, 12, 12, 13, 12, 12, 13, 13, 12, 13, 12, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
197 11, 13, 13, 15, 14, 14, 15, 14, 14, 15, 14, 14, 14, 14, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
198 10, 12, 12, 12, 12, 12, 13, 12, 12, 13, 11, 11, 12, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
199 9, 12, 12, 11, 12, 12, 13, 11, 12, 12, 12, 11, 12, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
200 10, 13, 13, 14, 12, 14, 15, 14, 13, 15, 15, 14, 10, 13, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
201 11, 13, 14, 13, 13, 14, 14, 13, 13, 14, 14, 14, 11, 13, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
202 12, 14, 14, 14, 14, 14, 15, 14, 15, 16, 15, 14, 13, 13, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
203 11, 14, 13, 14, 13, 14, 15, 14, 13, 15, 14, 14, 11, 13, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
204 9, 12, 12, 12, 11, 12, 13, 11, 12, 13, 12, 11, 10, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
205 10, 12, 12, 12, 12, 12, 13, 11, 12, 12, 12, 11, 11, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
206 12, 15, 14, 15, 14, 15, 16, 15, 15, 15, 15, 14, 14, 14, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
207 10, 12, 12, 12, 12, 12, 13, 11, 12, 13, 12, 11, 11, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
208 8, 10, 10, 10, 10, 10, 11, 9, 10, 11, 10, 9, 10, 9, 9, 5,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
209 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
210 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
211 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
212 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
213 12, 12, 11, 9, 11, 10, 11, 9, 11, 11, 10, 9, 9, 8, 9, 5,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
214 14, 13, 14, 11, 14, 11, 13, 10, 14, 13, 12, 10, 12, 10, 11, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
215 16, 13, 16, 12, 16, 12, 16, 11, 16, 14, 16, 12, 15, 12, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
216 14, 14, 12, 11, 14, 12, 13, 10, 13, 13, 11, 10, 12, 11, 10, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
217 16, 15, 14, 11, 16, 13, 14, 10, 15, 14, 13, 10, 13, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
218 16, 16, 16, 11, 16, 14, 16, 11, 16, 16, 15, 12, 15, 13, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
219 16, 16, 13, 12, 16, 16, 15, 12, 16, 16, 12, 11, 15, 13, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
220 16, 16, 14, 11, 16, 16, 16, 11, 16, 16, 14, 11, 15, 14, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
221 16, 16, 15, 10, 16, 16, 16, 10, 16, 16, 15, 11, 16, 14, 14, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
222 14, 14, 14, 12, 13, 11, 13, 10, 13, 13, 12, 11, 11, 10, 10, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
223 16, 15, 16, 13, 13, 11, 14, 11, 15, 14, 13, 11, 12, 10, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
224 16, 15, 16, 14, 16, 11, 16, 11, 16, 16, 16, 13, 16, 12, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
225 16, 16, 14, 13, 15, 13, 14, 11, 14, 15, 13, 11, 13, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
226 16, 16, 15, 13, 15, 13, 14, 11, 16, 15, 14, 11, 13, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
227 16, 16, 16, 13, 16, 13, 16, 11, 16, 16, 16, 12, 16, 12, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
228 16, 16, 16, 14, 16, 16, 16, 13, 16, 16, 14, 13, 15, 14, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
229 16, 16, 16, 13, 16, 16, 16, 12, 16, 16, 14, 12, 15, 13, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
230 16, 16, 16, 12, 16, 16, 16, 11, 16, 16, 15, 12, 16, 13, 13, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
231 16, 16, 16, 16, 13, 12, 16, 12, 16, 16, 14, 13, 12, 11, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
232 16, 16, 16, 15, 14, 11, 16, 11, 16, 16, 16, 13, 14, 11, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
233 16, 16, 16, 16, 15, 10, 16, 11, 16, 16, 16, 14, 15, 11, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
234 16, 16, 16, 16, 16, 14, 16, 13, 16, 16, 14, 14, 14, 12, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
235 16, 16, 16, 15, 16, 13, 16, 12, 16, 16, 16, 13, 14, 12, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
236 16, 16, 16, 14, 16, 12, 16, 11, 16, 16, 16, 13, 15, 12, 13, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
237 16, 16, 16, 16, 16, 16, 16, 14, 16, 16, 16, 15, 16, 14, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
238 16, 16, 16, 16, 16, 16, 16, 12, 16, 16, 16, 14, 16, 13, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
239 16, 16, 16, 14, 16, 14, 16, 10, 16, 16, 16, 13, 16, 13, 13, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
240 14, 14, 13, 12, 13, 12, 13, 11, 12, 13, 11, 10, 11, 10, 10, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
241 16, 16, 15, 13, 16, 13, 15, 11, 14, 14, 13, 11, 13, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
242 16, 16, 16, 14, 16, 14, 16, 12, 16, 16, 16, 13, 16, 13, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
243 16, 16, 13, 13, 15, 14, 14, 11, 13, 14, 11, 11, 12, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
244 16, 16, 15, 12, 16, 14, 15, 11, 14, 14, 12, 11, 13, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
245 16, 16, 16, 13, 16, 14, 16, 12, 16, 16, 14, 12, 16, 13, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
246 16, 16, 14, 14, 16, 16, 16, 13, 16, 16, 12, 11, 15, 13, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
247 16, 16, 15, 13, 16, 16, 16, 12, 16, 16, 13, 11, 16, 13, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
248 16, 16, 16, 11, 16, 16, 16, 11, 16, 16, 14, 11, 16, 14, 13, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
249 16, 16, 15, 13, 14, 13, 14, 11, 14, 14, 12, 11, 11, 10, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
250 16, 16, 16, 13, 14, 12, 15, 11, 15, 14, 13, 11, 12, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
251 16, 16, 16, 14, 16, 13, 16, 12, 16, 16, 16, 13, 14, 12, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
252 16, 16, 15, 13, 15, 14, 14, 12, 14, 14, 12, 11, 12, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
253 16, 16, 14, 12, 15, 13, 14, 11, 15, 14, 13, 11, 12, 11, 11, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
254 16, 16, 16, 13, 16, 13, 16, 11, 16, 15, 14, 11, 14, 11, 12, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
255 16, 16, 16, 14, 16, 16, 16, 13, 16, 16, 13, 12, 14, 13, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
256 16, 16, 15, 13, 16, 14, 15, 11, 16, 16, 13, 11, 14, 12, 11, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
257 16, 16, 16, 12, 16, 14, 15, 11, 16, 16, 13, 10, 14, 12, 12, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
258 16, 16, 16, 16, 16, 14, 16, 13, 16, 16, 14, 13, 12, 11, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
259 16, 16, 16, 16, 16, 13, 16, 12, 16, 16, 15, 13, 13, 11, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
260 16, 16, 16, 15, 16, 12, 16, 12, 16, 16, 16, 14, 14, 11, 13, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
261 16, 16, 16, 16, 16, 15, 16, 13, 16, 16, 14, 13, 13, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
262 16, 16, 16, 14, 15, 13, 15, 11, 16, 15, 14, 12, 13, 11, 11, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
263 16, 16, 16, 14, 16, 12, 15, 11, 16, 16, 15, 12, 14, 11, 12, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
264 16, 16, 16, 16, 16, 16, 16, 13, 16, 16, 15, 13, 14, 13, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
265 16, 16, 16, 14, 16, 14, 16, 12, 16, 16, 14, 12, 13, 12, 11, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
266 16, 16, 16, 13, 16, 13, 15, 10, 16, 16, 14, 11, 14, 11, 11, 5,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
267 16, 16, 15, 14, 16, 16, 16, 13, 14, 14, 12, 12, 12, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
268 16, 16, 16, 15, 16, 16, 16, 14, 16, 16, 14, 13, 14, 13, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
269 16, 16, 16, 16, 16, 16, 16, 14, 16, 16, 16, 14, 16, 13, 15, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
270 16, 16, 14, 15, 16, 16, 16, 14, 14, 16, 12, 12, 13, 13, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
271 16, 16, 16, 14, 16, 16, 16, 13, 16, 15, 13, 12, 14, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
272 16, 16, 16, 16, 16, 16, 16, 13, 16, 16, 14, 12, 16, 13, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
273 16, 16, 16, 15, 16, 16, 16, 14, 16, 16, 11, 11, 15, 14, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
274 16, 16, 16, 14, 16, 16, 16, 13, 16, 16, 12, 11, 15, 13, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
275 16, 16, 16, 13, 16, 16, 16, 12, 16, 16, 13, 10, 16, 13, 12, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
276 16, 16, 16, 16, 16, 15, 16, 13, 14, 16, 13, 13, 12, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
277 16, 16, 16, 15, 16, 14, 16, 13, 16, 16, 14, 13, 13, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
278 16, 16, 16, 16, 16, 15, 16, 13, 16, 16, 16, 13, 15, 12, 14, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
279 16, 16, 16, 15, 16, 16, 16, 13, 14, 16, 13, 12, 12, 12, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
280 16, 16, 16, 14, 16, 14, 16, 12, 14, 14, 13, 11, 13, 11, 11, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
281 16, 16, 16, 14, 16, 14, 16, 12, 16, 15, 14, 11, 14, 11, 12, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
282 16, 16, 16, 15, 16, 16, 16, 14, 16, 16, 12, 12, 14, 13, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
283 16, 16, 15, 14, 16, 16, 16, 12, 16, 15, 12, 11, 13, 12, 11, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
284 16, 16, 16, 13, 16, 14, 16, 11, 16, 14, 13, 10, 14, 11, 11, 5,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
285 16, 16, 16, 16, 16, 16, 16, 14, 14, 16, 15, 13, 11, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
286 16, 16, 16, 16, 16, 15, 16, 13, 16, 16, 16, 13, 12, 11, 12, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
287 16, 16, 16, 16, 16, 13, 16, 12, 16, 16, 16, 13, 13, 11, 13, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
288 16, 16, 16, 16, 16, 16, 16, 13, 16, 16, 14, 13, 12, 12, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
289 16, 16, 16, 15, 16, 14, 15, 12, 16, 14, 13, 12, 12, 11, 11, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
290 16, 16, 16, 14, 16, 13, 15, 11, 16, 14, 14, 11, 13, 10, 11, 5,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
291 16, 16, 16, 16, 16, 16, 16, 13, 16, 16, 13, 12, 12, 12, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
292 16, 16, 16, 14, 16, 14, 15, 12, 16, 15, 12, 11, 12, 11, 10, 5,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
293 16, 16, 16, 13, 16, 13, 14, 10, 16, 14, 12, 9, 12, 10, 9, 3,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
294 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
295 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
296 2, 6, 6, 7, 6, 7, 8, 7, 7, 8, 7, 8, 7, 8, 8, 5,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
297 5, 8, 9, 9, 9, 9, 12, 10, 10, 11, 10, 10, 10, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
298 9, 10, 13, 12, 13, 12, 15, 13, 13, 14, 13, 14, 13, 13, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
299 5, 10, 9, 10, 10, 10, 12, 10, 10, 12, 10, 11, 11, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
300 6, 9, 10, 9, 10, 11, 12, 10, 10, 12, 11, 11, 10, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
301 9, 11, 12, 11, 12, 13, 14, 12, 13, 14, 14, 12, 13, 13, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
302 10, 13, 11, 12, 14, 14, 15, 13, 13, 15, 12, 13, 14, 14, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
303 9, 12, 12, 12, 13, 13, 15, 13, 13, 14, 13, 13, 14, 13, 15, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
304 8, 11, 12, 10, 12, 13, 14, 12, 13, 14, 14, 13, 13, 13, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
305 5, 9, 10, 10, 9, 10, 12, 11, 10, 12, 11, 11, 9, 11, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
306 6, 10, 10, 11, 10, 10, 12, 11, 11, 12, 11, 11, 11, 11, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
307 9, 11, 13, 13, 12, 11, 14, 12, 13, 15, 13, 13, 14, 13, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
308 8, 11, 11, 12, 11, 12, 13, 12, 12, 13, 12, 13, 12, 12, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
309 7, 10, 10, 11, 10, 11, 12, 11, 11, 12, 11, 11, 11, 11, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
310 9, 12, 12, 12, 12, 12, 14, 12, 13, 14, 13, 13, 13, 13, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
311 11, 14, 13, 15, 15, 16, 16, 15, 15, 16, 15, 15, 16, 16, 15, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
312 10, 12, 13, 13, 13, 14, 15, 13, 13, 14, 13, 13, 14, 14, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
313 9, 12, 12, 12, 13, 13, 14, 12, 13, 14, 14, 13, 13, 13, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
314 9, 13, 13, 13, 11, 12, 15, 13, 13, 15, 14, 14, 11, 13, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
315 10, 13, 13, 13, 12, 12, 15, 13, 13, 15, 14, 14, 13, 13, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
316 10, 12, 13, 13, 12, 11, 14, 12, 13, 15, 13, 13, 13, 13, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
317 11, 14, 15, 15, 13, 14, 16, 14, 14, 16, 16, 14, 14, 15, 15, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
318 10, 13, 13, 13, 12, 13, 14, 13, 13, 14, 14, 14, 13, 13, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
319 10, 12, 13, 13, 13, 12, 14, 13, 13, 14, 14, 13, 13, 13, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
320 13, 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
321 12, 15, 15, 15, 14, 15, 16, 14, 15, 16, 16, 15, 16, 15, 15, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
322 10, 12, 12, 12, 13, 13, 14, 12, 13, 14, 13, 13, 13, 13, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
323 6, 10, 10, 11, 10, 11, 12, 11, 10, 12, 11, 11, 10, 11, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
324 8, 11, 12, 12, 12, 12, 13, 12, 12, 13, 12, 13, 12, 13, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
325 11, 13, 15, 14, 15, 14, 16, 14, 15, 16, 16, 14, 15, 15, 15, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
326 7, 11, 10, 12, 11, 11, 13, 11, 11, 13, 10, 11, 12, 12, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
327 7, 11, 11, 11, 11, 11, 13, 11, 11, 13, 11, 12, 12, 12, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
328 10, 12, 13, 13, 13, 13, 15, 13, 14, 15, 14, 14, 14, 14, 15, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
329 10, 13, 12, 14, 14, 14, 15, 13, 13, 15, 12, 13, 15, 15, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
330 10, 13, 12, 12, 13, 13, 15, 14, 13, 15, 13, 13, 14, 14, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
331 10, 13, 13, 12, 13, 14, 15, 13, 13, 15, 13, 13, 14, 14, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
332 7, 10, 11, 11, 10, 11, 12, 11, 10, 12, 12, 12, 9, 11, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
333 7, 11, 11, 11, 11, 11, 13, 11, 11, 13, 12, 12, 11, 12, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
334 10, 12, 14, 13, 13, 13, 16, 13, 14, 16, 14, 14, 13, 13, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
335 8, 11, 11, 12, 11, 12, 13, 12, 12, 13, 12, 12, 12, 12, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
336 6, 9, 9, 10, 9, 10, 11, 10, 10, 11, 10, 10, 10, 10, 10, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
337 8, 11, 11, 11, 12, 11, 13, 11, 12, 13, 12, 12, 12, 12, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
338 11, 14, 13, 14, 14, 14, 16, 14, 14, 16, 14, 14, 15, 15, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
339 9, 12, 11, 12, 12, 12, 13, 12, 12, 13, 12, 12, 12, 12, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
340 8, 11, 11, 11, 11, 11, 13, 11, 12, 12, 12, 12, 12, 12, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
341 10, 13, 14, 13, 11, 13, 14, 14, 13, 15, 15, 14, 10, 13, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
342 10, 13, 13, 13, 12, 13, 14, 13, 13, 14, 14, 14, 13, 13, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
343 10, 13, 14, 13, 13, 12, 15, 13, 14, 15, 14, 14, 14, 13, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
344 11, 14, 14, 14, 13, 13, 15, 14, 14, 15, 14, 15, 13, 14, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
345 9, 11, 12, 12, 11, 11, 13, 12, 12, 13, 12, 12, 12, 12, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
346 9, 11, 12, 12, 12, 11, 13, 11, 12, 13, 12, 12, 12, 12, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
347 13, 15, 15, 16, 15, 16, 16, 15, 16, 16, 16, 15, 15, 15, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
348 10, 13, 13, 13, 13, 13, 14, 13, 13, 14, 13, 13, 13, 13, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
349 8, 11, 11, 11, 11, 11, 12, 11, 11, 12, 12, 11, 12, 11, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
350 11, 14, 14, 15, 14, 15, 15, 14, 13, 15, 14, 15, 12, 14, 15, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
351 12, 15, 15, 15, 15, 15, 16, 15, 15, 16, 16, 16, 15, 16, 15, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
352 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
353 11, 14, 13, 15, 14, 14, 16, 14, 14, 16, 13, 14, 15, 14, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
354 11, 14, 13, 14, 14, 14, 16, 15, 14, 16, 14, 14, 15, 15, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
355 13, 15, 15, 15, 15, 16, 16, 15, 16, 16, 16, 15, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
356 11, 14, 13, 14, 14, 14, 15, 14, 14, 16, 12, 14, 16, 16, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
357 11, 14, 14, 14, 14, 15, 16, 15, 14, 16, 13, 14, 16, 15, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
358 12, 14, 14, 14, 14, 14, 16, 14, 15, 16, 14, 14, 14, 15, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
359 11, 14, 14, 14, 13, 14, 16, 15, 13, 16, 15, 15, 11, 14, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
360 11, 14, 14, 15, 14, 14, 16, 14, 14, 15, 14, 14, 13, 15, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
361 13, 15, 16, 15, 15, 15, 16, 15, 16, 16, 16, 16, 15, 15, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
362 11, 14, 14, 14, 14, 14, 15, 14, 14, 16, 14, 14, 14, 15, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
363 9, 12, 12, 12, 12, 12, 13, 12, 12, 13, 12, 13, 12, 12, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
364 11, 13, 13, 13, 13, 13, 14, 13, 13, 14, 13, 14, 13, 13, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
365 12, 15, 14, 15, 15, 15, 16, 15, 14, 16, 14, 14, 16, 16, 14, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
366 10, 12, 12, 12, 12, 12, 14, 12, 13, 13, 12, 12, 13, 13, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
367 10, 12, 12, 12, 12, 12, 14, 12, 12, 13, 12, 12, 12, 12, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
368 10, 14, 14, 14, 12, 14, 16, 14, 13, 16, 16, 16, 10, 13, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
369 11, 14, 14, 14, 13, 14, 16, 14, 14, 16, 15, 14, 12, 13, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
370 12, 14, 14, 14, 14, 14, 16, 14, 14, 16, 15, 15, 14, 14, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
371 12, 14, 15, 15, 14, 15, 16, 14, 15, 15, 15, 15, 13, 15, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
372 9, 12, 12, 12, 12, 13, 13, 12, 12, 13, 13, 12, 11, 12, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
373 10, 12, 12, 12, 12, 12, 13, 12, 12, 13, 12, 12, 12, 12, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
374 13, 15, 15, 15, 15, 16, 16, 16, 16, 16, 16, 16, 15, 16, 15, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
375 10, 12, 12, 13, 12, 13, 13, 12, 13, 14, 13, 13, 12, 13, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
376 7, 10, 10, 10, 10, 10, 11, 10, 10, 11, 10, 10, 10, 10, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
377 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
378 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
379 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
380 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
381 10, 10, 9, 8, 9, 8, 9, 7, 9, 9, 8, 7, 8, 7, 7, 4,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
382 13, 11, 12, 9, 12, 9, 12, 9, 12, 11, 11, 9, 10, 9, 9, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
383 15, 12, 15, 11, 14, 10, 14, 10, 14, 13, 13, 11, 13, 11, 12, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
384 13, 12, 11, 9, 12, 11, 12, 9, 12, 12, 10, 9, 10, 10, 9, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
385 14, 13, 12, 10, 13, 12, 13, 9, 13, 12, 11, 10, 12, 11, 10, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
386 16, 14, 14, 10, 15, 13, 14, 10, 15, 15, 14, 11, 14, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
387 15, 14, 12, 11, 15, 14, 13, 11, 14, 14, 11, 10, 13, 12, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
388 15, 16, 13, 11, 16, 14, 14, 11, 15, 15, 12, 10, 14, 13, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
389 16, 15, 14, 10, 16, 14, 14, 10, 16, 15, 14, 10, 14, 13, 12, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
390 13, 12, 12, 11, 11, 9, 12, 9, 12, 12, 11, 10, 10, 9, 9, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
391 13, 13, 14, 12, 12, 10, 12, 10, 14, 13, 12, 11, 11, 10, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
392 16, 14, 16, 13, 14, 11, 15, 10, 16, 15, 14, 12, 14, 11, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
393 14, 14, 13, 12, 13, 12, 13, 10, 13, 13, 12, 11, 11, 10, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
394 15, 14, 14, 12, 14, 12, 13, 10, 14, 13, 12, 11, 12, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
395 16, 15, 16, 13, 15, 13, 15, 10, 16, 15, 14, 12, 14, 12, 12, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
396 15, 16, 14, 13, 16, 14, 14, 12, 15, 15, 12, 12, 13, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
397 16, 16, 14, 13, 16, 14, 14, 11, 15, 15, 14, 11, 14, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
398 16, 16, 15, 12, 16, 14, 15, 10, 16, 16, 13, 12, 14, 13, 12, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
399 14, 14, 14, 13, 13, 11, 13, 11, 14, 14, 13, 12, 11, 10, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
400 16, 15, 16, 13, 13, 11, 14, 11, 15, 14, 14, 13, 12, 11, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
401 15, 15, 16, 14, 14, 10, 14, 10, 16, 15, 15, 13, 14, 10, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
402 16, 16, 16, 14, 15, 13, 14, 12, 15, 15, 13, 13, 13, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
403 16, 16, 16, 14, 15, 13, 14, 11, 16, 16, 14, 13, 13, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
404 16, 16, 16, 14, 16, 12, 15, 11, 16, 15, 15, 13, 14, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
405 16, 16, 16, 16, 16, 15, 15, 13, 16, 16, 14, 13, 14, 13, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
406 16, 16, 16, 14, 16, 15, 15, 11, 16, 16, 14, 13, 15, 13, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
407 16, 16, 16, 14, 16, 14, 14, 10, 16, 16, 15, 13, 14, 12, 12, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
408 12, 12, 12, 11, 12, 11, 12, 10, 11, 11, 10, 9, 9, 9, 9, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
409 14, 13, 14, 12, 13, 12, 13, 10, 13, 13, 12, 10, 12, 10, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
410 16, 14, 16, 13, 15, 13, 16, 12, 15, 14, 14, 12, 14, 12, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
411 14, 14, 13, 11, 14, 12, 13, 11, 12, 12, 10, 10, 11, 10, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
412 14, 14, 13, 12, 14, 12, 13, 11, 13, 13, 12, 10, 12, 11, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
413 16, 15, 15, 12, 16, 14, 15, 11, 16, 14, 13, 11, 14, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
414 16, 16, 13, 13, 16, 15, 14, 12, 14, 14, 11, 11, 13, 12, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
415 16, 16, 14, 12, 16, 14, 14, 12, 15, 14, 12, 11, 14, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
416 16, 15, 14, 11, 16, 15, 15, 11, 16, 15, 13, 11, 14, 13, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
417 14, 13, 13, 12, 13, 11, 13, 10, 12, 13, 11, 10, 10, 10, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
418 15, 14, 14, 13, 13, 12, 13, 11, 14, 13, 12, 11, 12, 10, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
419 16, 15, 16, 14, 15, 12, 15, 11, 16, 14, 14, 12, 14, 11, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
420 14, 15, 13, 12, 14, 13, 13, 11, 13, 13, 11, 11, 11, 10, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
421 14, 14, 14, 12, 14, 13, 13, 10, 14, 13, 12, 10, 12, 10, 10, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
422 16, 15, 15, 13, 16, 13, 15, 11, 15, 14, 13, 11, 13, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
423 16, 16, 14, 13, 16, 15, 14, 12, 15, 15, 12, 11, 13, 12, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
424 16, 16, 14, 13, 16, 14, 14, 11, 15, 14, 12, 11, 13, 12, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
425 16, 16, 15, 12, 16, 14, 14, 11, 15, 15, 13, 11, 14, 12, 11, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
426 16, 15, 15, 14, 14, 12, 14, 12, 13, 14, 13, 12, 11, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
427 16, 16, 16, 14, 14, 12, 15, 12, 15, 14, 14, 12, 12, 11, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
428 16, 16, 16, 15, 14, 12, 15, 12, 16, 15, 14, 13, 13, 11, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
429 16, 16, 16, 15, 15, 14, 15, 12, 14, 14, 13, 12, 12, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
430 16, 16, 15, 14, 14, 12, 14, 11, 14, 14, 13, 12, 12, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
431 16, 16, 16, 14, 15, 12, 14, 11, 15, 15, 14, 12, 13, 11, 12, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
432 16, 16, 16, 16, 16, 15, 16, 13, 15, 15, 14, 12, 13, 12, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
433 16, 16, 16, 14, 15, 14, 14, 12, 16, 15, 13, 12, 13, 12, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
434 16, 16, 16, 13, 16, 13, 14, 10, 16, 15, 14, 11, 13, 11, 11, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
435 14, 15, 13, 13, 14, 13, 14, 12, 12, 13, 11, 11, 11, 11, 10, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
436 16, 16, 15, 13, 16, 14, 16, 13, 14, 14, 13, 12, 13, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
437 16, 16, 16, 14, 16, 14, 16, 13, 16, 14, 15, 13, 15, 13, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
438 15, 15, 14, 14, 15, 14, 14, 12, 13, 14, 11, 11, 12, 12, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
439 15, 16, 15, 13, 15, 14, 14, 12, 14, 14, 12, 11, 13, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
440 16, 16, 16, 13, 16, 15, 15, 13, 16, 15, 14, 11, 15, 12, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
441 16, 16, 14, 13, 16, 15, 15, 13, 14, 14, 10, 11, 14, 12, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
442 16, 16, 15, 13, 16, 16, 15, 13, 15, 14, 12, 11, 14, 13, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
443 16, 16, 15, 13, 16, 15, 16, 12, 16, 14, 13, 10, 15, 13, 12, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
444 15, 15, 15, 14, 14, 14, 15, 12, 13, 14, 12, 12, 11, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
445 16, 15, 16, 14, 15, 13, 15, 12, 14, 14, 13, 12, 12, 11, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
446 16, 16, 16, 15, 16, 14, 16, 13, 16, 15, 14, 12, 14, 11, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
447 16, 16, 15, 14, 16, 14, 15, 13, 14, 14, 12, 11, 12, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
448 15, 16, 15, 14, 15, 14, 14, 12, 14, 13, 12, 11, 12, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
449 16, 16, 16, 14, 16, 13, 16, 12, 15, 14, 13, 11, 13, 11, 12, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
450 16, 16, 15, 14, 16, 15, 15, 13, 14, 15, 11, 11, 13, 12, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
451 16, 16, 15, 13, 16, 14, 15, 12, 15, 14, 12, 11, 13, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
452 16, 16, 15, 13, 16, 14, 16, 12, 15, 14, 13, 10, 13, 11, 11, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
453 16, 16, 16, 14, 14, 14, 15, 13, 14, 14, 14, 12, 11, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
454 16, 16, 16, 14, 15, 14, 16, 13, 15, 14, 14, 13, 12, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
455 16, 16, 16, 16, 15, 13, 16, 12, 15, 15, 14, 12, 13, 10, 12, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
456 16, 16, 16, 14, 15, 15, 14, 13, 14, 14, 13, 12, 12, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
457 16, 15, 16, 14, 16, 13, 15, 12, 14, 14, 13, 12, 12, 10, 10, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
458 16, 15, 16, 14, 16, 13, 16, 11, 16, 14, 13, 11, 13, 10, 11, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
459 16, 16, 16, 15, 16, 16, 15, 13, 14, 16, 12, 12, 12, 12, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
460 16, 16, 16, 14, 16, 14, 14, 12, 15, 15, 12, 11, 12, 11, 10, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
461 16, 16, 16, 13, 16, 13, 15, 10, 15, 14, 13, 10, 13, 10, 10, 4,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
462 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
463 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
464 1, 6, 6, 7, 6, 7, 9, 8, 7, 9, 7, 8, 7, 8, 8, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
465 6, 9, 10, 10, 10, 10, 12, 11, 10, 12, 11, 11, 11, 11, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
466 9, 10, 13, 11, 13, 12, 14, 13, 14, 14, 14, 14, 14, 14, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
467 6, 10, 9, 10, 10, 11, 13, 11, 11, 13, 10, 12, 11, 12, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
468 6, 10, 10, 10, 10, 11, 13, 11, 11, 13, 12, 12, 11, 12, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
469 9, 11, 13, 12, 13, 14, 15, 13, 14, 16, 14, 14, 14, 14, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
470 10, 13, 11, 13, 14, 14, 16, 14, 14, 15, 13, 14, 15, 15, 16, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
471 9, 13, 12, 12, 14, 14, 16, 14, 14, 15, 14, 14, 15, 15, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
472 8, 11, 12, 11, 13, 14, 15, 13, 13, 15, 14, 14, 13, 15, 15, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
473 6, 10, 10, 11, 9, 10, 13, 11, 10, 13, 11, 12, 10, 12, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
474 6, 10, 10, 11, 11, 10, 13, 11, 11, 13, 11, 12, 12, 12, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
475 9, 12, 13, 13, 13, 12, 16, 13, 14, 15, 14, 14, 15, 14, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
476 8, 12, 12, 13, 12, 13, 15, 14, 13, 15, 13, 14, 13, 13, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
477 7, 11, 11, 12, 11, 12, 13, 12, 12, 13, 12, 13, 12, 13, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
478 9, 12, 13, 13, 13, 13, 16, 13, 13, 15, 14, 14, 14, 15, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
479 11, 15, 14, 15, 15, 16, 16, 16, 15, 16, 15, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
480 10, 13, 13, 14, 14, 14, 16, 15, 14, 16, 15, 15, 15, 15, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
481 9, 12, 13, 13, 13, 14, 16, 14, 13, 15, 14, 14, 14, 16, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
482 10, 13, 14, 14, 11, 13, 16, 14, 14, 16, 15, 15, 12, 14, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
483 10, 13, 14, 14, 12, 12, 16, 15, 14, 16, 15, 15, 14, 14, 16, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
484 9, 12, 13, 14, 13, 11, 16, 13, 14, 15, 13, 14, 14, 14, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
485 11, 15, 16, 16, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
486 10, 13, 14, 14, 13, 14, 16, 15, 14, 16, 16, 16, 14, 15, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
487 10, 13, 13, 14, 13, 13, 16, 13, 13, 14, 14, 15, 15, 14, 15, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
488 13, 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
489 12, 16, 16, 16, 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
490 10, 12, 13, 14, 13, 13, 14, 13, 13, 14, 13, 14, 14, 14, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
491 6, 10, 11, 11, 10, 11, 13, 12, 11, 13, 11, 12, 11, 12, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
492 8, 12, 13, 13, 12, 13, 14, 14, 13, 15, 14, 14, 14, 14, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
493 12, 14, 16, 15, 15, 15, 16, 15, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
494 7, 11, 11, 12, 12, 12, 14, 13, 12, 14, 11, 12, 13, 13, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
495 8, 11, 12, 12, 12, 12, 14, 13, 12, 14, 12, 13, 13, 14, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
496 11, 13, 14, 14, 14, 14, 16, 15, 15, 16, 15, 15, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
497 10, 14, 12, 14, 14, 15, 16, 15, 13, 16, 12, 14, 16, 16, 15, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
498 10, 13, 13, 14, 14, 15, 16, 15, 14, 16, 14, 15, 15, 16, 16, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
499 10, 13, 14, 13, 14, 14, 16, 15, 14, 16, 15, 15, 14, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
500 7, 11, 11, 11, 10, 12, 14, 13, 11, 14, 13, 13, 10, 12, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
501 8, 11, 12, 12, 11, 12, 14, 13, 12, 15, 13, 13, 12, 13, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
502 11, 13, 14, 14, 14, 14, 16, 15, 14, 16, 15, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
503 8, 12, 12, 13, 12, 13, 15, 14, 12, 15, 13, 13, 13, 14, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
504 6, 10, 10, 11, 10, 11, 13, 12, 11, 13, 11, 12, 11, 12, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
505 9, 12, 13, 13, 13, 13, 14, 13, 13, 15, 14, 14, 14, 14, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
506 11, 15, 14, 15, 14, 15, 16, 16, 16, 16, 15, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
507 9, 13, 12, 13, 13, 13, 15, 14, 13, 14, 13, 14, 14, 15, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
508 9, 12, 12, 12, 12, 13, 14, 13, 13, 14, 13, 13, 13, 13, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
509 10, 13, 15, 14, 12, 14, 16, 14, 14, 16, 15, 15, 12, 14, 16, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
510 10, 14, 14, 14, 13, 14, 16, 15, 14, 16, 16, 16, 13, 14, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
511 11, 13, 14, 14, 14, 13, 16, 14, 14, 16, 15, 15, 15, 15, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
512 11, 15, 15, 15, 14, 15, 16, 16, 15, 16, 16, 16, 14, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
513 9, 13, 13, 13, 12, 13, 15, 14, 13, 15, 14, 14, 13, 14, 15, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
514 9, 12, 12, 13, 12, 12, 14, 13, 13, 14, 13, 14, 14, 14, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
515 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
516 11, 14, 14, 15, 15, 14, 16, 16, 14, 16, 14, 15, 15, 16, 16, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
517 9, 12, 12, 13, 12, 12, 14, 12, 12, 14, 13, 13, 13, 13, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
518 11, 14, 14, 16, 14, 16, 16, 16, 13, 16, 14, 16, 14, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
519 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
520 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
521 11, 15, 14, 16, 14, 15, 16, 16, 15, 16, 14, 15, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
522 11, 15, 14, 16, 15, 16, 16, 16, 15, 16, 15, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
523 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
524 11, 14, 13, 14, 15, 14, 16, 15, 14, 16, 12, 14, 16, 16, 15, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
525 11, 14, 14, 16, 14, 15, 16, 16, 15, 16, 14, 15, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
526 12, 14, 14, 15, 14, 16, 16, 15, 14, 16, 15, 15, 15, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
527 11, 14, 15, 15, 13, 15, 16, 16, 14, 16, 16, 16, 12, 15, 15, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
528 11, 15, 16, 16, 15, 16, 16, 16, 15, 16, 16, 16, 14, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
529 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
530 11, 15, 14, 16, 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
531 10, 13, 13, 14, 14, 14, 16, 15, 14, 16, 14, 15, 14, 14, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
532 12, 15, 14, 16, 14, 15, 16, 15, 15, 16, 15, 15, 16, 15, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
533 12, 16, 14, 16, 15, 16, 16, 16, 16, 16, 14, 15, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
534 10, 13, 13, 14, 14, 13, 16, 14, 13, 16, 13, 14, 15, 15, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
535 10, 13, 13, 14, 13, 13, 16, 14, 14, 15, 14, 14, 14, 14, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
536 10, 14, 15, 14, 13, 15, 16, 15, 14, 16, 16, 16, 11, 14, 16, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
537 11, 14, 14, 16, 14, 15, 16, 15, 15, 16, 16, 16, 13, 15, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
538 12, 15, 15, 15, 15, 15, 16, 16, 16, 16, 16, 16, 16, 15, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
539 12, 16, 16, 16, 15, 16, 16, 16, 16, 16, 16, 16, 14, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
540 10, 13, 14, 14, 13, 14, 16, 14, 13, 16, 15, 14, 12, 14, 16, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
541 10, 13, 13, 14, 13, 14, 16, 14, 14, 15, 14, 14, 13, 14, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
542 13, 16, 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
543 11, 13, 14, 15, 14, 14, 16, 15, 14, 16, 14, 15, 14, 15, 16, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
544 8, 11, 11, 11, 11, 12, 13, 12, 11, 13, 11, 12, 11, 12, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
545 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
546 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
547 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
548 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
549 8, 8, 8, 7, 8, 7, 8, 6, 8, 8, 7, 6, 7, 6, 6, 4,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
550 11, 10, 11, 9, 11, 9, 11, 8, 11, 10, 10, 9, 10, 8, 9, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
551 13, 11, 13, 10, 12, 10, 13, 9, 13, 12, 13, 10, 12, 10, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
552 11, 11, 10, 9, 11, 10, 11, 9, 10, 11, 9, 8, 10, 9, 9, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
553 12, 12, 11, 9, 12, 11, 12, 9, 12, 12, 11, 9, 11, 10, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
554 14, 13, 13, 10, 15, 12, 13, 10, 15, 13, 13, 10, 13, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
555 13, 13, 11, 10, 14, 13, 12, 10, 13, 13, 10, 10, 12, 11, 10, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
556 15, 14, 13, 10, 14, 13, 13, 10, 14, 13, 12, 10, 13, 12, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
557 14, 14, 13, 10, 16, 13, 13, 10, 15, 14, 13, 10, 13, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
558 11, 11, 11, 10, 10, 9, 10, 9, 10, 10, 10, 9, 9, 8, 9, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
559 12, 12, 12, 11, 11, 9, 12, 9, 12, 12, 11, 10, 11, 9, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
560 14, 13, 14, 12, 13, 10, 13, 10, 15, 13, 14, 12, 12, 10, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
561 13, 13, 12, 11, 12, 11, 12, 10, 12, 12, 11, 10, 11, 10, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
562 14, 13, 13, 11, 13, 12, 12, 10, 13, 13, 12, 11, 12, 10, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
563 16, 15, 15, 12, 14, 12, 13, 10, 15, 14, 13, 12, 13, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
564 15, 15, 13, 13, 14, 14, 14, 12, 14, 14, 12, 11, 13, 12, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
565 15, 16, 14, 12, 15, 14, 13, 11, 15, 15, 13, 12, 13, 12, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
566 16, 15, 15, 12, 16, 14, 14, 10, 15, 15, 14, 12, 14, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
567 13, 13, 13, 13, 11, 10, 12, 10, 12, 13, 12, 11, 10, 10, 10, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
568 14, 13, 14, 13, 12, 10, 13, 10, 14, 14, 13, 12, 12, 10, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
569 15, 14, 16, 14, 13, 10, 14, 10, 16, 14, 14, 13, 13, 10, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
570 15, 15, 14, 14, 14, 13, 13, 12, 14, 14, 13, 12, 12, 11, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
571 15, 15, 15, 14, 14, 12, 14, 11, 15, 14, 13, 13, 13, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
572 16, 15, 16, 14, 15, 12, 14, 11, 16, 16, 15, 13, 14, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
573 16, 16, 16, 14, 15, 14, 14, 12, 15, 15, 14, 13, 13, 12, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
574 16, 16, 15, 15, 16, 14, 14, 11, 16, 16, 14, 13, 14, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
575 16, 16, 16, 13, 15, 13, 14, 10, 16, 16, 15, 13, 14, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
576 11, 11, 11, 10, 11, 10, 11, 9, 10, 10, 9, 8, 9, 9, 9, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
577 12, 12, 13, 11, 12, 11, 12, 10, 12, 12, 11, 10, 11, 10, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
578 15, 13, 15, 12, 14, 13, 14, 11, 14, 13, 13, 11, 13, 11, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
579 12, 13, 12, 11, 13, 11, 12, 10, 11, 12, 10, 9, 11, 10, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
580 14, 13, 13, 11, 14, 12, 13, 11, 12, 12, 11, 10, 12, 11, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
581 15, 14, 15, 12, 15, 13, 15, 11, 15, 14, 13, 11, 13, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
582 14, 14, 13, 12, 15, 14, 13, 12, 13, 13, 11, 10, 13, 12, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
583 16, 15, 13, 12, 15, 14, 14, 12, 14, 14, 12, 11, 14, 12, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
584 16, 15, 14, 12, 16, 15, 15, 11, 15, 14, 13, 11, 14, 13, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
585 12, 12, 12, 11, 12, 11, 12, 10, 11, 11, 11, 10, 10, 9, 9, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
586 13, 13, 14, 12, 13, 11, 13, 11, 13, 12, 12, 11, 11, 10, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
587 15, 14, 16, 13, 14, 12, 14, 11, 14, 14, 14, 12, 13, 11, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
588 13, 13, 13, 12, 13, 12, 13, 11, 12, 12, 11, 10, 11, 10, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
589 14, 14, 13, 12, 13, 12, 13, 10, 13, 13, 11, 10, 12, 10, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
590 16, 15, 15, 13, 15, 12, 14, 11, 15, 14, 13, 11, 13, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
591 15, 16, 14, 13, 15, 14, 14, 12, 14, 14, 12, 11, 13, 12, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
592 16, 15, 14, 13, 15, 14, 14, 11, 14, 14, 12, 11, 13, 12, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
593 16, 15, 15, 12, 16, 14, 14, 11, 15, 14, 13, 11, 14, 12, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
594 14, 15, 14, 14, 13, 12, 13, 12, 13, 13, 12, 12, 11, 10, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
595 15, 15, 15, 14, 13, 12, 14, 12, 14, 14, 13, 12, 12, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
596 16, 15, 16, 14, 14, 12, 15, 12, 16, 14, 14, 13, 13, 11, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
597 15, 15, 15, 14, 14, 13, 14, 12, 14, 14, 13, 12, 12, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
598 15, 15, 15, 14, 14, 13, 14, 12, 14, 14, 13, 12, 12, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
599 16, 15, 16, 14, 15, 12, 15, 11, 15, 14, 14, 12, 13, 11, 12, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
600 16, 16, 16, 15, 16, 15, 14, 13, 15, 15, 13, 12, 13, 12, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
601 16, 16, 16, 14, 15, 14, 14, 12, 15, 15, 13, 12, 14, 12, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
602 16, 16, 16, 14, 16, 14, 14, 11, 15, 15, 14, 12, 14, 12, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
603 13, 13, 13, 12, 13, 12, 13, 11, 11, 12, 11, 10, 10, 10, 10, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
604 15, 14, 14, 13, 14, 13, 14, 12, 13, 13, 12, 11, 13, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
605 16, 15, 16, 14, 16, 14, 16, 13, 15, 14, 14, 12, 14, 12, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
606 14, 15, 13, 13, 14, 13, 14, 12, 12, 13, 11, 11, 12, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
607 15, 15, 14, 13, 15, 14, 14, 12, 13, 13, 12, 11, 13, 12, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
608 16, 16, 16, 13, 16, 15, 16, 13, 15, 14, 14, 12, 14, 13, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
609 14, 15, 13, 13, 16, 15, 15, 13, 13, 14, 11, 11, 13, 12, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
610 16, 16, 14, 13, 16, 15, 16, 13, 14, 14, 12, 11, 14, 13, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
611 16, 16, 15, 12, 16, 15, 15, 12, 15, 14, 13, 11, 14, 13, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
612 14, 14, 14, 13, 14, 13, 14, 12, 12, 13, 12, 11, 11, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
613 15, 15, 15, 14, 14, 13, 15, 12, 14, 13, 13, 12, 12, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
614 16, 16, 16, 15, 15, 14, 16, 13, 15, 14, 14, 12, 14, 12, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
615 15, 15, 14, 14, 14, 14, 14, 13, 13, 14, 12, 11, 12, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
616 15, 15, 15, 13, 15, 14, 14, 12, 13, 13, 12, 11, 12, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
617 16, 15, 16, 14, 16, 14, 15, 12, 15, 14, 14, 12, 13, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
618 16, 16, 15, 14, 16, 15, 15, 13, 14, 14, 12, 11, 13, 12, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
619 16, 16, 15, 13, 16, 14, 14, 12, 14, 15, 12, 11, 13, 12, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
620 16, 16, 16, 13, 16, 15, 15, 12, 15, 14, 13, 11, 14, 12, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
621 15, 15, 15, 14, 13, 13, 14, 13, 13, 14, 13, 12, 11, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
622 16, 16, 16, 14, 15, 13, 15, 12, 14, 14, 14, 13, 12, 11, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
623 16, 16, 16, 14, 15, 13, 15, 12, 15, 14, 14, 12, 13, 11, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
624 15, 16, 16, 14, 15, 14, 15, 13, 14, 14, 12, 12, 11, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
625 16, 15, 15, 14, 15, 14, 14, 12, 14, 14, 13, 12, 12, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
626 16, 16, 16, 13, 15, 13, 15, 12, 15, 14, 14, 12, 13, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
627 16, 16, 16, 15, 15, 16, 15, 13, 14, 14, 12, 12, 12, 12, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
628 16, 16, 16, 14, 16, 14, 14, 12, 15, 15, 13, 11, 12, 11, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
629 16, 16, 15, 13, 16, 14, 14, 11, 15, 14, 13, 10, 13, 11, 10, 5,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
630 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
631 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
632 1, 6, 6, 7, 6, 7, 9, 7, 6, 9, 7, 8, 7, 8, 8, 5,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
633 5, 8, 10, 10, 10, 10, 12, 11, 11, 12, 11, 11, 11, 12, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
634 9, 10, 12, 11, 13, 12, 15, 13, 14, 15, 15, 14, 14, 15, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
635 6, 10, 9, 10, 10, 11, 13, 12, 11, 13, 11, 12, 12, 12, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
636 6, 10, 10, 10, 11, 11, 13, 11, 11, 13, 12, 12, 11, 12, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
637 9, 12, 13, 12, 13, 13, 16, 13, 14, 16, 15, 14, 14, 15, 16, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
638 9, 13, 11, 13, 14, 14, 16, 15, 14, 16, 13, 15, 15, 15, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
639 9, 13, 12, 13, 14, 15, 16, 15, 14, 16, 15, 15, 15, 15, 16, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
640 8, 12, 12, 11, 13, 14, 15, 13, 13, 15, 14, 14, 14, 14, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
641 6, 10, 10, 11, 9, 10, 13, 11, 11, 13, 12, 12, 10, 12, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
642 6, 10, 11, 11, 11, 10, 13, 12, 11, 13, 12, 12, 12, 12, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
643 9, 12, 13, 13, 13, 12, 16, 13, 14, 16, 14, 15, 16, 14, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
644 8, 12, 13, 13, 13, 13, 16, 14, 13, 16, 13, 14, 14, 14, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
645 7, 11, 11, 12, 11, 12, 14, 13, 12, 14, 13, 13, 12, 13, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
646 9, 12, 13, 13, 13, 13, 15, 14, 14, 16, 16, 15, 15, 15, 16, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
647 11, 16, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
648 10, 14, 14, 15, 15, 16, 16, 16, 14, 16, 14, 16, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
649 9, 13, 13, 13, 14, 14, 16, 14, 14, 16, 15, 14, 14, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
650 9, 13, 14, 14, 11, 13, 16, 14, 13, 16, 15, 16, 13, 14, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
651 10, 13, 14, 15, 13, 12, 16, 14, 14, 16, 15, 15, 14, 14, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
652 9, 12, 13, 14, 12, 11, 15, 13, 13, 15, 13, 14, 15, 14, 16, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
653 11, 15, 16, 16, 14, 16, 16, 16, 15, 16, 16, 16, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
654 11, 14, 14, 15, 13, 14, 16, 15, 15, 16, 16, 16, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
655 10, 12, 13, 14, 13, 13, 16, 14, 14, 14, 14, 16, 15, 14, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
656 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
657 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
658 9, 12, 13, 14, 13, 13, 16, 13, 13, 15, 15, 16, 15, 15, 16, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
659 6, 11, 11, 12, 10, 12, 13, 12, 11, 13, 11, 12, 11, 12, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
660 9, 12, 13, 13, 13, 13, 16, 14, 14, 15, 14, 14, 14, 14, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
661 12, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
662 7, 11, 11, 12, 12, 12, 14, 13, 12, 14, 11, 13, 13, 13, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
663 8, 12, 12, 13, 12, 13, 14, 13, 13, 14, 13, 13, 13, 14, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
664 11, 14, 14, 15, 16, 15, 16, 16, 15, 16, 16, 16, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
665 10, 14, 12, 14, 15, 15, 16, 16, 14, 16, 12, 15, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
666 11, 14, 13, 15, 15, 15, 16, 16, 14, 16, 14, 14, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
667 11, 14, 14, 14, 15, 16, 16, 16, 16, 16, 16, 15, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
668 7, 11, 12, 11, 10, 12, 14, 13, 12, 14, 13, 13, 10, 12, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
669 8, 12, 12, 13, 12, 12, 15, 13, 13, 14, 13, 13, 13, 13, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
670 11, 13, 15, 16, 14, 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
671 9, 12, 13, 13, 13, 13, 15, 14, 13, 15, 13, 14, 13, 14, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
672 7, 11, 11, 11, 11, 11, 13, 12, 11, 13, 11, 12, 11, 12, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
673 9, 12, 13, 13, 13, 13, 16, 13, 14, 16, 15, 14, 14, 14, 16, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
674 12, 14, 14, 16, 16, 16, 16, 16, 16, 16, 15, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
675 10, 13, 13, 14, 14, 14, 16, 15, 14, 16, 14, 14, 16, 15, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
676 9, 12, 13, 13, 13, 15, 16, 14, 13, 16, 14, 13, 13, 14, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
677 10, 14, 15, 14, 12, 14, 16, 15, 13, 16, 16, 16, 12, 14, 16, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
678 11, 14, 14, 14, 14, 14, 16, 15, 15, 16, 16, 16, 14, 15, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
679 11, 14, 14, 16, 14, 13, 16, 15, 14, 16, 15, 16, 15, 15, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
680 12, 16, 16, 16, 14, 16, 16, 16, 16, 16, 16, 16, 15, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
681 10, 13, 14, 14, 13, 14, 16, 14, 13, 16, 15, 15, 13, 14, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
682 9, 12, 13, 14, 13, 12, 16, 14, 13, 16, 14, 14, 14, 14, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
683 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
684 12, 15, 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
685 9, 12, 13, 13, 13, 13, 14, 13, 12, 15, 14, 14, 14, 14, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
686 11, 14, 14, 16, 14, 16, 16, 16, 13, 16, 14, 16, 14, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
687 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
688 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
689 11, 14, 14, 16, 16, 15, 16, 16, 15, 16, 14, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
690 12, 15, 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
691 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
692 10, 14, 12, 15, 15, 15, 16, 16, 14, 16, 12, 14, 16, 16, 15, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
693 12, 15, 14, 16, 16, 16, 16, 16, 15, 16, 14, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
694 12, 15, 15, 15, 15, 16, 16, 16, 16, 16, 16, 15, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
695 11, 15, 15, 16, 14, 16, 16, 16, 14, 16, 16, 16, 13, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
696 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
697 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
698 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
699 11, 15, 14, 16, 14, 14, 16, 15, 14, 16, 15, 16, 15, 16, 16, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
700 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
701 12, 16, 15, 16, 16, 16, 16, 16, 16, 16, 15, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
702 10, 14, 13, 14, 15, 14, 16, 15, 14, 16, 13, 16, 16, 16, 15, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
703 10, 14, 14, 14, 13, 14, 16, 15, 15, 16, 14, 14, 14, 16, 16, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
704 10, 14, 15, 14, 13, 16, 16, 15, 13, 16, 16, 16, 12, 14, 16, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
705 11, 16, 16, 16, 14, 15, 16, 16, 16, 16, 16, 16, 14, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
706 12, 15, 14, 16, 15, 16, 16, 16, 16, 16, 16, 16, 16, 14, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
707 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 15, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
708 11, 14, 14, 14, 14, 15, 16, 14, 14, 16, 16, 16, 13, 15, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
709 10, 14, 13, 14, 14, 14, 16, 15, 14, 16, 15, 15, 14, 14, 16, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
710 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
711 12, 14, 14, 16, 16, 16, 16, 16, 16, 16, 15, 16, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
712 8, 11, 11, 12, 12, 12, 13, 12, 11, 13, 12, 12, 12, 13, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
713 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
714 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
715 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
716 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
717 5, 6, 6, 6, 6, 6, 7, 6, 6, 7, 6, 6, 6, 6, 6, 4,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
718 9, 9, 9, 8, 9, 8, 10, 8, 10, 10, 9, 9, 9, 8, 9, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
719 11, 10, 12, 10, 11, 10, 12, 9, 12, 11, 11, 10, 11, 10, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
720 9, 10, 9, 8, 10, 10, 10, 9, 9, 10, 8, 8, 9, 9, 8, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
721 10, 11, 10, 9, 11, 11, 11, 9, 11, 11, 10, 9, 10, 10, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
722 13, 12, 12, 10, 13, 12, 13, 10, 13, 12, 12, 11, 13, 12, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
723 11, 12, 10, 10, 12, 12, 11, 10, 11, 12, 10, 10, 11, 11, 10, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
724 12, 12, 11, 10, 13, 13, 13, 10, 13, 13, 12, 11, 13, 12, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
725 12, 12, 12, 10, 13, 13, 13, 10, 13, 13, 12, 10, 13, 12, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
726 9, 9, 10, 10, 9, 8, 10, 9, 9, 10, 9, 9, 8, 8, 9, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
727 10, 11, 11, 11, 10, 9, 11, 9, 11, 11, 11, 10, 10, 9, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
728 12, 12, 13, 12, 12, 10, 13, 10, 13, 13, 13, 12, 12, 11, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
729 11, 12, 11, 11, 11, 11, 11, 10, 11, 12, 10, 10, 10, 10, 10, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
730 12, 12, 12, 11, 12, 11, 11, 10, 12, 12, 11, 11, 11, 11, 10, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
731 14, 13, 13, 12, 13, 12, 13, 10, 14, 14, 13, 12, 13, 12, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
732 13, 14, 13, 12, 13, 13, 13, 12, 13, 13, 12, 12, 12, 12, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
733 14, 14, 13, 12, 13, 13, 13, 11, 14, 14, 13, 12, 13, 12, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
734 14, 15, 14, 12, 15, 13, 13, 11, 15, 14, 14, 12, 14, 13, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
735 11, 11, 12, 12, 10, 10, 12, 11, 11, 12, 11, 11, 10, 10, 10, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
736 12, 12, 14, 13, 11, 10, 12, 11, 13, 13, 13, 12, 12, 10, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
737 13, 13, 14, 14, 12, 10, 13, 11, 14, 14, 14, 13, 12, 11, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
738 13, 13, 13, 13, 12, 13, 13, 12, 13, 14, 12, 12, 12, 12, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
739 13, 14, 14, 13, 13, 12, 13, 11, 14, 14, 13, 12, 13, 12, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
740 14, 14, 14, 14, 14, 12, 13, 11, 15, 15, 15, 13, 14, 12, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
741 14, 15, 15, 13, 14, 14, 13, 12, 13, 14, 13, 13, 12, 12, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
742 16, 16, 15, 14, 15, 14, 13, 11, 15, 15, 14, 13, 13, 13, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
743 15, 15, 15, 13, 14, 13, 13, 11, 15, 15, 15, 13, 14, 13, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
744 8, 9, 9, 9, 9, 9, 10, 9, 8, 10, 9, 9, 8, 8, 9, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
745 11, 11, 11, 11, 11, 11, 12, 10, 11, 11, 11, 10, 10, 10, 10, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
746 13, 13, 14, 12, 13, 12, 14, 11, 13, 13, 13, 12, 13, 11, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
747 10, 11, 10, 11, 11, 11, 12, 10, 10, 11, 10, 10, 10, 10, 10, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
748 12, 12, 12, 11, 12, 12, 12, 11, 11, 12, 11, 10, 11, 11, 10, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
749 14, 13, 14, 12, 14, 13, 14, 12, 14, 13, 13, 11, 13, 12, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
750 12, 13, 12, 12, 13, 13, 13, 12, 12, 13, 11, 11, 12, 12, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
751 13, 14, 13, 12, 14, 14, 14, 12, 14, 13, 12, 11, 13, 12, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
752 14, 14, 13, 12, 15, 14, 15, 12, 14, 14, 13, 11, 13, 13, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
753 10, 11, 11, 11, 10, 10, 12, 10, 10, 11, 10, 10, 9, 9, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
754 12, 12, 13, 12, 12, 11, 12, 11, 12, 12, 12, 11, 11, 10, 10, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
755 14, 13, 14, 13, 14, 12, 13, 12, 14, 13, 14, 12, 13, 11, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
756 12, 13, 12, 12, 12, 12, 12, 11, 11, 12, 11, 10, 10, 10, 10, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
757 12, 12, 12, 12, 12, 12, 12, 11, 12, 12, 11, 10, 11, 10, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
758 14, 14, 14, 12, 14, 12, 14, 11, 14, 13, 13, 11, 13, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
759 13, 15, 13, 13, 14, 14, 14, 12, 13, 14, 12, 12, 12, 12, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
760 14, 15, 13, 12, 14, 13, 13, 11, 13, 13, 12, 11, 13, 12, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
761 15, 15, 15, 12, 15, 14, 14, 11, 14, 14, 13, 11, 13, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
762 12, 13, 13, 13, 12, 12, 13, 12, 12, 13, 12, 12, 11, 11, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
763 13, 14, 15, 14, 13, 12, 14, 12, 13, 13, 14, 12, 12, 11, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
764 14, 14, 15, 14, 14, 12, 14, 12, 14, 14, 14, 13, 13, 11, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
765 13, 14, 14, 14, 13, 13, 14, 13, 13, 13, 12, 12, 12, 12, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
766 14, 14, 14, 13, 13, 13, 13, 12, 13, 14, 13, 12, 12, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
767 15, 14, 15, 14, 14, 13, 14, 11, 15, 14, 14, 12, 13, 11, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
768 14, 15, 14, 14, 15, 14, 14, 13, 14, 15, 13, 13, 12, 12, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
769 16, 15, 14, 14, 14, 14, 13, 12, 14, 14, 13, 12, 13, 12, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
770 15, 15, 15, 14, 16, 14, 14, 11, 15, 15, 14, 12, 13, 12, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
771 11, 12, 11, 12, 12, 12, 12, 11, 10, 11, 10, 10, 10, 10, 10, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
772 13, 13, 13, 13, 13, 13, 14, 12, 12, 12, 12, 12, 12, 11, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
773 14, 14, 14, 13, 15, 13, 15, 13, 14, 14, 14, 12, 14, 12, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
774 12, 13, 12, 13, 13, 13, 13, 12, 11, 12, 11, 11, 12, 11, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
775 14, 14, 13, 13, 14, 14, 14, 12, 12, 13, 12, 11, 13, 12, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
776 14, 14, 15, 13, 15, 15, 15, 13, 15, 13, 13, 12, 14, 12, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
777 13, 15, 12, 13, 14, 14, 14, 13, 12, 13, 11, 11, 13, 12, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
778 14, 15, 14, 13, 15, 14, 15, 13, 14, 14, 12, 11, 13, 13, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
779 14, 15, 14, 13, 15, 14, 15, 13, 14, 14, 13, 11, 14, 13, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
780 12, 13, 13, 13, 12, 13, 13, 12, 11, 12, 12, 11, 11, 11, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
781 13, 14, 14, 13, 14, 13, 14, 12, 13, 13, 13, 12, 12, 11, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
782 15, 15, 16, 14, 15, 14, 14, 13, 15, 14, 14, 13, 13, 12, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
783 13, 14, 14, 13, 13, 14, 14, 13, 12, 13, 12, 12, 11, 11, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
784 14, 14, 14, 13, 14, 13, 14, 12, 13, 13, 12, 11, 12, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
785 15, 15, 15, 13, 15, 14, 14, 12, 14, 13, 13, 12, 13, 12, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
786 14, 15, 14, 14, 15, 15, 14, 13, 13, 14, 12, 12, 13, 12, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
787 15, 15, 14, 13, 15, 14, 14, 13, 14, 14, 12, 11, 13, 12, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
788 15, 16, 14, 13, 15, 15, 15, 12, 14, 14, 13, 11, 14, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
789 12, 14, 13, 13, 13, 13, 14, 12, 12, 13, 12, 12, 10, 11, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
790 14, 15, 15, 14, 13, 13, 15, 13, 13, 14, 14, 12, 12, 11, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
791 15, 15, 16, 14, 14, 13, 15, 13, 14, 14, 14, 13, 13, 11, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
792 14, 15, 14, 14, 14, 14, 14, 13, 13, 14, 13, 12, 12, 12, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
793 14, 15, 15, 14, 14, 14, 14, 12, 13, 14, 13, 12, 12, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
794 15, 15, 15, 14, 14, 13, 15, 12, 15, 14, 14, 12, 13, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
795 14, 16, 14, 14, 14, 15, 14, 13, 13, 14, 12, 12, 12, 12, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
796 15, 15, 15, 14, 15, 14, 14, 12, 14, 14, 13, 12, 12, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
797 15, 15, 14, 13, 15, 13, 14, 12, 14, 14, 13, 11, 13, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
798 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
799 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
800 1, 5, 6, 7, 6, 7, 9, 8, 6, 9, 8, 8, 7, 8, 8, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
801 5, 8, 10, 10, 10, 11, 13, 12, 11, 13, 12, 12, 12, 12, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
802 8, 10, 13, 12, 13, 13, 16, 14, 14, 16, 16, 14, 16, 16, 16, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
803 5, 10, 9, 11, 11, 12, 13, 12, 11, 13, 11, 12, 12, 12, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
804 6, 10, 11, 11, 11, 12, 14, 12, 11, 13, 13, 13, 12, 13, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
805 8, 12, 13, 12, 14, 14, 16, 14, 14, 16, 16, 16, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
806 9, 13, 11, 14, 14, 16, 16, 16, 14, 16, 14, 16, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
807 9, 13, 13, 13, 14, 16, 16, 16, 16, 14, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
808 8, 12, 13, 12, 13, 14, 16, 14, 14, 16, 16, 16, 14, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
809 5, 10, 11, 12, 9, 11, 13, 12, 11, 13, 13, 13, 11, 12, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
810 6, 10, 11, 12, 11, 11, 14, 13, 12, 14, 12, 13, 13, 13, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
811 9, 12, 14, 15, 13, 13, 16, 16, 14, 16, 16, 16, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
812 8, 13, 13, 14, 13, 14, 16, 16, 14, 16, 14, 16, 14, 16, 14, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
813 7, 11, 12, 13, 12, 12, 14, 13, 12, 14, 13, 14, 13, 14, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
814 9, 13, 14, 14, 14, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
815 11, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
816 10, 15, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
817 9, 13, 14, 14, 14, 16, 16, 16, 14, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
818 9, 13, 14, 15, 11, 13, 16, 14, 14, 16, 16, 16, 13, 14, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
819 9, 13, 14, 16, 13, 13, 16, 16, 14, 16, 16, 16, 16, 15, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
820 8, 12, 13, 16, 13, 12, 16, 14, 13, 16, 14, 16, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
821 11, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
822 10, 14, 16, 16, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
823 9, 13, 16, 16, 14, 14, 16, 16, 14, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
824 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
825 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
826 9, 13, 14, 15, 14, 14, 16, 14, 13, 16, 16, 16, 14, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
827 6, 11, 11, 12, 11, 12, 14, 13, 11, 14, 12, 13, 12, 13, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
828 9, 13, 13, 14, 13, 14, 16, 16, 14, 16, 16, 16, 15, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
829 11, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
830 7, 11, 11, 13, 12, 13, 16, 14, 12, 16, 12, 14, 14, 14, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
831 8, 12, 12, 13, 12, 14, 16, 14, 13, 16, 14, 14, 14, 14, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
832 11, 15, 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
833 10, 14, 13, 16, 16, 16, 16, 16, 14, 16, 14, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
834 10, 16, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
835 10, 16, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
836 7, 11, 12, 12, 11, 13, 16, 14, 12, 15, 14, 14, 11, 13, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
837 8, 12, 12, 13, 13, 13, 16, 14, 13, 16, 13, 15, 13, 14, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
838 11, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
839 8, 12, 13, 14, 13, 14, 16, 16, 14, 16, 14, 16, 14, 16, 15, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
840 6, 11, 11, 12, 11, 12, 13, 13, 11, 13, 12, 13, 12, 13, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
841 9, 13, 14, 14, 14, 14, 16, 14, 14, 16, 16, 16, 16, 16, 14, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
842 11, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
843 10, 14, 13, 14, 14, 16, 16, 16, 14, 16, 14, 16, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
844 9, 13, 14, 13, 13, 16, 16, 14, 13, 16, 16, 16, 13, 16, 14, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
845 10, 14, 14, 16, 13, 16, 16, 16, 16, 16, 16, 16, 13, 14, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
846 11, 16, 16, 16, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
847 10, 14, 16, 16, 14, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
848 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
849 10, 14, 14, 14, 14, 16, 16, 16, 14, 16, 16, 16, 14, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
850 9, 13, 13, 16, 14, 14, 16, 16, 14, 16, 14, 16, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
851 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
852 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
853 9, 13, 14, 14, 13, 16, 16, 14, 13, 16, 14, 16, 14, 14, 16, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
854 10, 14, 14, 16, 16, 16, 16, 16, 13, 16, 16, 16, 14, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
855 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
856 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
857 11, 16, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
858 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
859 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
860 10, 14, 13, 16, 16, 16, 16, 16, 14, 16, 12, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
861 11, 16, 16, 16, 16, 16, 16, 16, 16, 16, 15, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
862 11, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
863 11, 16, 16, 16, 16, 16, 16, 16, 14, 16, 16, 16, 14, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
864 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
865 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
866 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
867 11, 16, 16, 16, 16, 16, 16, 16, 14, 16, 16, 16, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
868 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
869 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
870 10, 15, 14, 16, 16, 16, 16, 16, 16, 16, 14, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
871 10, 14, 14, 14, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
872 10, 14, 16, 16, 13, 16, 16, 16, 14, 16, 16, 16, 12, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
873 11, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 15, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
874 11, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
875 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
876 10, 15, 14, 16, 14, 16, 16, 16, 16, 16, 16, 16, 14, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
877 10, 15, 14, 16, 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
878 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
879 11, 14, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
880 8, 12, 12, 13, 12, 14, 14, 14, 12, 16, 13, 14, 12, 14, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
881 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
882 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
883 };
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
884
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
885
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
886 static const uint8_t rv34_table_intra_cbp[NUM_INTRA_TABLES][8][CBP_VLC_SIZE] = {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
887 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
888 { 0, 3, 3, 4, 3, 5, 5, 5, 2, 5, 4, 6, 4, 6, 6, 6, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
889 { 0, 2, 3, 4, 2, 5, 6, 7, 3, 6, 5, 7, 4, 7, 8, 8, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
890 { 0, 3, 4, 4, 3, 4, 5, 5, 3, 5, 4, 5, 4, 5, 5, 3, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
891 { 0, 3, 3, 4, 3, 4, 5, 5, 3, 5, 4, 6, 3, 5, 6, 5, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
892 { 0, 4, 4, 4, 4, 5, 5, 4, 4, 5, 4, 5, 4, 4, 4, 2, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
893 { 0, 3, 3, 4, 3, 4, 5, 5, 3, 5, 4, 5, 4, 5, 5, 4, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
894 { 0, 6, 6, 5, 6, 5, 6, 4, 6, 6, 5, 4, 4, 4, 4, 1, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
895 { 0, 4, 4, 4, 4, 5, 5, 4, 4, 5, 5, 4, 4, 4, 4, 2, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
896 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
897 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
898 { 0, 4, 3, 4, 3, 4, 5, 4, 3, 5, 4, 5, 3, 5, 5, 5, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
899 { 0, 2, 3, 4, 2, 5, 6, 7, 3, 6, 5, 7, 4, 7, 8, 8, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
900 { 0, 4, 4, 4, 4, 4, 5, 4, 4, 5, 4, 4, 3, 4, 4, 3, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
901 { 0, 3, 3, 4, 3, 4, 5, 5, 3, 5, 4, 6, 3, 5, 6, 5, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
902 { 0, 4, 4, 4, 4, 4, 5, 4, 4, 5, 5, 5, 4, 4, 4, 2, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
903 { 0, 3, 3, 4, 3, 4, 5, 5, 3, 5, 4, 5, 4, 5, 5, 4, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
904 { 0, 5, 6, 5, 5, 5, 6, 4, 6, 6, 5, 4, 5, 4, 4, 1, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
905 { 0, 4, 4, 4, 4, 4, 5, 4, 4, 5, 5, 4, 4, 4, 5, 2, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
906 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
907 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
908 { 0, 3, 3, 4, 3, 4, 4, 5, 3, 5, 4, 5, 4, 5, 5, 5, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
909 { 0, 2, 3, 4, 2, 4, 6, 7, 3, 6, 5, 7, 5, 7, 8, 8, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
910 { 0, 4, 4, 4, 4, 4, 5, 4, 3, 5, 4, 4, 4, 4, 4, 3, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
911 { 0, 3, 3, 4, 3, 3, 6, 6, 3, 6, 4, 6, 3, 6, 6, 5, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
912 { 0, 4, 4, 4, 3, 4, 5, 4, 4, 5, 4, 4, 4, 4, 4, 3, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
913 { 0, 3, 3, 4, 3, 4, 5, 5, 3, 5, 4, 5, 4, 5, 5, 4, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
914 { 0, 5, 5, 5, 5, 5, 6, 4, 5, 6, 5, 5, 5, 4, 4, 1, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
915 { 0, 4, 4, 4, 4, 4, 6, 4, 4, 6, 5, 4, 4, 4, 4, 2, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
916 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
917 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
918 { 0, 3, 3, 4, 3, 4, 4, 5, 3, 5, 4, 5, 4, 5, 5, 5, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
919 { 0, 2, 3, 4, 2, 4, 7, 6, 3, 7, 5, 7, 5, 7, 7, 7, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
920 { 0, 3, 3, 4, 3, 4, 5, 5, 3, 5, 4, 5, 4, 5, 5, 4, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
921 { 0, 3, 3, 3, 3, 4, 6, 6, 3, 6, 4, 6, 3, 6, 6, 5, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
922 { 0, 3, 4, 4, 3, 4, 5, 4, 4, 5, 4, 5, 4, 5, 4, 3, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
923 { 0, 3, 3, 4, 3, 4, 5, 5, 3, 5, 4, 5, 4, 5, 5, 4, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
924 { 0, 4, 5, 4, 4, 4, 5, 4, 4, 5, 5, 4, 4, 4, 4, 2, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
925 { 0, 4, 4, 4, 4, 5, 5, 4, 4, 5, 5, 4, 4, 4, 4, 2, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
926 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
927 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
928 { 0, 3, 3, 4, 3, 4, 5, 6, 2, 5, 4, 7, 4, 6, 6, 7, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
929 { 0, 2, 3, 4, 2, 4, 6, 7, 3, 7, 5, 7, 5, 7, 7, 7, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
930 { 0, 3, 3, 4, 3, 4, 5, 5, 3, 5, 4, 5, 4, 5, 5, 4, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
931 { 0, 2, 3, 4, 3, 4, 6, 5, 3, 6, 4, 6, 4, 6, 6, 6, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
932 { 0, 3, 3, 4, 3, 4, 5, 5, 3, 5, 4, 5, 4, 5, 5, 4, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
933 { 0, 3, 3, 4, 3, 4, 5, 5, 3, 5, 4, 5, 4, 5, 5, 4, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
934 { 0, 4, 4, 4, 4, 5, 5, 4, 4, 5, 5, 4, 4, 4, 4, 2, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
935 { 0, 3, 4, 4, 4, 4, 5, 4, 4, 5, 4, 4, 4, 4, 4, 3, },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
936 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
937 };
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
938
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
939
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
940 static const uint8_t rv34_table_intra_firstpat[NUM_INTRA_TABLES][4][FIRSTBLK_VLC_SIZE] = {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
941 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
942 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
943 0, 10, 5, 10, 7, 12, 9, 11, 8, 13, 9, 12, 10, 13, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
944 16, 16, 14, 15, 15, 16, 13, 14, 5, 12, 6, 11, 9, 13, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
945 9, 14, 9, 12, 11, 14, 11, 12, 16, 16, 14, 15, 15, 16, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
946 10, 15, 9, 12, 12, 16, 11, 12, 12, 16, 10, 13, 13, 16, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
947 16, 16, 13, 14, 15, 16, 13, 12, 6, 12, 8, 11, 8, 12, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
948 9, 14, 10, 12, 10, 13, 11, 12, 15, 16, 14, 15, 14, 16, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
949 8, 13, 9, 12, 10, 13, 10, 12, 10, 14, 9, 12, 11, 14, 10, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
950 15, 16, 13, 15, 14, 16, 13, 13, 11, 16, 10, 13, 13, 16, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
951 12, 16, 11, 13, 13, 16, 11, 12, 16, 16, 13, 14, 15, 16, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
952 10, 16, 12, 14, 10, 14, 11, 12, 12, 16, 13, 14, 11, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
953 16, 16, 15, 16, 14, 15, 13, 13, 11, 16, 12, 14, 11, 14, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
954 12, 16, 12, 14, 11, 14, 11, 12, 16, 16, 14, 15, 13, 15, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
955 14, 16, 13, 14, 13, 16, 12, 12, 14, 16, 13, 14, 13, 16, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
956 16, 16, 14, 14, 14, 15, 12, 11, 2, 10, 6, 10, 7, 12, 9, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
957 8, 12, 9, 11, 10, 13, 10, 11, 15, 16, 14, 15, 14, 16, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
958 5, 12, 6, 11, 9, 13, 10, 11, 9, 13, 9, 11, 10, 13, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
959 15, 16, 13, 14, 14, 16, 13, 13, 9, 15, 8, 12, 12, 15, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
960 11, 16, 10, 12, 13, 15, 11, 11, 15, 16, 13, 14, 15, 16, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
961 6, 12, 8, 11, 8, 12, 9, 11, 9, 14, 9, 12, 10, 13, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
962 15, 16, 14, 15, 14, 16, 13, 13, 7, 13, 8, 11, 9, 13, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
963 9, 14, 9, 12, 10, 13, 10, 11, 14, 16, 13, 14, 13, 16, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
964 11, 16, 10, 12, 12, 15, 11, 11, 11, 16, 10, 12, 12, 15, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
965 15, 16, 12, 13, 14, 16, 12, 11, 9, 15, 11, 13, 9, 13, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
966 11, 16, 12, 14, 10, 14, 11, 12, 16, 16, 14, 15, 13, 15, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
967 11, 16, 11, 14, 10, 14, 11, 12, 11, 16, 12, 13, 11, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
968 15, 16, 14, 15, 13, 14, 12, 12, 13, 16, 12, 14, 13, 15, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
969 13, 16, 12, 14, 13, 15, 11, 11, 16, 16, 13, 14, 13, 15, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
970 5, 12, 7, 11, 8, 13, 10, 11, 9, 13, 9, 12, 10, 14, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
971 16, 16, 14, 15, 14, 16, 13, 13, 7, 13, 7, 11, 9, 13, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
972 9, 14, 9, 12, 11, 14, 11, 12, 16, 16, 14, 14, 14, 16, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
973 9, 15, 8, 12, 12, 15, 11, 12, 11, 16, 10, 12, 13, 16, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
974 16, 16, 13, 14, 15, 16, 12, 12, 7, 13, 8, 12, 9, 13, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
975 10, 14, 10, 12, 10, 14, 11, 12, 16, 16, 14, 15, 14, 16, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
976 8, 14, 9, 12, 10, 13, 10, 11, 9, 14, 9, 12, 10, 14, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
977 15, 16, 13, 14, 14, 16, 12, 12, 11, 16, 10, 12, 12, 15, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
978 11, 16, 10, 12, 12, 15, 11, 11, 15, 16, 12, 14, 14, 16, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
979 10, 16, 11, 13, 9, 14, 11, 12, 12, 16, 12, 14, 11, 14, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
980 16, 16, 14, 16, 14, 15, 13, 12, 11, 16, 11, 14, 10, 14, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
981 11, 16, 12, 14, 11, 14, 11, 11, 15, 16, 14, 15, 13, 15, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
982 13, 16, 12, 14, 13, 15, 11, 11, 13, 16, 12, 14, 12, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
983 15, 16, 12, 13, 13, 14, 11, 10, 6, 13, 8, 11, 9, 13, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
984 10, 14, 10, 12, 10, 13, 10, 11, 15, 16, 13, 13, 13, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
985 7, 13, 8, 11, 9, 13, 9, 11, 10, 14, 9, 11, 10, 13, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
986 15, 16, 13, 13, 13, 14, 11, 11, 9, 14, 8, 11, 10, 13, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
987 11, 15, 9, 11, 11, 13, 9, 10, 15, 16, 12, 13, 13, 14, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
988 7, 13, 8, 11, 9, 13, 9, 11, 10, 14, 10, 12, 10, 13, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
989 15, 16, 13, 13, 13, 14, 11, 11, 8, 13, 8, 11, 9, 13, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
990 9, 14, 9, 11, 10, 13, 9, 10, 14, 16, 12, 13, 13, 14, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
991 9, 14, 8, 11, 10, 13, 9, 9, 10, 14, 8, 11, 10, 13, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
992 14, 16, 11, 12, 12, 14, 10, 9, 9, 14, 9, 12, 8, 12, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
993 11, 15, 10, 12, 10, 13, 9, 10, 15, 16, 13, 13, 12, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
994 9, 14, 9, 12, 9, 12, 9, 10, 10, 14, 10, 12, 9, 12, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
995 14, 16, 12, 13, 11, 13, 10, 9, 10, 14, 9, 11, 10, 12, 8, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
996 10, 14, 9, 11, 10, 12, 8, 8, 12, 14, 9, 10, 10, 11, 8, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
997 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
998 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
999 0, 9, 6, 9, 6, 10, 8, 9, 7, 11, 8, 11, 9, 11, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1000 14, 16, 13, 14, 13, 14, 12, 11, 5, 11, 7, 10, 8, 10, 8, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1001 8, 12, 8, 11, 9, 12, 9, 10, 14, 16, 12, 13, 13, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1002 10, 14, 9, 11, 11, 13, 10, 10, 11, 15, 9, 11, 12, 13, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1003 15, 16, 12, 12, 13, 14, 11, 9, 6, 11, 7, 10, 7, 10, 8, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1004 8, 12, 9, 11, 9, 11, 9, 10, 14, 16, 13, 13, 13, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1005 7, 12, 8, 11, 8, 11, 9, 9, 9, 13, 9, 11, 9, 12, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1006 14, 16, 12, 13, 12, 14, 11, 10, 11, 14, 10, 12, 11, 13, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1007 12, 15, 10, 12, 12, 13, 10, 10, 15, 16, 12, 12, 13, 14, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1008 10, 14, 11, 13, 9, 12, 10, 10, 11, 15, 12, 13, 10, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1009 14, 16, 13, 14, 12, 13, 11, 10, 11, 14, 11, 13, 10, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1010 12, 15, 11, 13, 10, 12, 10, 10, 15, 16, 13, 13, 12, 13, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1011 13, 16, 12, 13, 12, 13, 10, 9, 14, 16, 12, 13, 12, 13, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1012 16, 16, 12, 12, 13, 13, 10, 7, 4, 10, 6, 9, 7, 10, 8, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1013 8, 12, 9, 11, 9, 11, 9, 9, 14, 16, 13, 13, 13, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1014 6, 11, 7, 10, 8, 11, 8, 9, 9, 12, 9, 11, 9, 12, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1015 14, 16, 12, 13, 13, 14, 11, 10, 10, 14, 9, 11, 11, 13, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1016 11, 14, 9, 11, 11, 13, 10, 9, 14, 16, 11, 12, 13, 14, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1017 6, 11, 8, 10, 7, 10, 8, 9, 9, 12, 9, 11, 9, 11, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1018 14, 16, 13, 13, 12, 13, 11, 10, 8, 12, 8, 10, 8, 11, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1019 9, 12, 9, 11, 9, 11, 9, 9, 14, 16, 12, 13, 12, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1020 11, 14, 10, 11, 11, 13, 9, 9, 11, 14, 10, 11, 11, 13, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1021 14, 16, 11, 12, 13, 14, 10, 8, 10, 14, 11, 12, 9, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1022 11, 14, 11, 13, 10, 12, 10, 10, 14, 16, 13, 14, 12, 13, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1023 11, 14, 11, 12, 10, 12, 10, 10, 11, 14, 11, 12, 10, 12, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1024 14, 16, 13, 13, 11, 12, 10, 9, 13, 16, 12, 13, 12, 13, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1025 13, 16, 11, 12, 11, 13, 10, 8, 15, 16, 12, 12, 12, 12, 9, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1026 8, 12, 8, 11, 9, 12, 9, 10, 10, 14, 10, 12, 11, 13, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1027 16, 16, 14, 14, 14, 14, 12, 11, 8, 13, 8, 11, 9, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1028 11, 14, 10, 12, 11, 13, 10, 10, 16, 16, 13, 14, 14, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1029 11, 14, 9, 12, 11, 13, 10, 10, 12, 15, 10, 12, 12, 14, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1030 15, 16, 12, 12, 14, 14, 11, 9, 9, 13, 9, 11, 9, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1031 11, 14, 10, 12, 10, 12, 10, 10, 15, 16, 14, 14, 13, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1032 9, 13, 9, 11, 10, 12, 10, 10, 10, 14, 10, 12, 10, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1033 15, 16, 13, 13, 13, 14, 11, 10, 11, 15, 10, 12, 11, 13, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1034 11, 15, 10, 12, 12, 13, 10, 9, 15, 16, 11, 12, 13, 14, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1035 11, 15, 11, 13, 10, 12, 10, 10, 12, 16, 12, 13, 11, 13, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1036 16, 16, 14, 14, 12, 13, 11, 9, 11, 15, 11, 13, 10, 13, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1037 12, 15, 12, 13, 10, 12, 10, 10, 14, 16, 13, 13, 12, 13, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1038 13, 16, 12, 13, 12, 13, 10, 9, 13, 16, 11, 12, 11, 13, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1039 14, 16, 11, 12, 12, 12, 9, 7, 10, 15, 10, 12, 11, 13, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1040 12, 16, 12, 13, 12, 13, 11, 10, 16, 16, 14, 14, 14, 15, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1041 10, 14, 10, 12, 10, 13, 10, 10, 12, 15, 11, 12, 11, 13, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1042 16, 16, 14, 13, 14, 14, 11, 9, 11, 14, 10, 11, 11, 12, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1043 12, 15, 10, 11, 11, 13, 9, 8, 16, 16, 12, 12, 13, 13, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1044 10, 15, 10, 12, 10, 13, 10, 10, 12, 15, 11, 12, 11, 13, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1045 16, 16, 14, 13, 14, 14, 11, 9, 10, 14, 10, 12, 10, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1046 12, 15, 11, 12, 11, 13, 10, 10, 16, 16, 13, 13, 13, 14, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1047 11, 14, 10, 11, 10, 12, 9, 8, 11, 14, 9, 11, 11, 12, 9, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1048 14, 16, 10, 11, 12, 13, 9, 7, 11, 15, 11, 12, 10, 12, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1049 13, 16, 11, 12, 11, 12, 10, 9, 16, 16, 13, 13, 12, 13, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1050 11, 15, 10, 12, 10, 12, 9, 8, 12, 15, 11, 12, 10, 12, 9, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1051 14, 16, 12, 12, 11, 12, 9, 7, 11, 14, 10, 11, 10, 12, 8, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1052 11, 14, 9, 10, 10, 11, 8, 6, 12, 15, 9, 9, 9, 10, 7, 4,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1053 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1054 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1055 0, 6, 3, 7, 3, 7, 6, 7, 5, 9, 6, 9, 7, 9, 8, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1056 16, 16, 16, 16, 16, 16, 16, 11, 3, 8, 5, 8, 6, 8, 7, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1057 7, 11, 7, 10, 8, 10, 8, 9, 16, 16, 16, 16, 16, 16, 14, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1058 8, 16, 7, 11, 10, 16, 9, 9, 11, 16, 9, 14, 16, 16, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1059 16, 16, 16, 16, 16, 16, 16, 10, 3, 8, 5, 8, 5, 8, 7, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1060 7, 11, 8, 10, 8, 10, 8, 9, 16, 16, 16, 16, 16, 16, 16, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1061 6, 10, 7, 9, 7, 10, 8, 8, 8, 11, 8, 10, 8, 11, 8, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1062 16, 16, 16, 16, 16, 16, 11, 10, 10, 16, 9, 13, 11, 16, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1063 11, 16, 9, 11, 16, 16, 10, 9, 16, 16, 11, 16, 16, 16, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1064 9, 16, 10, 11, 8, 11, 9, 9, 11, 16, 12, 16, 10, 16, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1065 16, 16, 16, 16, 16, 16, 16, 10, 10, 16, 11, 16, 10, 16, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1066 11, 16, 11, 16, 10, 16, 10, 9, 16, 16, 16, 16, 16, 16, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1067 16, 16, 16, 16, 16, 16, 11, 9, 16, 16, 16, 16, 16, 16, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1068 16, 16, 11, 16, 16, 16, 9, 7, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1069 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1070 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1071 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1072 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1073 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1074 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1075 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1076 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1077 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1078 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1079 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1080 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1081 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1082 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1083 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1084 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1085 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1086 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1087 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1088 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1089 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1090 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1091 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1092 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1093 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1094 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1095 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1096 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1097 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1098 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1099 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1100 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1101 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1102 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1103 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1104 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1105 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1106 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1107 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1108 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1109 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1110 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1111 2, 8, 5, 9, 6, 9, 8, 8, 8, 12, 9, 11, 9, 11, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1112 16, 16, 14, 16, 14, 16, 14, 12, 5, 10, 6, 9, 8, 10, 8, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1113 9, 12, 9, 11, 10, 12, 10, 10, 16, 16, 14, 15, 15, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1114 10, 13, 9, 12, 11, 12, 10, 10, 12, 15, 11, 12, 12, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1115 16, 16, 15, 14, 15, 16, 13, 12, 6, 10, 8, 10, 7, 10, 8, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1116 9, 13, 10, 11, 10, 12, 10, 10, 16, 16, 14, 16, 14, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1117 7, 11, 8, 11, 9, 11, 9, 9, 10, 13, 10, 11, 10, 12, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1118 16, 16, 14, 14, 14, 15, 12, 11, 11, 14, 11, 12, 11, 13, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1119 12, 15, 11, 13, 12, 13, 11, 10, 16, 16, 14, 16, 15, 15, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1120 10, 13, 11, 12, 10, 12, 10, 10, 12, 15, 12, 13, 11, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1121 16, 16, 15, 16, 14, 15, 13, 11, 11, 14, 11, 13, 11, 12, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1122 12, 16, 12, 13, 12, 13, 11, 10, 16, 16, 15, 16, 13, 15, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1123 13, 15, 12, 13, 13, 14, 11, 11, 14, 16, 13, 13, 13, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1124 16, 16, 15, 14, 15, 15, 12, 10, 3, 8, 6, 9, 7, 9, 8, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1125 8, 12, 9, 11, 9, 11, 9, 9, 16, 16, 15, 15, 15, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1126 6, 10, 7, 9, 8, 10, 8, 8, 9, 12, 9, 11, 10, 12, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1127 16, 16, 14, 14, 14, 15, 13, 11, 10, 13, 9, 11, 11, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1128 12, 14, 11, 12, 12, 13, 11, 10, 16, 16, 14, 14, 15, 15, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1129 6, 10, 8, 10, 7, 10, 8, 9, 10, 12, 10, 11, 10, 11, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1130 16, 16, 14, 15, 14, 15, 13, 11, 8, 11, 8, 10, 9, 11, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1131 9, 13, 9, 11, 10, 11, 9, 9, 16, 16, 13, 14, 14, 14, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1132 11, 14, 10, 12, 11, 12, 10, 10, 12, 14, 11, 12, 12, 13, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1133 16, 16, 13, 14, 15, 15, 12, 10, 10, 13, 11, 12, 10, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1134 12, 14, 12, 13, 11, 13, 11, 10, 16, 16, 15, 14, 14, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1135 11, 14, 11, 12, 10, 12, 10, 10, 12, 15, 12, 12, 11, 13, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1136 16, 16, 14, 15, 13, 14, 12, 10, 13, 15, 12, 13, 12, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1137 13, 16, 12, 13, 12, 13, 11, 10, 16, 16, 13, 14, 13, 15, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1138 6, 10, 8, 10, 8, 11, 9, 10, 11, 13, 11, 12, 11, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1139 16, 16, 16, 16, 16, 16, 13, 12, 8, 11, 9, 11, 9, 11, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1140 11, 14, 11, 12, 11, 12, 11, 10, 16, 16, 15, 15, 16, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1141 11, 14, 10, 12, 12, 13, 11, 10, 13, 16, 12, 13, 13, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1142 16, 16, 15, 16, 16, 16, 13, 12, 8, 12, 9, 11, 9, 11, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1143 11, 14, 11, 12, 11, 12, 11, 10, 16, 16, 16, 16, 16, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1144 9, 12, 10, 11, 10, 12, 10, 10, 11, 14, 11, 12, 11, 13, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1145 16, 16, 15, 14, 15, 15, 13, 11, 12, 14, 11, 13, 12, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1146 12, 15, 11, 12, 13, 13, 11, 10, 16, 16, 14, 15, 16, 15, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1147 11, 15, 12, 13, 11, 13, 11, 10, 13, 16, 13, 14, 12, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1148 16, 16, 16, 16, 15, 15, 13, 12, 12, 14, 12, 13, 11, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1149 13, 15, 12, 13, 11, 13, 11, 10, 16, 16, 15, 15, 13, 15, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1150 13, 16, 13, 13, 13, 13, 12, 11, 13, 16, 13, 13, 13, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1151 16, 16, 13, 15, 14, 14, 12, 9, 9, 13, 10, 12, 11, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1152 13, 16, 13, 14, 13, 14, 12, 11, 16, 16, 16, 16, 16, 16, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1153 10, 14, 11, 13, 11, 13, 11, 10, 13, 16, 13, 13, 13, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1154 16, 16, 16, 16, 16, 16, 14, 12, 11, 15, 11, 13, 12, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1155 14, 16, 12, 13, 13, 14, 12, 10, 16, 16, 15, 16, 16, 16, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1156 10, 14, 11, 12, 11, 13, 11, 10, 13, 16, 12, 13, 12, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1157 16, 16, 16, 16, 16, 16, 14, 12, 11, 14, 11, 12, 11, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1158 13, 15, 12, 13, 12, 13, 11, 10, 16, 16, 15, 15, 16, 16, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1159 12, 15, 12, 13, 12, 13, 11, 10, 13, 16, 12, 13, 13, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1160 16, 16, 14, 14, 16, 15, 13, 10, 12, 15, 12, 13, 12, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1161 14, 16, 13, 14, 13, 14, 12, 11, 16, 16, 16, 16, 15, 16, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1162 12, 16, 12, 13, 12, 13, 11, 10, 13, 16, 13, 13, 12, 14, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1163 16, 16, 15, 16, 14, 15, 13, 10, 12, 15, 12, 14, 12, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1164 13, 16, 12, 13, 12, 13, 11, 10, 16, 16, 13, 14, 13, 14, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1165 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1166 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1167 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1168 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1169 0, 11, 5, 11, 7, 13, 10, 12, 7, 13, 9, 13, 10, 14, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1170 16, 16, 15, 16, 16, 16, 15, 15, 4, 13, 6, 12, 10, 14, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1171 8, 14, 9, 13, 11, 15, 12, 13, 16, 16, 15, 16, 15, 16, 15, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1172 9, 16, 9, 13, 13, 16, 12, 13, 12, 16, 10, 14, 14, 16, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1173 16, 16, 14, 16, 16, 16, 14, 14, 5, 13, 8, 13, 8, 13, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1174 9, 14, 10, 13, 10, 14, 12, 13, 16, 16, 15, 16, 15, 16, 14, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1175 7, 14, 9, 13, 10, 14, 11, 13, 9, 15, 10, 13, 11, 14, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1176 16, 16, 14, 16, 15, 16, 14, 14, 11, 16, 11, 14, 13, 16, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1177 12, 16, 11, 14, 14, 16, 12, 13, 16, 16, 14, 15, 16, 16, 14, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1178 10, 16, 12, 15, 10, 15, 12, 14, 12, 16, 13, 16, 11, 15, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1179 16, 16, 16, 16, 14, 16, 14, 14, 11, 16, 12, 15, 11, 16, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1180 12, 16, 13, 15, 12, 16, 12, 13, 16, 16, 16, 16, 14, 16, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1181 14, 16, 13, 15, 14, 16, 13, 13, 14, 16, 14, 15, 14, 16, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1182 16, 16, 15, 16, 15, 16, 13, 13, 2, 12, 6, 11, 7, 13, 10, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1183 7, 13, 9, 12, 10, 14, 11, 12, 16, 16, 15, 16, 15, 16, 14, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1184 5, 13, 6, 12, 9, 13, 10, 12, 8, 14, 9, 13, 11, 14, 11, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1185 16, 16, 14, 16, 15, 16, 14, 14, 9, 16, 8, 13, 12, 16, 11, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1186 11, 16, 10, 13, 13, 16, 12, 13, 16, 16, 13, 15, 16, 16, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1187 5, 13, 8, 12, 7, 13, 10, 12, 8, 14, 10, 13, 10, 14, 11, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1188 16, 16, 14, 16, 15, 16, 14, 14, 7, 14, 8, 12, 9, 14, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1189 8, 14, 9, 13, 10, 14, 11, 12, 15, 16, 14, 15, 14, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1190 11, 16, 10, 13, 13, 16, 12, 13, 11, 16, 10, 13, 13, 16, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1191 16, 16, 13, 15, 15, 16, 13, 13, 9, 16, 12, 15, 9, 14, 11, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1192 11, 16, 13, 15, 11, 14, 12, 13, 16, 16, 15, 16, 14, 16, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1193 11, 16, 12, 14, 11, 15, 12, 13, 11, 16, 12, 14, 11, 15, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1194 16, 16, 15, 16, 14, 16, 13, 13, 13, 16, 13, 15, 13, 16, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1195 14, 16, 13, 15, 13, 16, 12, 12, 16, 16, 14, 15, 14, 16, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1196 4, 13, 7, 12, 8, 14, 11, 12, 9, 14, 10, 13, 11, 14, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1197 16, 16, 15, 16, 16, 16, 15, 15, 6, 14, 7, 12, 10, 14, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1198 9, 15, 10, 13, 11, 15, 12, 13, 16, 16, 15, 16, 16, 16, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1199 9, 16, 8, 13, 12, 16, 11, 13, 12, 16, 10, 14, 13, 16, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1200 16, 16, 14, 16, 16, 16, 14, 14, 6, 14, 8, 13, 8, 14, 11, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1201 9, 15, 10, 13, 11, 14, 12, 13, 16, 16, 15, 16, 16, 16, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1202 7, 15, 9, 13, 10, 14, 11, 13, 9, 15, 10, 13, 11, 14, 11, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1203 16, 16, 14, 16, 15, 16, 14, 14, 10, 16, 10, 13, 12, 16, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1204 11, 16, 10, 13, 13, 16, 12, 13, 16, 16, 13, 14, 15, 16, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1205 9, 16, 12, 14, 9, 14, 11, 13, 12, 16, 12, 15, 11, 15, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1206 16, 16, 16, 16, 15, 16, 14, 14, 10, 16, 12, 15, 11, 15, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1207 11, 16, 12, 14, 11, 15, 12, 13, 16, 16, 14, 16, 13, 16, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1208 13, 16, 13, 15, 13, 16, 12, 13, 13, 16, 12, 14, 13, 16, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1209 15, 16, 13, 14, 13, 16, 12, 12, 6, 14, 8, 13, 9, 14, 10, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1210 10, 15, 10, 12, 11, 14, 11, 12, 16, 16, 14, 14, 14, 16, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1211 7, 15, 8, 13, 9, 14, 10, 12, 10, 15, 10, 13, 11, 14, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1212 16, 16, 14, 14, 14, 16, 13, 12, 9, 16, 8, 12, 11, 14, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1213 11, 16, 10, 13, 11, 14, 10, 11, 16, 16, 13, 14, 14, 16, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1214 7, 14, 9, 13, 9, 14, 10, 12, 10, 16, 10, 13, 11, 14, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1215 16, 16, 14, 14, 14, 15, 13, 12, 7, 14, 9, 13, 9, 14, 10, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1216 9, 14, 10, 12, 10, 14, 11, 12, 15, 16, 13, 14, 14, 15, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1217 9, 15, 9, 12, 11, 14, 10, 11, 10, 15, 9, 12, 11, 14, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1218 14, 16, 11, 13, 13, 15, 11, 11, 9, 16, 10, 13, 9, 14, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1219 11, 16, 11, 13, 10, 14, 10, 11, 16, 16, 14, 15, 13, 15, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1220 9, 16, 10, 13, 9, 13, 10, 11, 10, 15, 10, 13, 10, 13, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1221 14, 16, 13, 14, 12, 14, 11, 11, 11, 16, 10, 13, 11, 13, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1222 11, 14, 10, 12, 10, 13, 9, 9, 13, 15, 10, 11, 11, 12, 9, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1223 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1224 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1225 0, 10, 5, 10, 6, 11, 8, 10, 7, 12, 8, 11, 9, 12, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1226 14, 16, 13, 13, 13, 14, 12, 11, 5, 12, 6, 10, 8, 12, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1227 8, 13, 8, 11, 9, 12, 9, 10, 14, 16, 12, 13, 13, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1228 9, 15, 8, 12, 11, 14, 10, 10, 11, 16, 9, 12, 12, 14, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1229 14, 16, 11, 12, 13, 14, 11, 10, 5, 12, 8, 11, 7, 11, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1230 8, 13, 9, 11, 9, 12, 9, 10, 14, 16, 12, 13, 13, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1231 7, 13, 8, 11, 9, 12, 9, 10, 9, 13, 9, 11, 9, 12, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1232 14, 16, 12, 13, 12, 13, 11, 10, 11, 15, 10, 12, 12, 14, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1233 12, 16, 10, 12, 12, 14, 10, 10, 14, 16, 11, 12, 13, 14, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1234 10, 15, 11, 13, 9, 13, 10, 10, 11, 15, 12, 13, 10, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1235 14, 16, 13, 14, 12, 13, 11, 10, 11, 16, 11, 13, 10, 13, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1236 11, 16, 11, 13, 10, 13, 10, 10, 14, 16, 13, 14, 12, 13, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1237 13, 16, 12, 13, 12, 14, 11, 10, 14, 16, 12, 13, 12, 14, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1238 16, 16, 12, 13, 13, 13, 10, 8, 3, 11, 6, 10, 7, 11, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1239 8, 12, 8, 11, 9, 12, 9, 10, 14, 16, 13, 13, 13, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1240 5, 12, 6, 10, 8, 12, 9, 10, 8, 13, 8, 11, 9, 12, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1241 14, 16, 12, 13, 13, 14, 11, 10, 9, 14, 8, 11, 11, 14, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1242 11, 15, 9, 11, 12, 14, 10, 10, 14, 16, 11, 12, 13, 14, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1243 6, 12, 8, 11, 7, 11, 9, 10, 8, 13, 9, 11, 9, 12, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1244 14, 16, 12, 13, 13, 13, 11, 10, 7, 13, 8, 11, 8, 12, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1245 9, 13, 9, 11, 9, 12, 9, 9, 14, 16, 12, 13, 12, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1246 10, 15, 9, 12, 11, 14, 10, 10, 11, 15, 9, 11, 11, 13, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1247 14, 16, 11, 12, 13, 14, 10, 9, 9, 15, 11, 13, 9, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1248 11, 15, 11, 13, 9, 12, 10, 10, 14, 16, 13, 14, 12, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1249 10, 15, 11, 13, 10, 13, 10, 10, 11, 15, 11, 13, 10, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1250 14, 16, 12, 13, 11, 12, 10, 9, 13, 16, 12, 13, 12, 14, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1251 13, 16, 11, 12, 12, 13, 10, 9, 14, 16, 11, 12, 12, 13, 9, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1252 7, 13, 8, 12, 9, 13, 10, 11, 10, 14, 10, 12, 11, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1253 16, 16, 13, 14, 14, 14, 12, 11, 8, 14, 8, 12, 9, 13, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1254 10, 14, 10, 12, 11, 13, 10, 10, 16, 16, 13, 13, 14, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1255 10, 15, 9, 12, 11, 14, 10, 10, 12, 16, 10, 12, 12, 14, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1256 16, 16, 12, 13, 14, 15, 11, 10, 8, 14, 9, 12, 9, 13, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1257 10, 15, 10, 12, 10, 13, 10, 11, 16, 16, 13, 14, 14, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1258 8, 14, 9, 12, 9, 13, 10, 10, 10, 14, 10, 12, 10, 13, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1259 15, 16, 13, 13, 13, 14, 11, 10, 10, 15, 10, 12, 12, 14, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1260 11, 16, 9, 12, 12, 14, 10, 10, 14, 16, 11, 12, 13, 14, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1261 11, 16, 11, 13, 10, 13, 10, 10, 12, 16, 12, 13, 10, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1262 15, 16, 14, 14, 12, 13, 11, 10, 11, 16, 11, 13, 10, 13, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1263 11, 16, 12, 13, 10, 12, 10, 10, 14, 16, 13, 14, 11, 13, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1264 13, 16, 12, 13, 12, 14, 10, 10, 12, 16, 11, 12, 12, 13, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1265 14, 16, 11, 12, 11, 12, 9, 8, 10, 16, 10, 13, 11, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1266 12, 16, 11, 13, 12, 14, 11, 11, 16, 16, 14, 13, 14, 14, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1267 10, 15, 10, 13, 10, 13, 10, 11, 12, 16, 11, 13, 11, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1268 16, 16, 14, 13, 14, 14, 12, 10, 11, 15, 9, 12, 11, 13, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1269 12, 16, 10, 12, 12, 13, 10, 9, 16, 16, 12, 12, 13, 14, 10, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1270 10, 16, 10, 13, 10, 14, 11, 11, 12, 16, 11, 13, 12, 14, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1271 16, 16, 14, 13, 14, 14, 12, 10, 9, 15, 9, 12, 10, 13, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1272 11, 16, 10, 12, 11, 13, 10, 10, 16, 16, 13, 13, 13, 14, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1273 10, 15, 9, 11, 11, 13, 9, 9, 11, 15, 9, 11, 11, 13, 9, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1274 14, 16, 10, 11, 13, 13, 10, 8, 11, 16, 11, 13, 10, 13, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1275 13, 16, 11, 13, 11, 13, 10, 9, 16, 16, 13, 13, 13, 13, 10, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1276 11, 16, 10, 12, 10, 13, 10, 9, 11, 16, 11, 12, 10, 12, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1277 15, 16, 12, 13, 11, 12, 10, 8, 11, 16, 10, 12, 11, 12, 9, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1278 11, 15, 9, 11, 10, 12, 9, 7, 13, 15, 9, 9, 10, 10, 7, 5,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1279 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1280 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1281 0, 7, 3, 8, 4, 9, 7, 8, 5, 10, 7, 10, 8, 11, 8, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1282 16, 16, 16, 16, 16, 16, 11, 10, 2, 10, 4, 9, 7, 10, 7, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1283 7, 16, 7, 10, 9, 16, 8, 9, 16, 16, 16, 16, 16, 16, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1284 8, 16, 7, 10, 10, 16, 9, 8, 10, 16, 9, 11, 16, 16, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1285 16, 16, 16, 16, 16, 16, 11, 9, 3, 10, 6, 9, 6, 11, 8, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1286 7, 16, 8, 10, 9, 16, 9, 9, 16, 16, 16, 16, 16, 16, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1287 5, 16, 7, 10, 8, 11, 8, 8, 8, 16, 8, 10, 9, 16, 8, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1288 16, 16, 11, 16, 16, 16, 10, 9, 9, 16, 9, 11, 11, 16, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1289 11, 16, 9, 11, 11, 16, 9, 8, 16, 16, 10, 16, 16, 16, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1290 8, 16, 10, 16, 8, 16, 10, 9, 12, 16, 11, 16, 10, 16, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1291 16, 16, 16, 16, 16, 16, 12, 10, 10, 16, 11, 16, 10, 16, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1292 11, 16, 11, 16, 10, 16, 10, 9, 16, 16, 16, 16, 16, 16, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1293 16, 16, 16, 16, 16, 16, 10, 9, 16, 16, 11, 16, 16, 16, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1294 16, 16, 10, 11, 11, 16, 9, 7, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1295 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1296 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1297 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1298 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1299 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1300 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1301 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1302 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1303 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1304 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1305 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1306 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1307 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1308 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1309 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1310 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1311 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1312 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1313 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1314 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1315 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1316 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1317 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1318 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1319 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1320 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1321 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1322 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1323 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1324 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1325 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1326 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1327 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1328 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1329 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1330 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1331 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1332 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1333 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1334 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1335 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1336 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1337 2, 9, 6, 9, 6, 10, 8, 9, 8, 12, 9, 11, 9, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1338 16, 16, 14, 14, 15, 15, 13, 12, 5, 11, 7, 10, 8, 11, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1339 9, 13, 9, 11, 10, 12, 10, 10, 15, 16, 14, 14, 14, 16, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1340 10, 14, 9, 11, 11, 13, 10, 10, 12, 15, 10, 12, 12, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1341 16, 16, 14, 15, 14, 15, 12, 11, 5, 11, 8, 10, 7, 11, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1342 9, 13, 9, 12, 9, 12, 10, 10, 15, 16, 13, 14, 13, 16, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1343 7, 12, 8, 11, 9, 11, 9, 10, 9, 13, 9, 11, 10, 12, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1344 16, 16, 13, 14, 13, 14, 11, 11, 10, 14, 10, 12, 11, 13, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1345 11, 16, 11, 12, 12, 13, 10, 10, 16, 16, 13, 14, 13, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1346 10, 14, 11, 13, 10, 13, 10, 11, 12, 16, 12, 13, 10, 12, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1347 16, 16, 14, 15, 13, 14, 12, 11, 11, 15, 11, 13, 11, 13, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1348 12, 15, 12, 13, 11, 13, 11, 10, 15, 16, 14, 15, 13, 15, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1349 12, 16, 12, 13, 12, 14, 11, 11, 13, 16, 12, 13, 12, 14, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1350 16, 16, 13, 14, 13, 14, 11, 10, 3, 10, 6, 9, 7, 10, 8, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1351 9, 12, 9, 11, 10, 12, 9, 10, 15, 16, 14, 14, 14, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1352 6, 11, 7, 10, 8, 10, 9, 9, 9, 13, 9, 11, 10, 12, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1353 15, 16, 13, 14, 14, 15, 12, 11, 10, 14, 9, 11, 11, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1354 12, 14, 10, 12, 11, 13, 10, 10, 15, 16, 13, 14, 14, 16, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1355 6, 11, 8, 10, 7, 11, 9, 9, 9, 13, 9, 11, 9, 12, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1356 15, 16, 14, 14, 13, 14, 12, 11, 7, 11, 8, 11, 8, 11, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1357 9, 12, 9, 11, 9, 12, 9, 9, 15, 16, 13, 13, 13, 14, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1358 10, 13, 10, 12, 11, 13, 10, 10, 11, 15, 10, 12, 11, 13, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1359 14, 16, 12, 13, 13, 14, 11, 10, 10, 14, 11, 12, 9, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1360 11, 15, 11, 13, 10, 13, 10, 10, 15, 16, 14, 14, 13, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1361 10, 14, 10, 12, 10, 12, 10, 10, 11, 15, 11, 12, 10, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1362 15, 16, 13, 14, 12, 14, 11, 10, 12, 16, 11, 13, 12, 14, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1363 12, 16, 12, 13, 11, 13, 10, 10, 15, 16, 12, 14, 12, 14, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1364 7, 12, 9, 11, 9, 12, 10, 10, 11, 14, 11, 12, 11, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1365 16, 16, 15, 16, 15, 16, 13, 12, 8, 12, 9, 11, 9, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1366 11, 14, 11, 12, 11, 13, 10, 10, 16, 16, 14, 15, 15, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1367 11, 14, 10, 12, 11, 13, 10, 10, 12, 16, 11, 13, 12, 14, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1368 16, 16, 14, 15, 14, 16, 12, 11, 8, 13, 9, 11, 9, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1369 11, 14, 11, 12, 11, 13, 10, 10, 16, 16, 15, 15, 14, 15, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1370 9, 13, 9, 12, 9, 12, 10, 10, 11, 14, 10, 12, 10, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1371 16, 16, 14, 15, 14, 14, 12, 11, 11, 15, 11, 12, 11, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1372 12, 16, 11, 12, 12, 13, 11, 10, 16, 16, 13, 15, 14, 15, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1373 11, 16, 11, 13, 10, 13, 11, 11, 12, 16, 12, 14, 11, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1374 16, 16, 14, 15, 14, 15, 13, 11, 11, 16, 11, 13, 11, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1375 12, 16, 12, 13, 10, 13, 11, 10, 16, 16, 14, 14, 12, 14, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1376 12, 16, 12, 14, 12, 14, 11, 11, 13, 16, 12, 14, 12, 14, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1377 15, 16, 12, 14, 12, 14, 11, 9, 9, 14, 11, 13, 11, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1378 13, 16, 12, 14, 13, 14, 12, 11, 16, 16, 16, 16, 16, 16, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1379 9, 14, 10, 12, 10, 13, 11, 11, 12, 16, 12, 13, 13, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1380 16, 16, 16, 16, 16, 14, 13, 12, 10, 15, 11, 13, 11, 14, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1381 13, 16, 12, 13, 12, 15, 11, 10, 16, 16, 14, 16, 15, 16, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1382 10, 14, 10, 13, 11, 14, 11, 11, 13, 16, 12, 13, 12, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1383 16, 16, 16, 16, 15, 16, 13, 12, 10, 14, 10, 12, 10, 13, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1384 12, 15, 12, 13, 12, 13, 11, 10, 16, 16, 14, 14, 15, 15, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1385 11, 16, 11, 13, 11, 14, 11, 10, 12, 16, 11, 13, 12, 14, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1386 16, 16, 13, 14, 14, 15, 12, 10, 11, 16, 12, 13, 11, 14, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1387 13, 16, 13, 14, 12, 14, 11, 11, 16, 16, 15, 16, 15, 15, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1388 11, 16, 12, 13, 11, 14, 11, 10, 13, 16, 12, 13, 11, 14, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1389 16, 16, 14, 15, 13, 14, 12, 10, 12, 16, 12, 14, 12, 14, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1390 12, 16, 11, 13, 11, 14, 10, 10, 14, 16, 11, 13, 12, 13, 10, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1391 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1392 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1393 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1394 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1395 0, 12, 6, 13, 7, 14, 11, 14, 8, 14, 10, 14, 11, 15, 13, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1396 16, 16, 16, 16, 16, 16, 16, 16, 5, 14, 7, 13, 10, 16, 12, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1397 9, 16, 10, 14, 12, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1398 10, 16, 9, 14, 14, 16, 13, 16, 12, 16, 11, 16, 16, 16, 14, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1399 16, 16, 16, 16, 16, 16, 16, 16, 5, 14, 9, 14, 8, 14, 12, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1400 9, 16, 11, 14, 11, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1401 8, 16, 10, 14, 11, 16, 12, 14, 10, 16, 11, 15, 12, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1402 16, 16, 16, 16, 16, 16, 16, 16, 12, 16, 12, 16, 14, 16, 14, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1403 13, 16, 12, 16, 15, 16, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1404 10, 16, 13, 16, 11, 16, 14, 16, 13, 16, 14, 16, 13, 16, 14, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1405 16, 16, 16, 16, 16, 16, 16, 16, 12, 16, 14, 16, 13, 16, 14, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1406 13, 16, 14, 16, 13, 16, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1407 16, 16, 16, 16, 16, 16, 14, 16, 16, 16, 15, 16, 16, 16, 14, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1408 16, 16, 16, 16, 16, 16, 16, 16, 1, 12, 6, 12, 8, 14, 11, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1409 8, 14, 10, 13, 11, 14, 13, 14, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1410 5, 14, 7, 13, 10, 14, 11, 14, 9, 16, 10, 14, 12, 16, 13, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1411 16, 16, 16, 16, 16, 16, 16, 16, 9, 16, 9, 14, 13, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1412 12, 16, 11, 15, 14, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1413 5, 14, 9, 13, 8, 14, 12, 14, 9, 16, 11, 14, 11, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1414 16, 16, 16, 16, 16, 16, 16, 16, 7, 15, 9, 14, 10, 16, 12, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1415 9, 16, 10, 14, 11, 16, 12, 14, 16, 16, 16, 16, 16, 16, 15, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1416 11, 16, 11, 15, 14, 16, 13, 15, 12, 16, 11, 15, 14, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1417 16, 16, 14, 16, 16, 16, 14, 16, 10, 16, 13, 16, 10, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1418 12, 16, 14, 16, 12, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1419 11, 16, 13, 16, 12, 16, 13, 16, 12, 16, 13, 16, 12, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1420 16, 16, 16, 16, 16, 16, 15, 16, 14, 16, 14, 16, 16, 16, 14, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1421 15, 16, 14, 16, 14, 16, 14, 16, 16, 16, 16, 16, 16, 16, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1422 4, 14, 8, 13, 9, 16, 12, 14, 9, 16, 11, 14, 11, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1423 16, 16, 16, 16, 16, 16, 16, 16, 6, 15, 8, 13, 10, 16, 12, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1424 10, 16, 11, 14, 12, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1425 9, 16, 9, 14, 13, 16, 13, 15, 12, 16, 11, 16, 14, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1426 16, 16, 16, 16, 16, 16, 16, 16, 6, 16, 9, 14, 9, 16, 12, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1427 10, 16, 11, 15, 12, 16, 13, 15, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1428 8, 16, 10, 14, 11, 16, 12, 14, 10, 16, 11, 14, 12, 16, 13, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1429 16, 16, 16, 16, 16, 16, 16, 16, 11, 16, 11, 15, 14, 16, 13, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1430 12, 16, 11, 15, 14, 16, 13, 14, 16, 16, 14, 16, 16, 16, 14, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1431 10, 16, 13, 16, 10, 16, 13, 15, 13, 16, 14, 16, 12, 16, 14, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1432 16, 16, 16, 16, 16, 16, 16, 16, 11, 16, 13, 16, 12, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1433 12, 16, 13, 16, 11, 16, 13, 16, 16, 16, 16, 16, 15, 16, 15, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1434 14, 16, 14, 16, 15, 16, 14, 16, 14, 16, 14, 16, 14, 16, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1435 16, 16, 14, 16, 15, 16, 14, 14, 6, 16, 9, 14, 10, 16, 12, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1436 10, 16, 11, 13, 12, 16, 13, 14, 16, 16, 16, 16, 16, 16, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1437 7, 16, 9, 14, 10, 16, 12, 13, 11, 16, 11, 14, 12, 16, 12, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1438 16, 16, 16, 16, 16, 16, 14, 14, 9, 16, 9, 14, 12, 16, 11, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1439 12, 16, 11, 14, 12, 16, 12, 13, 16, 16, 14, 16, 16, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1440 7, 16, 10, 14, 10, 16, 12, 14, 11, 16, 11, 14, 11, 16, 12, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1441 16, 16, 16, 16, 16, 16, 14, 14, 8, 16, 10, 14, 10, 16, 11, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1442 10, 16, 11, 13, 11, 16, 12, 13, 16, 16, 14, 16, 16, 16, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1443 10, 16, 9, 13, 12, 16, 11, 13, 11, 16, 10, 13, 12, 16, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1444 16, 16, 13, 15, 15, 16, 13, 13, 9, 16, 11, 14, 9, 16, 11, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1445 12, 16, 12, 16, 12, 16, 12, 13, 16, 16, 16, 16, 15, 16, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1446 10, 16, 11, 14, 10, 16, 11, 13, 11, 16, 12, 14, 10, 15, 11, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1447 16, 16, 15, 16, 13, 16, 13, 13, 12, 16, 11, 13, 12, 16, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1448 12, 16, 11, 13, 11, 14, 11, 11, 13, 16, 12, 13, 12, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1449 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1450 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1451 0, 10, 5, 10, 6, 11, 8, 10, 7, 12, 8, 11, 8, 12, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1452 14, 16, 13, 13, 13, 14, 12, 11, 4, 12, 6, 10, 8, 12, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1453 8, 13, 8, 11, 9, 12, 9, 10, 14, 16, 12, 13, 13, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1454 9, 15, 8, 12, 12, 14, 10, 11, 11, 16, 9, 12, 12, 14, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1455 14, 16, 11, 13, 13, 15, 11, 11, 4, 12, 8, 11, 6, 11, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1456 8, 13, 9, 11, 8, 12, 9, 10, 14, 16, 12, 13, 13, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1457 7, 13, 8, 11, 9, 12, 9, 10, 8, 13, 9, 11, 9, 12, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1458 14, 16, 12, 13, 12, 13, 11, 10, 11, 16, 10, 12, 12, 14, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1459 11, 16, 10, 12, 12, 14, 10, 10, 15, 16, 11, 13, 13, 14, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1460 10, 16, 11, 13, 9, 13, 10, 11, 11, 15, 12, 13, 10, 12, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1461 15, 16, 13, 14, 12, 13, 11, 11, 11, 16, 11, 13, 10, 13, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1462 12, 16, 11, 13, 10, 13, 10, 10, 15, 16, 13, 14, 12, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1463 13, 16, 12, 13, 13, 14, 11, 11, 14, 16, 12, 13, 12, 14, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1464 16, 16, 13, 13, 13, 14, 11, 9, 3, 11, 6, 10, 6, 11, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1465 8, 12, 8, 11, 9, 12, 9, 10, 14, 16, 13, 13, 13, 13, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1466 5, 12, 6, 10, 8, 12, 9, 10, 8, 13, 8, 11, 9, 12, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1467 14, 16, 12, 13, 13, 14, 11, 11, 9, 15, 8, 11, 11, 14, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1468 11, 15, 9, 11, 12, 14, 10, 10, 14, 16, 11, 12, 13, 14, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1469 5, 12, 8, 11, 7, 11, 9, 10, 8, 13, 9, 11, 9, 12, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1470 14, 16, 12, 13, 13, 13, 11, 11, 7, 13, 8, 11, 8, 12, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1471 8, 13, 8, 11, 9, 12, 9, 9, 13, 16, 11, 13, 12, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1472 10, 15, 9, 12, 11, 14, 10, 10, 11, 15, 9, 11, 11, 13, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1473 14, 16, 11, 12, 13, 14, 10, 10, 9, 16, 11, 13, 9, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1474 11, 16, 11, 13, 9, 12, 10, 10, 15, 16, 13, 14, 12, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1475 11, 16, 11, 13, 10, 13, 10, 10, 11, 15, 11, 13, 9, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1476 14, 16, 12, 13, 11, 13, 10, 10, 13, 16, 12, 13, 12, 14, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1477 13, 16, 11, 13, 12, 13, 10, 10, 14, 16, 11, 12, 12, 13, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1478 7, 14, 8, 12, 9, 13, 10, 11, 10, 14, 10, 12, 11, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1479 16, 16, 14, 14, 14, 14, 12, 12, 7, 14, 8, 12, 9, 13, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1480 10, 14, 10, 12, 11, 13, 10, 11, 16, 16, 13, 13, 14, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1481 10, 15, 9, 12, 12, 14, 10, 10, 12, 16, 9, 12, 12, 14, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1482 16, 16, 12, 13, 14, 15, 12, 11, 8, 14, 9, 12, 9, 13, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1483 10, 15, 10, 12, 10, 13, 10, 11, 16, 16, 14, 14, 14, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1484 8, 14, 9, 12, 9, 13, 10, 11, 10, 14, 10, 12, 10, 13, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1485 15, 16, 13, 13, 13, 14, 12, 11, 10, 15, 10, 12, 12, 14, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1486 11, 16, 9, 12, 12, 14, 10, 10, 14, 16, 11, 12, 13, 14, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1487 11, 16, 11, 14, 9, 13, 10, 11, 12, 16, 12, 14, 10, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1488 16, 16, 14, 15, 13, 14, 12, 11, 11, 16, 12, 14, 10, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1489 11, 16, 11, 13, 10, 13, 10, 10, 15, 16, 13, 14, 12, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1490 13, 16, 12, 14, 13, 14, 11, 10, 12, 16, 11, 13, 12, 13, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1491 14, 16, 11, 12, 11, 13, 10, 9, 10, 16, 10, 13, 11, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1492 12, 16, 11, 13, 12, 14, 11, 11, 16, 16, 14, 13, 14, 15, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1493 10, 16, 10, 13, 10, 14, 11, 11, 12, 16, 11, 13, 11, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1494 16, 16, 14, 13, 14, 14, 12, 11, 11, 15, 9, 12, 11, 14, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1495 13, 16, 10, 12, 12, 14, 10, 10, 16, 16, 13, 13, 14, 14, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1496 10, 16, 10, 13, 11, 14, 11, 11, 12, 16, 11, 13, 12, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1497 16, 16, 14, 14, 14, 14, 12, 11, 9, 16, 10, 13, 10, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1498 11, 15, 11, 12, 11, 13, 11, 11, 16, 16, 13, 13, 14, 14, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1499 10, 15, 9, 12, 11, 14, 10, 10, 11, 16, 9, 11, 11, 13, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1500 15, 16, 11, 12, 13, 14, 10, 9, 11, 16, 11, 13, 10, 13, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1501 13, 16, 12, 13, 11, 13, 10, 10, 16, 16, 14, 14, 13, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1502 11, 16, 11, 13, 10, 13, 10, 10, 12, 16, 11, 13, 10, 13, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1503 15, 16, 13, 13, 12, 13, 11, 9, 11, 16, 11, 12, 11, 13, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1504 11, 15, 10, 11, 11, 12, 9, 8, 13, 15, 10, 10, 10, 11, 8, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1505 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1506 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1507 0, 9, 3, 8, 5, 9, 7, 8, 5, 11, 6, 9, 8, 11, 8, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1508 16, 16, 16, 16, 16, 16, 11, 10, 2, 10, 4, 9, 7, 10, 7, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1509 7, 16, 7, 10, 9, 11, 8, 9, 16, 16, 11, 16, 16, 16, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1510 7, 16, 7, 10, 10, 16, 8, 9, 10, 16, 8, 10, 11, 16, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1511 16, 16, 16, 16, 16, 16, 11, 10, 3, 11, 6, 9, 6, 11, 8, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1512 7, 16, 8, 10, 8, 11, 8, 9, 16, 16, 15, 16, 16, 16, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1513 5, 11, 7, 9, 8, 11, 8, 8, 7, 16, 7, 10, 8, 11, 8, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1514 16, 16, 11, 16, 16, 16, 10, 9, 9, 16, 8, 11, 11, 16, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1515 10, 16, 8, 11, 11, 16, 9, 9, 16, 16, 10, 16, 16, 16, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1516 8, 16, 10, 11, 8, 16, 9, 9, 11, 16, 11, 16, 10, 16, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1517 16, 16, 16, 16, 16, 16, 11, 10, 9, 16, 10, 16, 10, 16, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1518 10, 16, 10, 16, 9, 16, 9, 9, 16, 16, 16, 16, 15, 16, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1519 16, 16, 11, 16, 16, 16, 10, 10, 13, 16, 11, 16, 11, 16, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1520 16, 16, 10, 11, 11, 16, 9, 8, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1521 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1522 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1523 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1524 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1525 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1526 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1527 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1528 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1529 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1530 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1531 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1532 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1533 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1534 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1535 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1536 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1537 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1538 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1539 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1540 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1541 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1542 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1543 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1544 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1545 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1546 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1547 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1548 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1549 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1550 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1551 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1552 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1553 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1554 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1555 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1556 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1557 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1558 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1559 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1560 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1561 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1562 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1563 1, 10, 6, 10, 7, 11, 9, 10, 8, 12, 9, 12, 9, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1564 16, 16, 14, 16, 14, 15, 13, 12, 5, 12, 7, 10, 9, 11, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1565 9, 13, 9, 12, 10, 13, 10, 10, 16, 16, 14, 15, 14, 14, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1566 10, 15, 10, 12, 12, 14, 11, 11, 12, 16, 11, 13, 12, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1567 16, 16, 14, 16, 15, 16, 13, 12, 6, 12, 8, 11, 8, 11, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1568 9, 13, 10, 12, 10, 12, 10, 10, 15, 16, 13, 15, 13, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1569 7, 13, 9, 11, 9, 12, 10, 10, 9, 14, 10, 12, 10, 13, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1570 15, 16, 13, 15, 13, 14, 12, 11, 11, 15, 11, 13, 12, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1571 12, 16, 11, 13, 12, 14, 11, 11, 16, 16, 13, 15, 14, 16, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1572 10, 16, 12, 14, 10, 13, 11, 11, 12, 16, 12, 14, 11, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1573 16, 16, 15, 16, 14, 16, 13, 12, 11, 16, 12, 14, 11, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1574 12, 16, 12, 14, 11, 14, 11, 11, 16, 16, 14, 15, 13, 15, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1575 13, 16, 13, 15, 13, 15, 12, 12, 13, 16, 12, 15, 12, 15, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1576 16, 16, 13, 16, 13, 15, 12, 11, 4, 11, 7, 10, 7, 11, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1577 9, 13, 9, 12, 10, 12, 10, 10, 15, 16, 14, 15, 14, 15, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1578 6, 12, 7, 11, 9, 11, 9, 10, 9, 13, 9, 12, 10, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1579 15, 16, 14, 15, 14, 15, 12, 12, 10, 15, 9, 12, 12, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1580 12, 15, 11, 13, 12, 14, 11, 11, 16, 16, 13, 15, 14, 16, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1581 6, 12, 8, 11, 8, 11, 9, 10, 9, 14, 10, 12, 10, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1582 14, 16, 13, 14, 13, 14, 12, 12, 8, 13, 9, 11, 9, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1583 9, 13, 9, 12, 9, 12, 9, 10, 14, 16, 13, 14, 13, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1584 11, 15, 11, 13, 11, 14, 11, 11, 12, 16, 10, 13, 12, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1585 15, 16, 12, 15, 13, 16, 12, 11, 10, 15, 11, 13, 10, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1586 12, 16, 12, 14, 11, 13, 11, 11, 16, 16, 14, 15, 13, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1587 11, 16, 11, 14, 11, 13, 11, 11, 12, 16, 12, 14, 10, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1588 15, 16, 13, 16, 12, 14, 12, 11, 12, 16, 12, 14, 12, 15, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1589 13, 16, 12, 14, 12, 14, 11, 11, 15, 16, 13, 15, 13, 15, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1590 7, 13, 9, 12, 10, 13, 11, 11, 11, 15, 12, 13, 12, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1591 16, 16, 15, 16, 16, 16, 14, 13, 8, 13, 9, 12, 10, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1592 12, 15, 11, 13, 12, 13, 11, 11, 16, 16, 14, 15, 15, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1593 11, 16, 11, 13, 12, 14, 11, 11, 13, 16, 12, 14, 13, 15, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1594 16, 16, 14, 16, 15, 16, 13, 12, 9, 15, 10, 13, 10, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1595 12, 15, 11, 13, 11, 13, 11, 11, 16, 16, 14, 16, 16, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1596 9, 14, 10, 13, 10, 13, 11, 11, 11, 14, 11, 13, 11, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1597 16, 16, 14, 16, 14, 16, 12, 12, 11, 16, 11, 14, 12, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1598 12, 16, 11, 13, 13, 14, 11, 11, 16, 16, 13, 15, 14, 16, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1599 12, 16, 12, 14, 11, 14, 11, 11, 13, 16, 13, 14, 12, 15, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1600 16, 16, 16, 16, 14, 16, 13, 12, 12, 16, 12, 14, 11, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1601 12, 16, 12, 15, 11, 14, 11, 11, 16, 16, 14, 16, 13, 15, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1602 13, 16, 13, 16, 13, 16, 12, 12, 13, 16, 12, 15, 12, 16, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1603 14, 16, 12, 15, 12, 15, 11, 10, 9, 16, 11, 14, 12, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1604 13, 16, 13, 15, 14, 16, 12, 12, 16, 16, 16, 16, 16, 16, 14, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1605 10, 16, 11, 14, 12, 14, 12, 12, 13, 16, 13, 14, 13, 16, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1606 16, 16, 15, 16, 16, 16, 13, 12, 11, 16, 11, 14, 12, 15, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1607 13, 16, 12, 14, 13, 16, 12, 11, 16, 16, 14, 16, 16, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1608 11, 16, 11, 14, 12, 14, 12, 12, 13, 16, 12, 15, 13, 16, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1609 16, 16, 16, 16, 16, 16, 14, 13, 10, 16, 11, 14, 11, 15, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1610 13, 16, 12, 14, 12, 14, 12, 11, 16, 16, 14, 16, 16, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1611 11, 16, 11, 15, 12, 15, 12, 11, 13, 16, 11, 14, 13, 15, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1612 16, 16, 13, 16, 14, 16, 12, 11, 12, 16, 12, 15, 11, 15, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1613 14, 16, 13, 15, 12, 16, 12, 11, 16, 16, 15, 16, 14, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1614 11, 16, 12, 15, 11, 15, 11, 11, 13, 16, 13, 16, 11, 15, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1615 16, 16, 14, 16, 13, 15, 12, 11, 12, 16, 12, 15, 12, 16, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1616 12, 16, 11, 15, 12, 14, 11, 11, 13, 16, 12, 13, 11, 13, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1617 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1618 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1619 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1620 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1621 0, 13, 6, 13, 8, 14, 12, 16, 8, 16, 11, 16, 12, 16, 14, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1622 16, 16, 16, 16, 16, 16, 16, 16, 4, 16, 7, 14, 11, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1623 9, 16, 11, 16, 12, 16, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1624 10, 16, 10, 16, 16, 16, 16, 16, 13, 16, 12, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1625 16, 16, 16, 16, 16, 16, 16, 16, 5, 16, 10, 16, 8, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1626 10, 16, 12, 16, 12, 16, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1627 8, 16, 10, 16, 11, 16, 13, 16, 10, 16, 12, 16, 12, 16, 14, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1628 16, 16, 16, 16, 16, 16, 16, 16, 12, 16, 12, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1629 14, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1630 11, 16, 16, 16, 11, 16, 16, 16, 13, 16, 16, 16, 13, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1631 16, 16, 16, 16, 16, 16, 16, 16, 13, 16, 16, 16, 13, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1632 14, 16, 16, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1633 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1634 16, 16, 16, 16, 16, 16, 16, 16, 1, 13, 7, 13, 8, 16, 12, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1635 8, 16, 10, 16, 11, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1636 4, 16, 7, 14, 10, 16, 12, 16, 9, 16, 10, 16, 12, 16, 14, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1637 16, 16, 16, 16, 16, 16, 16, 16, 10, 16, 9, 16, 14, 16, 14, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1638 13, 16, 11, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1639 5, 16, 9, 16, 8, 16, 12, 16, 9, 16, 11, 16, 11, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1640 16, 16, 16, 16, 16, 16, 16, 16, 7, 16, 10, 16, 11, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1641 9, 16, 11, 16, 11, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1642 12, 16, 12, 16, 16, 16, 14, 16, 13, 16, 12, 16, 16, 16, 14, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1643 16, 16, 16, 16, 16, 16, 16, 16, 10, 16, 13, 16, 11, 16, 14, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1644 13, 16, 16, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1645 12, 16, 14, 16, 13, 16, 14, 16, 13, 16, 14, 16, 13, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1646 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1647 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1648 4, 16, 8, 16, 9, 16, 13, 16, 10, 16, 11, 16, 12, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1649 16, 16, 16, 16, 16, 16, 16, 16, 6, 16, 8, 16, 11, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1650 10, 16, 11, 16, 13, 16, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1651 9, 16, 9, 16, 13, 16, 13, 16, 13, 16, 12, 16, 16, 16, 14, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1652 16, 16, 16, 16, 16, 16, 16, 16, 6, 16, 10, 16, 10, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1653 10, 16, 12, 16, 12, 16, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1654 8, 16, 10, 16, 11, 16, 13, 16, 10, 16, 11, 16, 12, 16, 14, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1655 16, 16, 16, 16, 16, 16, 16, 16, 11, 16, 11, 16, 16, 16, 14, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1656 12, 16, 11, 16, 16, 16, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1657 10, 16, 13, 16, 10, 16, 13, 16, 13, 16, 16, 16, 13, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1658 16, 16, 16, 16, 16, 16, 16, 16, 12, 16, 13, 16, 12, 16, 14, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1659 12, 16, 15, 16, 12, 16, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1660 16, 16, 16, 16, 16, 16, 16, 16, 14, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1661 16, 16, 16, 16, 16, 16, 16, 16, 6, 16, 10, 16, 10, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1662 11, 16, 11, 16, 12, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1663 8, 16, 9, 16, 11, 16, 12, 16, 11, 16, 11, 16, 12, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1664 16, 16, 16, 16, 16, 16, 16, 16, 9, 16, 9, 16, 12, 16, 12, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1665 13, 16, 11, 16, 13, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1666 8, 16, 10, 16, 10, 16, 12, 16, 11, 16, 12, 16, 12, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1667 16, 16, 16, 16, 16, 16, 16, 16, 8, 16, 10, 16, 11, 16, 12, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1668 10, 16, 11, 16, 12, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1669 10, 16, 10, 14, 12, 16, 12, 16, 11, 16, 10, 14, 13, 16, 12, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1670 16, 16, 14, 16, 16, 16, 14, 16, 9, 16, 12, 16, 10, 16, 12, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1671 13, 16, 13, 16, 12, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1672 10, 16, 12, 16, 11, 16, 12, 16, 11, 16, 12, 16, 11, 16, 12, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1673 16, 16, 16, 16, 16, 16, 16, 16, 13, 16, 12, 16, 13, 16, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1674 12, 16, 12, 16, 12, 16, 12, 13, 16, 16, 13, 14, 13, 16, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1675 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1676 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1677 0, 10, 5, 10, 5, 10, 8, 10, 6, 11, 8, 11, 8, 11, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1678 14, 16, 13, 14, 13, 14, 12, 12, 4, 12, 5, 10, 8, 12, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1679 7, 12, 8, 11, 9, 12, 9, 10, 14, 16, 12, 13, 13, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1680 9, 16, 8, 12, 12, 14, 10, 11, 11, 16, 9, 12, 12, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1681 14, 16, 12, 13, 14, 15, 12, 12, 4, 12, 7, 11, 6, 11, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1682 8, 12, 9, 11, 8, 11, 9, 10, 14, 16, 12, 14, 13, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1683 7, 13, 8, 11, 8, 12, 9, 10, 8, 13, 8, 11, 9, 12, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1684 14, 16, 12, 13, 12, 13, 11, 11, 11, 16, 10, 12, 12, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1685 12, 16, 10, 12, 12, 14, 11, 11, 16, 16, 12, 13, 14, 15, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1686 10, 16, 11, 14, 9, 13, 10, 11, 11, 16, 12, 14, 10, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1687 15, 16, 13, 14, 13, 14, 12, 12, 11, 16, 12, 14, 10, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1688 12, 16, 12, 14, 11, 13, 11, 11, 15, 16, 13, 14, 13, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1689 14, 16, 13, 14, 13, 15, 12, 12, 14, 16, 12, 14, 13, 15, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1690 16, 16, 13, 14, 14, 15, 12, 11, 3, 11, 5, 10, 6, 11, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1691 7, 12, 8, 11, 9, 11, 9, 10, 14, 16, 13, 13, 13, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1692 5, 12, 6, 10, 8, 12, 9, 10, 8, 13, 8, 11, 9, 12, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1693 14, 16, 12, 13, 13, 14, 12, 12, 9, 16, 8, 11, 11, 14, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1694 11, 16, 9, 12, 12, 14, 10, 11, 15, 16, 12, 13, 14, 15, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1695 5, 12, 7, 11, 6, 11, 9, 10, 8, 13, 9, 11, 8, 11, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1696 14, 16, 12, 14, 13, 13, 12, 12, 7, 13, 8, 11, 8, 12, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1697 8, 12, 8, 11, 9, 12, 9, 10, 13, 16, 12, 13, 12, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1698 10, 16, 9, 12, 12, 14, 10, 11, 11, 15, 9, 12, 12, 14, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1699 14, 16, 11, 13, 13, 14, 11, 11, 9, 16, 11, 14, 8, 13, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1700 11, 16, 12, 13, 10, 13, 10, 11, 16, 16, 13, 15, 13, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1701 11, 16, 11, 14, 10, 13, 10, 11, 11, 16, 11, 13, 10, 13, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1702 14, 16, 13, 14, 12, 13, 11, 11, 14, 16, 12, 14, 13, 15, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1703 13, 16, 12, 13, 12, 14, 11, 11, 14, 16, 12, 13, 12, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1704 6, 14, 8, 12, 9, 13, 10, 11, 10, 14, 10, 12, 11, 13, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1705 16, 16, 14, 14, 14, 14, 13, 12, 7, 14, 8, 12, 9, 13, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1706 10, 14, 10, 12, 11, 13, 11, 11, 16, 16, 13, 14, 14, 15, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1707 10, 16, 8, 12, 12, 14, 10, 11, 12, 16, 10, 12, 13, 15, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1708 16, 16, 13, 14, 15, 16, 12, 12, 8, 15, 9, 13, 9, 13, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1709 10, 15, 10, 13, 10, 13, 11, 11, 16, 16, 14, 14, 14, 14, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1710 8, 15, 9, 12, 10, 13, 10, 11, 10, 14, 10, 12, 10, 13, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1711 16, 16, 13, 14, 13, 14, 12, 12, 10, 16, 10, 13, 12, 15, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1712 11, 16, 9, 12, 12, 14, 11, 11, 14, 16, 11, 13, 14, 16, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1713 10, 16, 12, 14, 9, 13, 11, 11, 12, 16, 12, 14, 11, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1714 16, 16, 15, 16, 14, 14, 13, 12, 11, 16, 12, 14, 11, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1715 11, 16, 12, 14, 10, 13, 11, 11, 15, 16, 13, 15, 12, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1716 14, 16, 13, 14, 13, 16, 12, 12, 12, 16, 12, 13, 12, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1717 14, 16, 11, 12, 12, 13, 10, 10, 9, 16, 10, 14, 11, 15, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1718 12, 16, 11, 13, 12, 15, 12, 12, 16, 16, 14, 13, 15, 15, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1719 10, 16, 10, 14, 11, 15, 11, 12, 12, 16, 11, 13, 12, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1720 16, 16, 14, 13, 15, 14, 13, 12, 11, 16, 9, 12, 12, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1721 13, 16, 11, 13, 13, 15, 11, 11, 16, 16, 14, 14, 16, 16, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1722 10, 16, 10, 14, 11, 14, 11, 12, 12, 16, 11, 13, 12, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1723 16, 16, 14, 14, 15, 15, 13, 12, 10, 16, 10, 13, 11, 14, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1724 11, 16, 11, 13, 11, 14, 11, 12, 16, 16, 14, 14, 14, 14, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1725 11, 16, 10, 12, 12, 15, 11, 11, 12, 16, 9, 12, 12, 14, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1726 16, 16, 12, 13, 14, 15, 11, 11, 11, 16, 12, 14, 10, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1727 13, 16, 12, 14, 12, 14, 11, 11, 16, 16, 15, 15, 14, 15, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1728 11, 16, 12, 14, 11, 14, 11, 11, 12, 16, 12, 14, 11, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1729 16, 16, 14, 14, 13, 14, 12, 11, 12, 16, 11, 13, 12, 14, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1730 12, 15, 11, 12, 12, 13, 10, 10, 14, 15, 11, 11, 12, 12, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1731 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1732 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1733 0, 8, 3, 8, 5, 9, 7, 8, 5, 10, 6, 10, 8, 11, 8, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1734 16, 16, 15, 16, 16, 16, 11, 11, 2, 10, 4, 9, 7, 10, 7, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1735 7, 16, 7, 10, 9, 11, 8, 9, 16, 16, 15, 16, 16, 16, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1736 7, 16, 6, 11, 10, 16, 9, 10, 10, 16, 9, 11, 11, 16, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1737 16, 16, 16, 16, 16, 16, 16, 11, 3, 10, 6, 9, 5, 10, 7, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1738 7, 16, 8, 10, 8, 11, 8, 9, 16, 16, 16, 16, 16, 16, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1739 5, 11, 7, 10, 8, 11, 8, 9, 7, 14, 7, 10, 8, 11, 8, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1740 16, 16, 11, 16, 16, 16, 10, 11, 9, 16, 9, 11, 11, 16, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1741 10, 16, 8, 11, 11, 16, 9, 10, 16, 16, 11, 16, 16, 16, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1742 8, 16, 9, 16, 7, 16, 9, 10, 11, 16, 11, 16, 10, 16, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1743 16, 16, 16, 16, 16, 16, 16, 11, 9, 16, 10, 16, 9, 16, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1744 10, 16, 10, 16, 9, 16, 9, 10, 16, 16, 16, 16, 11, 16, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1745 16, 16, 16, 16, 16, 16, 10, 10, 11, 16, 11, 16, 11, 16, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1746 16, 16, 11, 16, 11, 16, 10, 9, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1747 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1748 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1749 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1750 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1751 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1752 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1753 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1754 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1755 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1756 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1757 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1758 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1759 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1760 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1761 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1762 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1763 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1764 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1765 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1766 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1767 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1768 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1769 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1770 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1771 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1772 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1773 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1774 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1775 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1776 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1777 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1778 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1779 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1780 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1781 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1782 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1783 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1784 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1785 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1786 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1787 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1788 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1789 1, 10, 6, 10, 7, 11, 9, 10, 8, 12, 9, 12, 9, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1790 15, 16, 14, 15, 14, 16, 13, 12, 5, 12, 7, 11, 8, 11, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1791 9, 13, 9, 12, 10, 12, 10, 10, 16, 16, 14, 15, 13, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1792 10, 15, 10, 13, 12, 14, 11, 11, 12, 16, 11, 13, 12, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1793 16, 16, 14, 16, 14, 16, 13, 12, 5, 12, 8, 11, 7, 11, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1794 9, 13, 10, 12, 9, 12, 10, 10, 14, 16, 14, 15, 13, 14, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1795 7, 13, 9, 12, 9, 12, 10, 10, 9, 13, 9, 12, 9, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1796 14, 16, 13, 14, 13, 15, 12, 12, 11, 16, 11, 13, 12, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1797 12, 16, 11, 14, 12, 14, 11, 11, 16, 16, 14, 16, 14, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1798 10, 16, 11, 14, 10, 13, 11, 11, 12, 16, 12, 14, 11, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1799 15, 16, 15, 16, 14, 16, 13, 12, 11, 16, 12, 14, 11, 14, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1800 12, 16, 12, 14, 11, 14, 11, 11, 15, 16, 14, 16, 13, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1801 13, 16, 13, 16, 13, 16, 12, 12, 13, 16, 13, 16, 13, 16, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1802 16, 16, 14, 15, 14, 16, 13, 12, 4, 11, 7, 10, 7, 11, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1803 9, 13, 9, 11, 9, 12, 10, 10, 15, 16, 14, 15, 14, 15, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1804 6, 12, 7, 11, 8, 11, 9, 10, 9, 13, 9, 12, 10, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1805 15, 16, 13, 14, 14, 15, 12, 12, 10, 14, 10, 12, 12, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1806 12, 16, 11, 13, 12, 14, 11, 11, 16, 16, 14, 15, 15, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1807 6, 12, 8, 11, 8, 11, 9, 10, 9, 13, 10, 12, 9, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1808 16, 16, 14, 15, 13, 14, 12, 12, 8, 13, 9, 11, 9, 12, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1809 9, 13, 9, 12, 9, 12, 9, 10, 14, 16, 13, 14, 13, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1810 11, 15, 11, 13, 12, 14, 11, 11, 11, 16, 10, 13, 12, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1811 15, 16, 13, 15, 14, 16, 12, 11, 10, 16, 12, 13, 10, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1812 11, 16, 12, 14, 10, 13, 11, 11, 16, 16, 14, 16, 13, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1813 11, 16, 12, 14, 10, 14, 11, 11, 11, 16, 12, 14, 10, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1814 16, 16, 14, 16, 12, 15, 12, 11, 13, 16, 13, 15, 13, 15, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1815 13, 16, 12, 15, 12, 15, 12, 11, 15, 16, 13, 16, 13, 16, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1816 8, 14, 9, 12, 10, 13, 11, 11, 11, 16, 11, 13, 11, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1817 16, 16, 16, 16, 16, 16, 14, 13, 9, 14, 10, 12, 10, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1818 11, 16, 11, 13, 12, 13, 11, 11, 16, 16, 15, 16, 15, 16, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1819 11, 16, 11, 13, 12, 14, 12, 11, 13, 16, 12, 14, 13, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1820 16, 16, 15, 16, 16, 16, 14, 13, 9, 14, 10, 13, 10, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1821 11, 16, 11, 13, 11, 13, 11, 11, 16, 16, 15, 16, 14, 15, 14, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1822 9, 14, 10, 13, 10, 13, 11, 11, 11, 15, 11, 13, 11, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1823 16, 16, 14, 16, 14, 16, 13, 12, 12, 16, 12, 14, 13, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1824 12, 16, 11, 14, 12, 15, 12, 11, 16, 16, 13, 16, 15, 16, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1825 11, 16, 12, 14, 11, 14, 12, 11, 13, 16, 13, 15, 12, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1826 16, 16, 16, 16, 14, 16, 14, 13, 12, 16, 13, 15, 11, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1827 12, 16, 13, 14, 11, 15, 12, 11, 16, 16, 15, 16, 13, 15, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1828 13, 16, 13, 15, 13, 16, 12, 12, 13, 16, 13, 15, 13, 15, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1829 15, 16, 13, 16, 13, 15, 11, 10, 10, 16, 12, 14, 12, 15, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1830 14, 16, 13, 15, 13, 16, 13, 12, 16, 16, 16, 16, 16, 16, 15, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1831 10, 16, 12, 14, 12, 15, 12, 12, 13, 16, 13, 15, 13, 15, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1832 16, 16, 16, 16, 16, 16, 14, 13, 11, 16, 12, 15, 13, 16, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1833 14, 16, 13, 16, 13, 16, 12, 12, 16, 16, 15, 16, 15, 16, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1834 11, 16, 12, 14, 12, 16, 12, 12, 14, 16, 13, 15, 13, 15, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1835 16, 16, 16, 16, 16, 16, 15, 13, 11, 16, 12, 14, 12, 15, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1836 13, 16, 12, 14, 12, 15, 12, 12, 16, 16, 16, 16, 16, 16, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1837 12, 16, 12, 15, 13, 16, 12, 12, 13, 16, 12, 15, 13, 15, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1838 16, 16, 14, 16, 15, 16, 13, 12, 12, 16, 13, 16, 12, 16, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1839 15, 16, 14, 16, 13, 16, 12, 12, 16, 16, 16, 16, 16, 16, 14, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1840 12, 16, 13, 15, 12, 16, 12, 12, 13, 16, 13, 15, 12, 15, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1841 16, 16, 15, 16, 14, 16, 13, 12, 13, 16, 13, 16, 12, 16, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1842 13, 16, 12, 16, 12, 15, 12, 12, 14, 16, 12, 14, 12, 14, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1843 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1844 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1845 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1846 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1847 0, 16, 6, 16, 8, 16, 16, 16, 9, 16, 11, 16, 12, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1848 16, 16, 16, 16, 16, 16, 16, 16, 4, 16, 7, 16, 11, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1849 10, 16, 11, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1850 10, 16, 10, 16, 16, 16, 16, 16, 16, 16, 13, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1851 16, 16, 16, 16, 16, 16, 16, 16, 5, 16, 10, 16, 9, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1852 10, 16, 13, 16, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1853 8, 16, 11, 16, 12, 16, 16, 16, 10, 16, 12, 16, 13, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1854 16, 16, 16, 16, 16, 16, 16, 16, 13, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1855 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1856 11, 16, 16, 16, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1857 16, 16, 16, 16, 16, 16, 16, 16, 13, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1858 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1859 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1860 16, 16, 16, 16, 16, 16, 16, 16, 1, 16, 7, 16, 8, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1861 9, 16, 11, 16, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1862 4, 16, 7, 16, 11, 16, 13, 16, 9, 16, 11, 16, 13, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1863 16, 16, 16, 16, 16, 16, 16, 16, 9, 16, 9, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1864 13, 16, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1865 4, 16, 10, 16, 8, 16, 16, 16, 10, 16, 12, 16, 12, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1866 16, 16, 16, 16, 16, 16, 16, 16, 7, 16, 10, 16, 11, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1867 9, 16, 11, 16, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1868 12, 16, 12, 16, 16, 16, 16, 16, 13, 16, 12, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1869 16, 16, 16, 16, 16, 16, 16, 16, 10, 16, 16, 16, 11, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1870 16, 16, 16, 16, 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1871 12, 16, 16, 16, 13, 16, 16, 16, 13, 16, 16, 16, 13, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1872 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1873 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1874 4, 16, 8, 16, 10, 16, 16, 16, 10, 16, 11, 16, 12, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1875 16, 16, 16, 16, 16, 16, 16, 16, 6, 16, 8, 16, 11, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1876 10, 16, 12, 16, 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1877 9, 16, 9, 16, 16, 16, 16, 16, 16, 16, 13, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1878 16, 16, 16, 16, 16, 16, 16, 16, 6, 16, 10, 16, 10, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1879 11, 16, 12, 16, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1880 8, 16, 11, 16, 11, 16, 16, 16, 10, 16, 12, 16, 12, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1881 16, 16, 16, 16, 16, 16, 16, 16, 11, 16, 12, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1882 12, 16, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1883 10, 16, 16, 16, 10, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1884 16, 16, 16, 16, 16, 16, 16, 16, 11, 16, 16, 16, 12, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1885 12, 16, 16, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1886 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1887 16, 16, 16, 16, 16, 16, 16, 16, 6, 16, 10, 16, 11, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1888 11, 16, 12, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1889 8, 16, 9, 16, 11, 16, 13, 16, 11, 16, 12, 16, 13, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1890 16, 16, 16, 16, 16, 16, 16, 16, 9, 16, 9, 16, 13, 16, 12, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1891 13, 16, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1892 8, 16, 10, 16, 10, 16, 14, 16, 12, 16, 12, 16, 12, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1893 16, 16, 16, 16, 16, 16, 16, 16, 9, 16, 11, 16, 11, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1894 10, 16, 12, 16, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1895 11, 16, 10, 16, 13, 16, 12, 16, 12, 16, 11, 16, 16, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1896 16, 16, 16, 16, 16, 16, 16, 16, 9, 16, 12, 16, 10, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1897 16, 16, 16, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1898 10, 16, 13, 16, 11, 16, 13, 16, 12, 16, 13, 16, 12, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1899 16, 16, 16, 16, 16, 16, 16, 16, 13, 16, 13, 16, 16, 16, 12, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1900 13, 16, 12, 16, 16, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1901 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1902 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1903 0, 10, 4, 10, 5, 11, 9, 11, 6, 11, 8, 11, 8, 12, 10, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1904 15, 16, 13, 15, 14, 15, 13, 14, 4, 12, 5, 11, 8, 12, 9, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1905 7, 13, 8, 12, 9, 13, 10, 12, 15, 16, 13, 15, 14, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1906 10, 16, 9, 13, 12, 16, 11, 13, 11, 16, 10, 14, 13, 16, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1907 16, 16, 14, 16, 15, 16, 14, 15, 4, 12, 7, 12, 6, 12, 9, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1908 8, 13, 9, 12, 9, 12, 10, 12, 15, 16, 13, 15, 14, 15, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1909 7, 13, 8, 12, 9, 13, 10, 12, 8, 13, 9, 12, 9, 13, 10, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1910 14, 16, 13, 15, 13, 15, 13, 14, 12, 16, 11, 14, 13, 16, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1911 12, 16, 11, 14, 13, 16, 12, 13, 16, 16, 14, 16, 15, 16, 14, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1912 10, 16, 12, 16, 10, 14, 12, 13, 12, 16, 13, 16, 11, 14, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1913 16, 16, 16, 16, 15, 16, 14, 15, 12, 16, 13, 16, 11, 15, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1914 13, 16, 13, 16, 12, 15, 12, 14, 16, 16, 16, 16, 14, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1915 16, 16, 14, 16, 14, 16, 13, 15, 16, 16, 14, 16, 14, 16, 13, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1916 16, 16, 16, 16, 16, 16, 14, 16, 2, 11, 5, 11, 6, 11, 9, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1917 7, 12, 8, 11, 9, 12, 10, 12, 15, 16, 14, 14, 14, 14, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1918 4, 13, 6, 11, 8, 12, 9, 11, 8, 13, 8, 12, 10, 13, 10, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1919 15, 16, 13, 15, 14, 15, 13, 14, 9, 16, 8, 13, 12, 15, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1920 11, 16, 10, 14, 13, 16, 12, 13, 16, 16, 14, 16, 16, 16, 14, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1921 5, 13, 8, 12, 7, 12, 9, 11, 8, 13, 9, 12, 9, 12, 10, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1922 16, 16, 14, 15, 14, 15, 13, 13, 7, 13, 8, 12, 9, 13, 10, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1923 8, 13, 8, 12, 9, 13, 10, 12, 14, 16, 13, 14, 13, 15, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1924 11, 16, 10, 14, 13, 16, 12, 13, 11, 16, 10, 13, 12, 15, 11, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1925 14, 16, 12, 14, 14, 16, 13, 14, 10, 16, 12, 15, 9, 14, 11, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1926 12, 16, 12, 16, 11, 14, 12, 13, 16, 16, 15, 16, 16, 16, 14, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1927 11, 16, 12, 15, 11, 15, 12, 13, 12, 16, 12, 15, 11, 14, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1928 16, 16, 14, 16, 13, 15, 13, 14, 15, 16, 14, 16, 14, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1929 14, 16, 13, 16, 14, 16, 13, 14, 16, 16, 14, 16, 14, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1930 7, 15, 8, 13, 9, 14, 11, 13, 10, 14, 10, 13, 11, 14, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1931 16, 16, 15, 16, 15, 16, 15, 14, 7, 16, 8, 13, 10, 14, 11, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1932 11, 15, 10, 13, 12, 14, 12, 13, 16, 16, 16, 16, 16, 16, 15, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1933 10, 16, 9, 13, 13, 16, 12, 13, 13, 16, 11, 14, 14, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1934 16, 16, 16, 16, 16, 16, 15, 16, 8, 16, 10, 14, 9, 14, 11, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1935 11, 16, 11, 14, 11, 14, 12, 13, 16, 16, 16, 16, 16, 16, 14, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1936 8, 16, 10, 14, 10, 14, 11, 13, 10, 15, 10, 14, 11, 14, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1937 16, 16, 14, 16, 15, 16, 14, 14, 11, 16, 10, 14, 13, 16, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1938 11, 16, 10, 13, 13, 16, 12, 13, 16, 16, 13, 16, 16, 16, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1939 11, 16, 12, 16, 10, 15, 12, 13, 14, 16, 14, 16, 12, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1940 16, 16, 16, 16, 16, 16, 16, 16, 12, 16, 13, 16, 11, 16, 12, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1941 12, 16, 13, 16, 11, 14, 12, 13, 16, 16, 16, 16, 14, 16, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1942 15, 16, 14, 16, 16, 16, 13, 14, 13, 16, 13, 15, 14, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1943 14, 16, 13, 14, 14, 15, 13, 14, 9, 16, 11, 16, 12, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1944 12, 16, 12, 15, 13, 16, 13, 14, 16, 16, 16, 15, 16, 16, 15, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1945 10, 16, 10, 16, 12, 16, 12, 14, 12, 16, 12, 14, 13, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1946 16, 16, 16, 16, 16, 16, 15, 15, 11, 16, 10, 14, 14, 16, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1947 14, 16, 12, 16, 14, 16, 13, 14, 16, 16, 16, 16, 16, 16, 16, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1948 10, 16, 12, 16, 11, 16, 12, 14, 13, 16, 12, 15, 13, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1949 16, 16, 16, 16, 16, 16, 16, 15, 10, 16, 11, 16, 12, 16, 12, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1950 12, 16, 12, 15, 13, 16, 13, 14, 16, 16, 16, 16, 16, 16, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1951 11, 16, 10, 14, 14, 16, 12, 13, 13, 16, 11, 14, 14, 16, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1952 16, 16, 15, 16, 16, 16, 14, 14, 12, 16, 13, 16, 11, 16, 12, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1953 15, 16, 14, 16, 13, 16, 13, 14, 16, 16, 16, 16, 16, 16, 14, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1954 12, 16, 13, 16, 12, 16, 12, 14, 13, 16, 13, 16, 12, 16, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1955 16, 16, 16, 16, 16, 16, 14, 15, 13, 16, 13, 16, 14, 16, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1956 13, 16, 13, 14, 14, 16, 12, 13, 16, 16, 14, 14, 14, 15, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1957 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1958 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1959 0, 9, 3, 9, 5, 9, 7, 9, 5, 10, 7, 11, 8, 11, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1960 16, 16, 16, 16, 16, 16, 16, 16, 2, 11, 4, 10, 7, 11, 8, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1961 7, 16, 7, 11, 9, 16, 9, 11, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1962 8, 16, 7, 16, 11, 16, 10, 11, 11, 16, 10, 16, 16, 16, 11, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1963 16, 16, 16, 16, 16, 16, 16, 16, 2, 11, 6, 10, 6, 10, 8, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1964 7, 16, 8, 16, 8, 11, 9, 11, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1965 5, 13, 7, 11, 8, 11, 9, 11, 6, 12, 8, 12, 8, 12, 9, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1966 16, 16, 16, 16, 16, 16, 16, 16, 10, 16, 10, 16, 12, 16, 10, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1967 10, 16, 9, 16, 11, 16, 11, 12, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1968 8, 16, 10, 16, 8, 16, 10, 12, 11, 16, 12, 16, 10, 16, 11, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1969 16, 16, 16, 16, 16, 16, 16, 16, 10, 16, 11, 16, 10, 16, 11, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1970 11, 16, 12, 16, 10, 16, 11, 12, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1971 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1972 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1973 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1974 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1975 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1976 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1977 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1978 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1979 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1980 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1981 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1982 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1983 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1984 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1985 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1986 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1987 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1988 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1989 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1990 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1991 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1992 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1993 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1994 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1995 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1996 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1997 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1998 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
1999 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2000 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2001 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2002 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2003 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2004 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2005 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2006 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2007 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2008 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2009 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2010 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2011 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2012 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2013 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2014 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2015 1, 10, 5, 10, 6, 10, 9, 10, 7, 12, 9, 12, 9, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2016 16, 16, 15, 16, 14, 16, 13, 13, 5, 12, 7, 11, 8, 11, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2017 8, 13, 9, 12, 10, 12, 10, 11, 16, 16, 16, 16, 14, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2018 10, 16, 10, 13, 12, 14, 12, 12, 12, 16, 11, 14, 13, 15, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2019 16, 16, 16, 15, 16, 16, 14, 13, 5, 12, 8, 11, 7, 11, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2020 8, 13, 10, 12, 9, 12, 10, 10, 15, 16, 14, 15, 14, 14, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2021 7, 13, 9, 12, 9, 12, 10, 10, 9, 13, 10, 13, 10, 13, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2022 14, 16, 14, 15, 14, 16, 13, 12, 11, 16, 12, 14, 12, 15, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2023 12, 16, 12, 15, 13, 16, 12, 12, 16, 16, 15, 16, 16, 16, 14, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2024 10, 16, 12, 14, 10, 14, 12, 12, 12, 16, 13, 14, 11, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2025 16, 16, 16, 16, 14, 16, 14, 13, 11, 16, 12, 14, 11, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2026 12, 16, 13, 16, 11, 15, 12, 12, 16, 16, 16, 16, 14, 16, 14, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2027 13, 16, 14, 16, 14, 16, 13, 13, 13, 16, 13, 16, 13, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2028 16, 16, 16, 16, 16, 16, 13, 13, 4, 11, 7, 10, 7, 11, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2029 8, 12, 9, 12, 9, 12, 10, 11, 15, 16, 14, 15, 14, 16, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2030 6, 12, 7, 11, 8, 11, 9, 10, 9, 13, 9, 12, 10, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2031 16, 16, 15, 16, 15, 16, 13, 12, 10, 16, 10, 13, 12, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2032 12, 16, 11, 14, 13, 14, 12, 12, 16, 16, 16, 14, 16, 16, 14, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2033 6, 12, 8, 11, 7, 11, 9, 10, 9, 14, 10, 12, 9, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2034 15, 16, 14, 16, 14, 16, 14, 13, 7, 13, 9, 12, 9, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2035 9, 13, 9, 12, 9, 12, 10, 10, 14, 16, 13, 14, 14, 16, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2036 11, 16, 11, 14, 12, 14, 12, 12, 12, 16, 11, 14, 12, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2037 16, 16, 13, 16, 14, 16, 13, 12, 10, 16, 12, 14, 10, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2038 12, 16, 13, 14, 11, 14, 12, 12, 16, 16, 16, 16, 14, 16, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2039 11, 16, 12, 16, 11, 14, 12, 12, 12, 16, 12, 14, 11, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2040 16, 16, 15, 16, 13, 15, 13, 12, 13, 16, 14, 16, 13, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2041 13, 16, 13, 16, 13, 16, 13, 12, 16, 16, 14, 16, 14, 16, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2042 8, 13, 10, 12, 10, 13, 11, 11, 11, 14, 12, 14, 12, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2043 16, 16, 16, 16, 16, 16, 14, 13, 9, 14, 10, 13, 10, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2044 12, 16, 12, 13, 12, 13, 12, 11, 16, 16, 16, 16, 16, 16, 15, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2045 12, 16, 11, 14, 13, 15, 12, 12, 13, 16, 12, 15, 14, 15, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2046 16, 16, 16, 16, 16, 16, 15, 13, 9, 14, 11, 13, 10, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2047 11, 16, 12, 14, 12, 14, 12, 12, 16, 16, 16, 16, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2048 10, 15, 11, 13, 11, 14, 12, 11, 11, 16, 12, 14, 11, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2049 16, 16, 16, 16, 16, 16, 14, 12, 12, 16, 12, 14, 13, 15, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2050 12, 16, 12, 14, 13, 15, 12, 12, 16, 16, 14, 16, 16, 16, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2051 12, 16, 13, 16, 11, 14, 12, 12, 14, 16, 14, 16, 12, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2052 16, 16, 16, 16, 16, 16, 16, 13, 12, 16, 13, 16, 12, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2053 12, 16, 13, 16, 12, 16, 12, 12, 16, 16, 16, 16, 14, 16, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2054 14, 16, 14, 16, 14, 16, 14, 13, 13, 16, 13, 16, 13, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2055 16, 16, 13, 16, 13, 16, 12, 11, 9, 16, 12, 15, 13, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2056 13, 16, 14, 16, 14, 16, 14, 13, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2057 10, 16, 12, 15, 12, 15, 13, 12, 13, 16, 14, 16, 13, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2058 16, 16, 16, 16, 16, 16, 16, 13, 12, 16, 12, 16, 13, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2059 14, 16, 13, 16, 14, 16, 13, 12, 16, 16, 16, 16, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2060 11, 16, 12, 15, 12, 16, 13, 12, 14, 16, 14, 16, 13, 16, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2061 16, 16, 16, 16, 16, 16, 15, 13, 11, 16, 12, 16, 12, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2062 13, 16, 13, 15, 13, 16, 13, 12, 16, 16, 16, 16, 16, 16, 15, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2063 12, 16, 12, 16, 13, 16, 13, 12, 13, 16, 12, 16, 13, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2064 16, 16, 14, 16, 16, 16, 14, 12, 12, 16, 14, 16, 11, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2065 14, 16, 14, 16, 13, 16, 13, 12, 16, 16, 16, 16, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2066 12, 16, 13, 16, 12, 16, 13, 12, 13, 16, 13, 16, 12, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2067 16, 16, 16, 16, 14, 16, 14, 12, 13, 16, 13, 16, 13, 16, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2068 13, 16, 12, 16, 12, 16, 12, 12, 14, 16, 13, 15, 13, 16, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2069 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2070 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2071 };
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2072
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2073
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2074 static const uint8_t rv34_table_intra_secondpat[NUM_INTRA_TABLES][2][OTHERBLK_VLC_SIZE] = {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2075 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2076 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2077 0, 5, 10, 3, 6, 10, 7, 8, 9, 4, 6, 10, 6, 7, 9, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2078 8, 9, 8, 8, 9, 8, 9, 9, 9, 9, 8, 3, 6, 10, 4, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2079 10, 7, 7, 9, 5, 7, 10, 6, 7, 9, 7, 7, 8, 7, 8, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2080 8, 8, 9, 8, 8, 7, 6, 8, 10, 6, 8, 10, 7, 8, 9, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2081 8, 10, 7, 8, 10, 8, 8, 8, 8, 9, 9, 8, 8, 9, 9, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2082 7, 7, 8, 9, 7, 8, 9, 7, 7, 7, 8, 8, 9, 7, 8, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2083 7, 7, 7, 8, 8, 8, 7, 7, 7, 7, 6, 5,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2084 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2085 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2086 0, 5, 11, 3, 6, 11, 8, 9, 11, 3, 6, 10, 6, 7, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2087 9, 11, 7, 9, 11, 9, 9, 11, 10, 10, 11, 2, 6, 10, 4, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2088 10, 7, 9, 11, 4, 7, 11, 6, 7, 10, 9, 9, 11, 7, 9, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2089 8, 9, 10, 10, 10, 10, 5, 8, 11, 6, 8, 11, 8, 9, 11, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2090 8, 11, 7, 8, 11, 9, 9, 11, 8, 10, 11, 9, 9, 11, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2091 10, 8, 9, 11, 8, 9, 11, 9, 9, 10, 8, 9, 11, 8, 9, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2092 9, 9, 10, 8, 9, 10, 9, 9, 10, 9, 9, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2093 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2094 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2095 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2096 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2097 0, 5, 10, 4, 6, 10, 7, 8, 10, 4, 6, 10, 6, 7, 9, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2098 8, 9, 8, 8, 9, 8, 9, 9, 9, 9, 9, 2, 6, 10, 4, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2099 10, 7, 7, 9, 5, 7, 10, 6, 7, 9, 7, 7, 9, 7, 8, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2100 8, 8, 9, 9, 8, 8, 6, 8, 10, 6, 8, 10, 7, 8, 9, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2101 8, 10, 7, 8, 10, 8, 8, 9, 8, 9, 10, 8, 8, 9, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2102 8, 8, 8, 10, 7, 8, 9, 7, 8, 8, 7, 8, 10, 7, 8, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2103 7, 7, 8, 8, 8, 9, 8, 8, 8, 7, 7, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2104 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2105 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2106 0, 5, 12, 4, 7, 12, 8, 10, 13, 4, 7, 12, 6, 8, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2107 10, 12, 8, 9, 12, 10, 10, 12, 12, 12, 12, 1, 6, 12, 4, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2108 12, 8, 9, 12, 4, 7, 12, 6, 8, 11, 9, 10, 12, 8, 9, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2109 9, 10, 11, 11, 11, 12, 6, 8, 12, 7, 9, 12, 9, 10, 13, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2110 9, 12, 8, 9, 12, 10, 10, 12, 9, 10, 12, 10, 10, 12, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2111 12, 8, 10, 12, 9, 10, 12, 10, 10, 12, 8, 10, 12, 9, 10, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2112 10, 10, 11, 9, 10, 12, 10, 10, 11, 11, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2113 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2114 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2115 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2116 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2117 0, 5, 10, 3, 6, 10, 7, 8, 11, 4, 6, 10, 6, 7, 10, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2118 9, 10, 8, 8, 10, 9, 9, 10, 10, 10, 10, 2, 6, 10, 4, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2119 10, 7, 8, 10, 4, 7, 10, 6, 7, 10, 8, 8, 10, 7, 8, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2120 8, 8, 9, 10, 9, 9, 5, 8, 11, 6, 8, 10, 7, 9, 10, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2121 8, 11, 7, 8, 10, 8, 8, 10, 8, 9, 11, 9, 9, 10, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2122 9, 8, 9, 10, 8, 9, 10, 8, 9, 10, 8, 9, 10, 8, 8, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2123 8, 8, 9, 8, 9, 10, 8, 8, 9, 9, 8, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2124 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2125 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2126 0, 6, 13, 4, 7, 14, 9, 11, 14, 3, 7, 13, 7, 8, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2127 11, 14, 8, 10, 13, 10, 11, 13, 13, 13, 14, 1, 6, 12, 4, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2128 13, 9, 10, 15, 4, 8, 13, 7, 8, 12, 11, 11, 14, 8, 10, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2129 10, 10, 13, 13, 13, 14, 5, 9, 13, 7, 9, 13, 10, 11, 14, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2130 10, 14, 8, 10, 14, 11, 11, 14, 9, 11, 14, 11, 11, 13, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2131 14, 9, 10, 14, 9, 11, 13, 11, 12, 14, 9, 11, 13, 9, 11, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2132 11, 12, 13, 10, 12, 15, 11, 11, 13, 13, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2133 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2134 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2135 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2136 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2137 0, 5, 11, 3, 6, 11, 7, 9, 12, 3, 6, 11, 6, 7, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2138 9, 11, 8, 9, 11, 9, 9, 11, 11, 11, 12, 2, 6, 11, 4, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2139 11, 7, 9, 11, 4, 7, 11, 5, 7, 10, 9, 9, 11, 7, 8, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2140 9, 9, 10, 11, 11, 11, 5, 8, 11, 6, 8, 11, 8, 9, 12, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2141 8, 11, 7, 8, 11, 9, 9, 11, 8, 9, 12, 9, 9, 11, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2142 11, 8, 10, 12, 8, 10, 11, 9, 10, 12, 8, 10, 12, 8, 9, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2143 10, 10, 12, 9, 10, 12, 9, 9, 11, 11, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2144 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2145 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2146 0, 6, 13, 3, 8, 14, 10, 12, 16, 3, 8, 15, 7, 9, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2147 13, 15, 9, 11, 15, 11, 12, 16, 14, 16, 16, 1, 7, 13, 4, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2148 14, 9, 11, 15, 4, 8, 14, 7, 9, 14, 12, 13, 15, 8, 10, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2149 11, 11, 14, 16, 14, 16, 6, 9, 14, 7, 10, 14, 11, 13, 15, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2150 10, 14, 9, 10, 13, 12, 12, 15, 10, 11, 14, 11, 11, 14, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2151 16, 9, 11, 14, 10, 11, 14, 13, 14, 15, 9, 12, 14, 10, 12, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2152 13, 14, 16, 10, 13, 16, 12, 12, 14, 15, 14, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2153 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2154 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2155 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2156 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2157 0, 6, 12, 3, 7, 12, 9, 11, 13, 4, 7, 12, 6, 8, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2158 11, 13, 8, 10, 13, 10, 11, 13, 13, 13, 14, 1, 6, 12, 4, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2159 12, 9, 10, 14, 4, 7, 12, 6, 7, 12, 10, 11, 13, 8, 9, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2160 10, 10, 12, 13, 13, 14, 6, 9, 13, 7, 9, 13, 10, 12, 14, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2161 9, 13, 8, 10, 13, 11, 11, 14, 9, 11, 13, 11, 11, 14, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2162 14, 10, 12, 14, 10, 12, 14, 12, 13, 15, 10, 12, 14, 10, 12, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2163 12, 13, 15, 11, 13, 15, 12, 12, 15, 14, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2164 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2165 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2166 0, 6, 16, 3, 8, 16, 10, 13, 16, 3, 8, 16, 7, 9, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2167 16, 16, 8, 10, 16, 11, 13, 16, 16, 16, 16, 1, 7, 14, 4, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2168 16, 10, 12, 16, 4, 8, 13, 7, 9, 16, 13, 14, 16, 8, 10, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2169 11, 11, 14, 16, 16, 16, 6, 9, 14, 8, 10, 14, 12, 16, 16, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2170 10, 13, 9, 11, 16, 13, 14, 16, 9, 12, 16, 12, 11, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2171 16, 10, 12, 16, 11, 12, 16, 16, 14, 16, 9, 12, 16, 11, 12, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2172 16, 15, 16, 10, 13, 16, 12, 13, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2173 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2174 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2175 };
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2176
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2177 static const uint8_t rv34_table_intra_thirdpat[NUM_INTRA_TABLES][2][OTHERBLK_VLC_SIZE] = {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2178 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2179 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2180 0, 5, 10, 3, 6, 10, 7, 8, 10, 4, 7, 10, 6, 7, 10, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2181 8, 10, 8, 9, 10, 9, 9, 10, 9, 9, 9, 2, 6, 10, 4, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2182 10, 7, 8, 9, 5, 7, 10, 6, 7, 10, 8, 8, 9, 8, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2183 8, 8, 9, 9, 9, 8, 6, 8, 11, 6, 8, 10, 7, 8, 10, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2184 8, 11, 7, 8, 10, 8, 8, 9, 8, 9, 10, 9, 9, 10, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2185 9, 7, 8, 10, 7, 8, 10, 7, 8, 8, 7, 8, 10, 7, 8, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2186 7, 8, 8, 8, 8, 9, 8, 8, 8, 7, 7, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2187 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2188 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2189 0, 4, 10, 3, 6, 10, 7, 8, 11, 3, 6, 10, 5, 7, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2190 9, 11, 9, 10, 11, 9, 10, 11, 11, 11, 11, 2, 6, 10, 4, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2191 10, 7, 8, 10, 4, 7, 10, 6, 7, 10, 8, 9, 10, 8, 9, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2192 9, 9, 11, 10, 10, 11, 6, 8, 11, 6, 8, 11, 8, 9, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2193 9, 11, 7, 8, 11, 9, 9, 11, 9, 10, 12, 10, 10, 12, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2194 11, 8, 9, 11, 8, 9, 11, 9, 9, 11, 9, 10, 11, 9, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2195 9, 10, 11, 10, 11, 12, 10, 10, 12, 10, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2196 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2197 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2198 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2199 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2200 0, 5, 10, 3, 6, 10, 7, 8, 10, 4, 7, 10, 6, 7, 10, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2201 9, 10, 8, 9, 11, 8, 9, 10, 10, 10, 10, 2, 6, 10, 4, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2202 10, 7, 8, 10, 4, 7, 10, 5, 7, 10, 8, 8, 10, 8, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2203 8, 9, 10, 9, 9, 9, 5, 7, 11, 6, 8, 11, 7, 8, 11, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2204 8, 11, 7, 8, 10, 8, 9, 10, 8, 9, 11, 9, 9, 10, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2205 10, 7, 8, 10, 7, 8, 10, 8, 9, 10, 8, 9, 10, 8, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2206 8, 8, 10, 9, 9, 10, 9, 9, 10, 9, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2207 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2208 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2209 0, 5, 11, 3, 6, 11, 8, 9, 12, 4, 7, 12, 6, 7, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2210 10, 13, 10, 11, 13, 10, 11, 14, 12, 13, 14, 1, 6, 11, 4, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2211 11, 8, 9, 12, 5, 7, 11, 6, 8, 12, 9, 10, 13, 10, 11, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2212 10, 11, 13, 12, 12, 14, 6, 8, 12, 7, 9, 13, 9, 10, 14, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2213 10, 13, 8, 10, 12, 11, 11, 13, 11, 13, 14, 11, 12, 14, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2214 15, 9, 10, 12, 9, 11, 14, 10, 11, 14, 11, 11, 13, 10, 11, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2215 11, 12, 14, 12, 14, 15, 13, 13, 14, 13, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2216 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2217 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2218 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2219 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2220 0, 5, 11, 3, 6, 11, 7, 9, 11, 4, 6, 11, 5, 7, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2221 9, 11, 8, 9, 11, 9, 10, 11, 11, 11, 11, 2, 6, 10, 3, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2222 10, 7, 9, 11, 4, 7, 10, 5, 7, 10, 8, 9, 11, 8, 9, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2223 9, 9, 11, 11, 11, 11, 5, 8, 11, 6, 8, 11, 8, 10, 12, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2224 8, 11, 7, 8, 11, 9, 10, 11, 9, 10, 12, 9, 10, 11, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2225 11, 8, 9, 11, 8, 10, 12, 9, 11, 12, 8, 10, 12, 9, 10, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2226 10, 11, 12, 10, 11, 12, 10, 10, 11, 11, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2227 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2228 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2229 0, 5, 13, 2, 7, 16, 9, 11, 16, 4, 8, 16, 7, 9, 16, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2230 12, 16, 12, 16, 16, 12, 16, 16, 16, 16, 16, 1, 6, 13, 4, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2231 16, 9, 11, 16, 6, 9, 16, 7, 10, 16, 13, 13, 16, 13, 15, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2232 12, 16, 16, 16, 16, 16, 7, 9, 16, 8, 11, 15, 11, 13, 16, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2233 12, 16, 10, 12, 16, 16, 13, 16, 16, 16, 16, 14, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2234 16, 12, 12, 16, 12, 16, 16, 16, 16, 16, 13, 14, 16, 12, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2235 16, 16, 16, 16, 16, 16, 14, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2236 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2237 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2238 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2239 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2240 0, 6, 11, 3, 7, 11, 8, 10, 12, 4, 7, 11, 6, 8, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2241 11, 12, 9, 10, 12, 10, 10, 12, 12, 12, 13, 1, 6, 11, 4, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2242 11, 8, 10, 12, 4, 7, 11, 6, 8, 11, 10, 10, 12, 9, 10, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2243 10, 10, 12, 13, 13, 13, 6, 8, 12, 7, 10, 12, 10, 12, 13, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2244 9, 12, 8, 10, 12, 11, 11, 13, 11, 12, 14, 11, 11, 13, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2245 13, 9, 11, 13, 10, 12, 14, 12, 13, 15, 10, 12, 14, 11, 12, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2246 13, 13, 14, 12, 13, 15, 13, 13, 14, 14, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2247 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2248 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2249 0, 5, 16, 2, 6, 16, 10, 14, 16, 4, 8, 16, 7, 9, 16, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2250 16, 16, 11, 16, 16, 16, 16, 16, 16, 16, 16, 1, 6, 12, 4, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2251 12, 12, 12, 16, 6, 8, 16, 8, 10, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2252 16, 16, 16, 12, 16, 16, 7, 10, 16, 8, 11, 14, 16, 16, 16, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2253 12, 16, 10, 16, 16, 16, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2254 16, 16, 16, 16, 12, 16, 16, 16, 16, 16, 16, 16, 16, 12, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2255 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2256 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2257 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2258 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2259 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2260 0, 5, 11, 3, 6, 11, 10, 10, 12, 3, 7, 11, 6, 8, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2261 11, 12, 10, 10, 12, 11, 11, 13, 14, 13, 14, 1, 6, 11, 4, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2262 11, 10, 11, 13, 5, 7, 11, 7, 8, 11, 11, 11, 13, 10, 11, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2263 11, 11, 12, 13, 13, 14, 7, 10, 12, 9, 11, 13, 12, 13, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2264 10, 13, 9, 10, 13, 12, 11, 13, 12, 13, 16, 12, 13, 13, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2265 14, 11, 14, 16, 12, 14, 15, 14, 13, 16, 13, 13, 15, 13, 14, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2266 14, 13, 16, 13, 13, 16, 13, 14, 15, 15, 14, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2267 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2268 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2269 0, 4, 16, 2, 7, 16, 10, 16, 16, 4, 10, 16, 7, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2270 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 1, 6, 13, 4, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2271 16, 16, 16, 16, 6, 10, 16, 8, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2272 16, 16, 16, 16, 16, 16, 8, 16, 16, 10, 16, 16, 16, 16, 16, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2273 16, 16, 10, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2274 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2275 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2276 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2277 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2278 };
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2279
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2280
5996
9319837c5d02 Rename some tables
kostya
parents: 5981
diff changeset
2281 static const uint8_t rv34_intra_coeff[NUM_INTRA_TABLES][COEFF_VLC_SIZE] = {
5965
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2282 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2283 1, 3, 3, 4, 4, 5, 6, 6, 6, 7, 7, 7, 8, 8, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2284 9, 9, 10, 10, 10, 11, 11, 11, 10, 10, 10, 12, 13, 14, 15, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2285 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2286 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2287 1, 2, 3, 5, 5, 6, 6, 7, 7, 8, 8, 9, 10, 10, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2288 11, 11, 12, 12, 13, 13, 13, 13, 13, 13, 13, 14, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2289 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2290 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2291 1, 2, 3, 4, 5, 6, 8, 8, 9, 9, 10, 10, 11, 12, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2292 13, 13, 14, 14, 14, 14, 16, 16, 14, 16, 16, 16, 14, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2293 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2294 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2295 1, 2, 3, 4, 5, 6, 8, 8, 9, 9, 10, 10, 11, 12, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2296 13, 13, 16, 16, 16, 16, 16, 16, 16, 16, 14, 12, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2297 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2298 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2299 1, 2, 3, 4, 5, 7, 7, 8, 8, 9, 10, 10, 12, 11, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2300 15, 13, 14, 13, 12, 15, 14, 13, 12, 12, 10, 11, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2301 }
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2302 };
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2303
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2304
5996
9319837c5d02 Rename some tables
kostya
parents: 5981
diff changeset
2305 static const uint8_t rv34_inter_cbppat[NUM_INTER_TABLES][CBPPAT_VLC_SIZE] = {
5965
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2306 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2307 7, 9, 9, 8, 9, 8, 9, 8, 9, 9, 8, 8, 8, 8, 8, 4,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2308 7, 10, 11, 10, 11, 10, 12, 10, 12, 11, 11, 10, 11, 10, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2309 10, 11, 15, 12, 15, 12, 15, 12, 15, 14, 14, 12, 14, 12, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2310 7, 11, 10, 10, 12, 11, 11, 10, 11, 12, 10, 10, 11, 10, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2311 8, 12, 12, 11, 13, 12, 12, 10, 13, 13, 12, 10, 12, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2312 11, 13, 15, 11, 15, 13, 15, 12, 16, 14, 14, 12, 15, 13, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2313 10, 15, 11, 12, 15, 14, 14, 12, 15, 15, 12, 12, 14, 14, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2314 11, 15, 13, 12, 16, 15, 14, 12, 15, 15, 13, 12, 15, 14, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2315 13, 15, 14, 10, 16, 15, 16, 11, 16, 16, 15, 12, 16, 15, 15, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2316 7, 11, 11, 11, 11, 10, 11, 10, 11, 12, 11, 10, 10, 10, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2317 9, 12, 13, 12, 12, 11, 13, 10, 13, 13, 12, 11, 12, 10, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2318 12, 13, 16, 14, 15, 12, 16, 12, 16, 15, 15, 13, 15, 12, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2319 9, 13, 13, 12, 13, 12, 13, 11, 13, 13, 12, 11, 12, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2320 9, 13, 13, 12, 13, 12, 13, 11, 13, 13, 13, 11, 12, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2321 12, 14, 15, 13, 16, 13, 15, 11, 16, 14, 15, 12, 15, 12, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2322 12, 16, 14, 14, 16, 15, 15, 13, 16, 15, 14, 13, 15, 14, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2323 12, 15, 14, 13, 15, 14, 15, 12, 16, 15, 14, 12, 14, 13, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2324 13, 16, 16, 12, 16, 14, 16, 11, 16, 16, 15, 12, 16, 14, 14, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2325 10, 15, 15, 15, 12, 12, 14, 12, 14, 15, 15, 14, 12, 12, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2326 11, 15, 16, 14, 13, 12, 15, 12, 16, 15, 15, 14, 14, 12, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2327 14, 15, 16, 16, 15, 11, 16, 12, 16, 16, 16, 15, 16, 12, 15, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2328 12, 16, 16, 15, 14, 14, 14, 13, 16, 16, 15, 14, 14, 13, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2329 12, 15, 15, 14, 14, 13, 15, 12, 16, 15, 14, 13, 14, 13, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2330 13, 16, 16, 15, 16, 12, 16, 11, 16, 16, 16, 14, 16, 13, 14, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2331 14, 16, 16, 16, 16, 16, 15, 14, 16, 16, 16, 15, 16, 15, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2332 13, 16, 16, 15, 16, 15, 15, 12, 16, 16, 16, 14, 15, 14, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2333 14, 16, 16, 13, 16, 14, 16, 10, 16, 16, 16, 13, 16, 14, 14, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2334 7, 12, 11, 11, 11, 11, 12, 10, 11, 11, 10, 10, 10, 10, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2335 9, 13, 13, 12, 13, 12, 13, 11, 13, 13, 12, 11, 12, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2336 12, 14, 16, 14, 16, 14, 16, 13, 16, 14, 15, 13, 15, 13, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2337 9, 13, 12, 12, 13, 12, 13, 11, 12, 13, 11, 10, 12, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2338 9, 13, 13, 12, 13, 12, 13, 11, 13, 13, 12, 11, 12, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2339 12, 14, 16, 13, 16, 14, 15, 12, 15, 15, 14, 12, 15, 13, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2340 11, 15, 13, 14, 15, 15, 14, 13, 15, 15, 12, 12, 14, 14, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2341 11, 15, 14, 13, 15, 14, 14, 12, 15, 14, 13, 11, 14, 13, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2342 13, 16, 15, 12, 16, 15, 16, 12, 16, 16, 14, 11, 15, 14, 14, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2343 8, 13, 13, 12, 12, 12, 13, 11, 12, 13, 12, 11, 11, 10, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2344 9, 13, 14, 12, 13, 12, 13, 11, 13, 13, 13, 11, 12, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2345 12, 14, 16, 14, 15, 13, 15, 12, 15, 15, 15, 13, 14, 12, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2346 9, 13, 13, 12, 13, 12, 13, 11, 13, 13, 12, 11, 12, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2347 9, 13, 12, 12, 13, 12, 12, 10, 13, 13, 12, 10, 12, 10, 10, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2348 11, 14, 14, 12, 14, 12, 14, 11, 14, 14, 13, 11, 13, 11, 12, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2349 12, 16, 14, 14, 15, 15, 14, 13, 15, 15, 13, 12, 14, 13, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2350 11, 14, 13, 12, 14, 13, 13, 11, 14, 14, 13, 11, 13, 12, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2351 11, 14, 14, 12, 15, 13, 14, 11, 15, 14, 13, 11, 14, 12, 12, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2352 11, 16, 15, 15, 13, 14, 15, 13, 14, 15, 15, 13, 12, 12, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2353 12, 15, 15, 14, 14, 13, 15, 12, 15, 15, 14, 13, 13, 11, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2354 13, 16, 16, 15, 16, 13, 16, 13, 16, 16, 15, 14, 14, 12, 14, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2355 11, 16, 15, 14, 14, 14, 14, 13, 15, 15, 14, 13, 13, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2356 11, 14, 14, 13, 13, 12, 14, 11, 14, 14, 13, 12, 12, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2357 12, 14, 15, 13, 14, 12, 14, 11, 15, 14, 14, 12, 13, 11, 12, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2358 13, 16, 16, 16, 16, 15, 16, 14, 16, 16, 15, 14, 15, 14, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2359 12, 15, 14, 13, 15, 13, 14, 12, 15, 15, 13, 12, 13, 12, 12, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2360 11, 15, 14, 12, 14, 13, 14, 10, 15, 14, 13, 11, 13, 11, 11, 5,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2361 10, 15, 15, 15, 15, 14, 15, 13, 12, 14, 12, 12, 12, 13, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2362 12, 16, 16, 15, 16, 15, 16, 14, 14, 15, 14, 13, 14, 13, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2363 14, 16, 16, 16, 16, 16, 16, 15, 16, 16, 16, 14, 16, 14, 15, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2364 11, 15, 15, 14, 15, 15, 15, 14, 14, 15, 12, 12, 13, 13, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2365 12, 15, 15, 14, 16, 14, 15, 13, 14, 14, 13, 12, 14, 13, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2366 13, 16, 16, 15, 16, 16, 16, 14, 16, 16, 15, 12, 16, 14, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2367 13, 16, 14, 16, 16, 16, 16, 15, 15, 16, 11, 12, 16, 15, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2368 13, 16, 15, 14, 16, 15, 16, 14, 15, 16, 12, 11, 15, 14, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2369 13, 16, 16, 13, 16, 16, 16, 13, 16, 16, 13, 11, 16, 14, 14, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2370 11, 15, 15, 15, 14, 14, 15, 13, 13, 15, 14, 13, 12, 12, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2371 11, 15, 16, 14, 15, 14, 15, 13, 14, 14, 14, 13, 13, 12, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2372 13, 16, 16, 16, 16, 15, 16, 14, 16, 16, 16, 13, 15, 12, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2373 11, 16, 15, 14, 14, 14, 15, 13, 14, 14, 13, 12, 13, 12, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2374 11, 14, 14, 13, 14, 13, 14, 12, 13, 13, 12, 11, 12, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2375 12, 15, 15, 13, 15, 14, 15, 12, 15, 14, 14, 11, 13, 12, 12, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2376 13, 16, 15, 15, 16, 16, 16, 14, 15, 16, 12, 12, 14, 14, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2377 11, 15, 14, 13, 15, 13, 14, 12, 14, 14, 12, 11, 13, 12, 11, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2378 11, 14, 14, 12, 15, 13, 14, 11, 15, 14, 12, 10, 13, 11, 11, 5,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2379 12, 16, 16, 16, 15, 15, 16, 15, 14, 16, 15, 15, 10, 12, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2380 13, 16, 16, 16, 15, 14, 16, 13, 15, 15, 15, 14, 12, 11, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2381 14, 16, 16, 16, 16, 14, 16, 13, 16, 16, 16, 14, 14, 11, 14, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2382 13, 16, 16, 15, 15, 15, 15, 14, 15, 16, 14, 13, 12, 12, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2383 11, 15, 15, 13, 14, 13, 14, 12, 14, 14, 13, 12, 12, 11, 11, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2384 11, 15, 15, 13, 15, 12, 14, 11, 14, 14, 13, 11, 12, 10, 11, 5,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2385 13, 16, 16, 15, 16, 16, 16, 14, 16, 16, 14, 14, 14, 13, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2386 11, 14, 14, 13, 14, 13, 14, 11, 14, 14, 12, 11, 12, 11, 10, 5,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2387 10, 13, 13, 11, 13, 12, 13, 9, 13, 13, 12, 9, 12, 10, 10, 3,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2388 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2389 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2390 5, 7, 7, 7, 7, 7, 8, 7, 7, 8, 7, 7, 7, 7, 7, 4,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2391 7, 9, 11, 9, 11, 9, 11, 9, 11, 10, 10, 9, 10, 9, 10, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2392 11, 11, 14, 11, 14, 11, 14, 11, 15, 13, 14, 12, 14, 12, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2393 6, 11, 10, 9, 11, 10, 11, 9, 11, 11, 9, 9, 10, 10, 9, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2394 8, 11, 11, 10, 12, 11, 12, 10, 12, 12, 11, 10, 12, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2395 11, 13, 14, 11, 15, 13, 15, 11, 15, 14, 14, 12, 14, 13, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2396 10, 14, 11, 11, 15, 14, 13, 12, 14, 14, 11, 11, 14, 13, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2397 11, 14, 13, 11, 15, 14, 14, 11, 15, 15, 13, 11, 14, 14, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2398 12, 14, 14, 10, 16, 15, 16, 11, 16, 16, 15, 11, 16, 15, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2399 6, 10, 11, 10, 10, 9, 11, 9, 10, 11, 10, 10, 9, 9, 9, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2400 9, 12, 12, 11, 12, 10, 12, 10, 12, 12, 12, 11, 11, 10, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2401 12, 13, 15, 13, 14, 11, 15, 11, 15, 15, 14, 13, 14, 12, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2402 9, 12, 12, 11, 12, 11, 12, 11, 12, 13, 11, 11, 12, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2403 9, 12, 12, 11, 13, 11, 12, 10, 13, 13, 12, 11, 12, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2404 12, 14, 15, 12, 15, 12, 14, 11, 15, 15, 14, 12, 14, 13, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2405 12, 15, 14, 13, 15, 14, 14, 13, 16, 16, 14, 13, 15, 14, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2406 12, 15, 14, 13, 15, 14, 14, 12, 15, 15, 13, 12, 14, 13, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2407 13, 15, 15, 12, 16, 14, 15, 11, 16, 16, 15, 12, 15, 14, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2408 10, 14, 14, 14, 12, 11, 13, 12, 14, 15, 14, 13, 12, 11, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2409 12, 14, 15, 14, 13, 11, 14, 12, 15, 15, 15, 14, 13, 11, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2410 13, 15, 16, 15, 14, 11, 16, 11, 16, 16, 16, 14, 15, 12, 15, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2411 12, 15, 15, 14, 14, 14, 14, 13, 15, 15, 14, 14, 14, 13, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2412 12, 15, 15, 14, 14, 13, 14, 12, 15, 15, 14, 13, 14, 13, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2413 13, 15, 16, 14, 15, 13, 16, 11, 16, 16, 15, 14, 15, 13, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2414 14, 16, 16, 16, 16, 16, 15, 14, 16, 16, 16, 16, 16, 16, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2415 14, 16, 16, 14, 16, 15, 15, 12, 16, 16, 16, 14, 15, 14, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2416 14, 16, 16, 14, 16, 14, 16, 11, 16, 16, 16, 14, 16, 14, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2417 6, 11, 10, 10, 10, 10, 11, 10, 10, 11, 9, 9, 9, 9, 9, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2418 9, 12, 12, 11, 13, 11, 13, 11, 12, 12, 11, 11, 12, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2419 12, 14, 16, 13, 16, 14, 16, 13, 15, 14, 15, 12, 15, 13, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2420 8, 12, 11, 11, 12, 12, 12, 11, 11, 12, 10, 10, 11, 11, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2421 9, 12, 12, 11, 13, 12, 13, 11, 13, 12, 11, 10, 12, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2422 12, 14, 15, 12, 15, 14, 15, 12, 15, 14, 14, 12, 14, 13, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2423 11, 15, 13, 13, 15, 14, 14, 13, 14, 15, 11, 11, 14, 14, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2424 11, 14, 13, 12, 15, 14, 14, 12, 14, 14, 12, 11, 14, 13, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2425 13, 15, 15, 12, 16, 15, 15, 12, 15, 15, 14, 11, 15, 14, 14, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2426 8, 12, 12, 11, 11, 11, 12, 11, 11, 12, 11, 11, 10, 10, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2427 9, 13, 13, 12, 13, 11, 13, 11, 12, 13, 12, 11, 11, 10, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2428 12, 14, 15, 14, 15, 13, 15, 12, 15, 14, 14, 13, 14, 12, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2429 9, 13, 12, 12, 12, 12, 12, 11, 12, 13, 11, 11, 11, 11, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2430 9, 12, 12, 11, 12, 11, 12, 10, 12, 12, 11, 10, 11, 10, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2431 11, 13, 14, 12, 14, 12, 14, 11, 14, 13, 13, 11, 13, 11, 12, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2432 12, 15, 14, 13, 15, 14, 14, 13, 15, 15, 13, 12, 13, 13, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2433 11, 14, 13, 12, 14, 13, 13, 11, 14, 14, 12, 11, 13, 12, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2434 11, 14, 14, 12, 14, 13, 14, 11, 14, 14, 13, 11, 13, 12, 12, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2435 11, 15, 15, 14, 13, 13, 14, 13, 14, 15, 14, 13, 11, 11, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2436 12, 15, 15, 14, 14, 12, 14, 12, 14, 14, 14, 13, 12, 11, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2437 13, 16, 16, 15, 15, 12, 16, 13, 16, 15, 15, 14, 14, 12, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2438 12, 15, 15, 14, 14, 14, 14, 13, 15, 15, 14, 13, 12, 12, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2439 11, 14, 14, 13, 13, 12, 13, 11, 14, 13, 13, 12, 12, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2440 12, 14, 15, 13, 14, 12, 14, 11, 15, 14, 13, 12, 13, 11, 12, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2441 13, 16, 16, 15, 16, 15, 15, 14, 16, 16, 15, 14, 14, 14, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2442 12, 15, 14, 13, 14, 13, 14, 12, 15, 14, 13, 12, 13, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2443 12, 14, 14, 13, 15, 13, 14, 11, 14, 14, 13, 12, 13, 12, 12, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2444 10, 14, 14, 13, 14, 14, 14, 13, 12, 13, 12, 12, 12, 12, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2445 12, 15, 15, 14, 15, 14, 16, 14, 14, 14, 13, 12, 14, 13, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2446 14, 16, 16, 16, 16, 16, 16, 15, 16, 16, 16, 14, 16, 14, 16, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2447 11, 15, 14, 14, 15, 14, 14, 14, 13, 14, 11, 12, 13, 13, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2448 12, 15, 14, 14, 15, 14, 15, 13, 14, 14, 13, 12, 14, 13, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2449 13, 16, 16, 14, 16, 15, 16, 14, 16, 15, 15, 12, 16, 14, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2450 13, 16, 14, 15, 16, 16, 16, 14, 14, 16, 11, 12, 15, 14, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2451 13, 16, 15, 14, 16, 15, 16, 14, 15, 15, 12, 11, 15, 14, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2452 14, 16, 16, 13, 16, 16, 16, 14, 16, 15, 13, 11, 16, 14, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2453 11, 15, 15, 14, 14, 14, 14, 13, 13, 14, 13, 13, 11, 11, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2454 12, 15, 15, 14, 15, 14, 15, 13, 14, 14, 13, 13, 13, 12, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2455 13, 16, 16, 16, 16, 14, 16, 14, 16, 15, 16, 14, 15, 12, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2456 11, 15, 14, 14, 15, 14, 14, 13, 14, 14, 12, 12, 12, 12, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2457 11, 14, 14, 13, 14, 13, 13, 12, 13, 13, 12, 11, 12, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2458 12, 14, 15, 13, 15, 13, 14, 13, 14, 14, 13, 12, 13, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2459 13, 16, 15, 15, 16, 15, 15, 14, 15, 16, 12, 12, 14, 14, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2460 12, 15, 14, 13, 15, 13, 14, 12, 14, 14, 12, 11, 13, 12, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2461 12, 14, 14, 13, 15, 13, 14, 12, 15, 14, 13, 10, 13, 12, 12, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2462 12, 16, 16, 15, 14, 14, 15, 14, 13, 15, 14, 14, 10, 11, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2463 13, 16, 16, 15, 15, 14, 15, 14, 15, 15, 15, 14, 12, 11, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2464 14, 16, 16, 16, 16, 14, 16, 14, 16, 15, 15, 14, 14, 11, 14, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2465 12, 16, 16, 15, 15, 14, 15, 14, 14, 16, 14, 14, 12, 12, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2466 11, 14, 14, 13, 14, 13, 14, 12, 14, 14, 13, 12, 12, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2467 12, 14, 15, 13, 14, 13, 14, 12, 14, 14, 13, 12, 13, 11, 12, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2468 14, 16, 16, 16, 16, 16, 15, 14, 16, 16, 14, 13, 13, 13, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2469 12, 15, 15, 13, 15, 13, 14, 12, 14, 14, 13, 12, 13, 12, 10, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2470 11, 14, 13, 12, 14, 12, 13, 10, 14, 13, 12, 10, 12, 10, 10, 4,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2471 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2472 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2473 4, 6, 6, 6, 6, 6, 7, 6, 6, 7, 6, 6, 6, 6, 6, 3,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2474 6, 9, 10, 9, 10, 9, 11, 9, 10, 10, 10, 9, 10, 9, 10, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2475 10, 11, 14, 11, 14, 11, 14, 11, 14, 13, 14, 11, 14, 11, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2476 6, 10, 9, 9, 10, 10, 10, 9, 10, 11, 9, 9, 10, 10, 9, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2477 8, 11, 11, 9, 12, 11, 12, 10, 12, 12, 11, 10, 12, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2478 11, 13, 14, 11, 15, 13, 15, 11, 15, 14, 14, 11, 15, 13, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2479 10, 13, 11, 11, 14, 14, 13, 11, 14, 14, 11, 11, 13, 13, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2480 11, 14, 12, 11, 15, 14, 14, 11, 15, 15, 13, 11, 14, 14, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2481 12, 14, 13, 10, 16, 15, 16, 11, 16, 16, 14, 11, 16, 14, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2482 6, 10, 10, 10, 9, 9, 10, 9, 10, 11, 10, 10, 9, 9, 9, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2483 8, 11, 12, 11, 11, 10, 12, 10, 12, 12, 12, 11, 11, 10, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2484 11, 13, 15, 13, 14, 11, 15, 11, 15, 14, 14, 13, 14, 12, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2485 8, 12, 12, 12, 12, 12, 12, 11, 12, 13, 11, 11, 11, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2486 9, 12, 12, 11, 12, 12, 13, 11, 13, 13, 12, 11, 12, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2487 11, 14, 15, 13, 14, 13, 15, 11, 15, 15, 14, 13, 15, 13, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2488 12, 16, 14, 14, 15, 15, 14, 12, 15, 16, 14, 13, 14, 14, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2489 11, 15, 14, 13, 15, 14, 15, 12, 15, 16, 14, 13, 15, 14, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2490 13, 15, 15, 12, 16, 15, 16, 12, 16, 16, 15, 13, 15, 14, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2491 10, 14, 14, 14, 11, 11, 13, 11, 14, 14, 14, 13, 11, 11, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2492 11, 14, 15, 14, 13, 11, 14, 12, 15, 15, 15, 14, 13, 11, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2493 13, 14, 16, 15, 14, 11, 16, 12, 16, 16, 16, 14, 15, 12, 15, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2494 12, 16, 15, 15, 14, 14, 14, 12, 16, 16, 14, 14, 14, 13, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2495 12, 15, 15, 14, 14, 13, 14, 12, 15, 16, 14, 14, 14, 13, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2496 13, 16, 16, 14, 16, 13, 16, 12, 16, 16, 16, 14, 16, 13, 15, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2497 14, 16, 16, 16, 16, 16, 15, 14, 16, 16, 16, 16, 16, 16, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2498 13, 16, 16, 15, 16, 16, 16, 13, 16, 16, 16, 15, 16, 15, 14, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2499 14, 16, 16, 14, 16, 14, 16, 12, 16, 16, 16, 15, 16, 15, 15, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2500 6, 10, 10, 10, 10, 10, 11, 10, 9, 10, 9, 9, 9, 9, 9, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2501 9, 12, 12, 11, 12, 11, 13, 11, 12, 12, 11, 10, 12, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2502 12, 14, 15, 14, 15, 14, 16, 13, 15, 14, 14, 12, 15, 13, 14, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2503 8, 12, 11, 11, 12, 12, 12, 11, 11, 12, 10, 10, 11, 11, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2504 9, 12, 12, 11, 13, 12, 13, 11, 12, 13, 11, 10, 12, 12, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2505 11, 14, 14, 13, 15, 14, 15, 13, 15, 14, 14, 12, 15, 13, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2506 11, 15, 12, 13, 15, 15, 14, 13, 14, 15, 11, 11, 14, 14, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2507 11, 14, 13, 13, 15, 14, 15, 13, 15, 15, 13, 11, 15, 14, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2508 13, 15, 15, 12, 16, 15, 16, 13, 16, 15, 14, 11, 16, 15, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2509 8, 12, 12, 11, 11, 11, 12, 11, 11, 12, 11, 11, 9, 10, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2510 9, 12, 13, 12, 12, 11, 13, 11, 12, 13, 12, 12, 11, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2511 12, 14, 15, 14, 15, 13, 16, 13, 15, 14, 15, 13, 14, 12, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2512 9, 13, 12, 12, 12, 12, 13, 12, 12, 13, 11, 11, 11, 11, 10, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2513 9, 12, 12, 12, 12, 12, 13, 11, 12, 13, 11, 11, 12, 11, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2514 11, 13, 14, 13, 14, 13, 15, 12, 14, 14, 14, 12, 14, 12, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2515 12, 15, 14, 14, 15, 15, 14, 13, 15, 16, 13, 13, 14, 14, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2516 11, 14, 13, 13, 14, 14, 14, 12, 14, 15, 13, 12, 14, 13, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2517 11, 14, 14, 13, 15, 14, 15, 12, 15, 15, 14, 12, 14, 13, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2518 11, 14, 14, 14, 13, 13, 14, 13, 13, 14, 14, 13, 11, 11, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2519 11, 15, 15, 14, 14, 13, 15, 13, 14, 15, 14, 14, 13, 11, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2520 13, 16, 16, 16, 15, 13, 16, 13, 16, 16, 16, 15, 15, 12, 15, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2521 11, 15, 15, 15, 14, 14, 14, 13, 15, 15, 14, 14, 13, 13, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2522 11, 14, 14, 13, 13, 13, 14, 12, 14, 14, 13, 13, 13, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2523 12, 15, 15, 14, 15, 13, 15, 12, 15, 15, 14, 13, 14, 12, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2524 13, 16, 16, 16, 16, 16, 16, 14, 16, 16, 15, 15, 15, 15, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2525 12, 15, 15, 14, 15, 14, 15, 13, 15, 16, 14, 13, 14, 14, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2526 12, 15, 15, 14, 15, 14, 15, 12, 15, 15, 14, 13, 14, 13, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2527 10, 14, 13, 13, 14, 13, 14, 13, 11, 13, 11, 11, 11, 11, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2528 12, 15, 16, 14, 15, 14, 16, 14, 14, 14, 14, 13, 14, 13, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2529 14, 16, 16, 16, 16, 16, 16, 16, 16, 15, 16, 13, 16, 14, 16, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2530 11, 15, 14, 14, 15, 14, 15, 14, 13, 14, 11, 12, 13, 13, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2531 12, 15, 15, 14, 15, 15, 16, 14, 14, 14, 13, 12, 14, 13, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2532 13, 16, 16, 15, 16, 16, 16, 15, 16, 15, 15, 12, 16, 14, 15, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2533 12, 16, 14, 15, 16, 16, 16, 14, 14, 16, 11, 12, 14, 15, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2534 13, 16, 15, 14, 16, 16, 16, 14, 15, 16, 13, 12, 15, 15, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2535 14, 16, 16, 14, 16, 16, 16, 15, 16, 16, 14, 12, 16, 15, 15, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2536 11, 14, 14, 14, 14, 14, 14, 13, 12, 14, 13, 13, 11, 11, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2537 11, 15, 15, 14, 14, 14, 16, 14, 14, 14, 14, 13, 13, 12, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2538 13, 16, 16, 16, 16, 15, 16, 15, 16, 15, 16, 14, 15, 13, 15, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2539 11, 15, 15, 14, 14, 14, 15, 14, 14, 15, 13, 13, 12, 13, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2540 11, 14, 14, 13, 14, 14, 14, 13, 13, 14, 13, 12, 13, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2541 12, 15, 15, 14, 16, 14, 16, 14, 15, 15, 15, 13, 14, 13, 14, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2542 13, 16, 15, 16, 16, 16, 16, 15, 15, 16, 13, 13, 14, 14, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2543 12, 15, 14, 14, 15, 15, 15, 13, 14, 15, 13, 12, 14, 13, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2544 12, 15, 14, 14, 15, 15, 15, 13, 15, 15, 14, 12, 14, 13, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2545 12, 16, 15, 15, 13, 14, 15, 14, 13, 15, 14, 14, 10, 11, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2546 12, 16, 16, 15, 15, 14, 16, 14, 15, 15, 15, 14, 13, 12, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2547 14, 16, 16, 16, 16, 14, 16, 15, 16, 15, 16, 15, 14, 12, 15, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2548 12, 16, 15, 15, 15, 15, 15, 14, 15, 16, 14, 14, 12, 13, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2549 11, 15, 15, 14, 14, 14, 15, 13, 14, 15, 14, 13, 13, 12, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2550 12, 15, 15, 14, 15, 14, 15, 13, 15, 15, 14, 13, 14, 12, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2551 14, 16, 16, 16, 16, 16, 16, 15, 16, 16, 14, 14, 14, 14, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2552 12, 15, 15, 14, 15, 15, 15, 13, 15, 15, 14, 13, 14, 13, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2553 11, 14, 14, 13, 14, 13, 14, 12, 13, 14, 13, 12, 13, 12, 12, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2554 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2555 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2556 2, 6, 6, 5, 6, 6, 7, 6, 6, 7, 6, 6, 6, 6, 6, 3,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2557 6, 9, 10, 9, 10, 9, 11, 9, 10, 10, 10, 9, 10, 9, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2558 10, 11, 14, 11, 14, 11, 14, 11, 14, 13, 14, 12, 14, 12, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2559 6, 10, 9, 9, 10, 10, 10, 9, 10, 11, 9, 9, 10, 10, 9, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2560 8, 11, 11, 9, 12, 11, 12, 10, 12, 12, 11, 10, 12, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2561 11, 13, 14, 11, 16, 13, 15, 12, 16, 14, 14, 12, 15, 13, 14, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2562 10, 13, 11, 11, 14, 14, 13, 11, 13, 14, 11, 11, 13, 13, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2563 11, 13, 13, 11, 15, 14, 14, 12, 15, 15, 13, 12, 15, 14, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2564 12, 14, 14, 11, 16, 15, 16, 12, 16, 16, 15, 12, 16, 15, 15, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2565 6, 10, 10, 10, 9, 9, 10, 9, 10, 11, 10, 10, 9, 9, 9, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2566 8, 11, 12, 11, 11, 10, 12, 10, 12, 12, 12, 11, 11, 10, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2567 12, 13, 16, 13, 14, 11, 16, 12, 16, 15, 15, 13, 14, 12, 14, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2568 9, 13, 12, 12, 12, 12, 12, 11, 13, 13, 12, 12, 12, 12, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2569 10, 13, 13, 12, 13, 12, 13, 11, 14, 14, 13, 12, 13, 12, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2570 12, 14, 16, 13, 15, 13, 15, 12, 16, 16, 16, 13, 16, 14, 14, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2571 12, 16, 14, 14, 16, 15, 14, 13, 16, 16, 14, 14, 15, 15, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2572 12, 16, 15, 14, 16, 15, 15, 12, 16, 16, 15, 14, 16, 15, 14, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2573 14, 16, 16, 14, 16, 15, 16, 13, 16, 16, 16, 14, 16, 16, 15, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2574 10, 14, 14, 13, 11, 11, 13, 12, 14, 14, 13, 13, 11, 11, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2575 12, 14, 16, 14, 13, 11, 14, 12, 16, 15, 15, 14, 14, 12, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2576 13, 14, 16, 15, 14, 11, 16, 12, 16, 16, 16, 15, 16, 13, 15, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2577 12, 16, 15, 15, 14, 14, 14, 13, 16, 16, 15, 15, 14, 14, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2578 13, 16, 16, 15, 14, 14, 15, 13, 16, 16, 16, 15, 15, 14, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2579 14, 16, 16, 15, 16, 14, 16, 13, 16, 16, 16, 15, 16, 14, 15, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2580 15, 16, 16, 16, 16, 16, 16, 14, 16, 16, 16, 16, 16, 16, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2581 15, 16, 16, 16, 16, 16, 16, 13, 16, 16, 16, 16, 16, 16, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2582 15, 16, 16, 15, 16, 15, 16, 13, 16, 16, 16, 16, 16, 16, 16, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2583 6, 10, 10, 10, 10, 10, 11, 10, 9, 10, 9, 9, 9, 9, 9, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2584 9, 12, 13, 12, 13, 12, 14, 12, 12, 12, 12, 11, 12, 11, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2585 12, 14, 16, 14, 16, 14, 16, 14, 15, 14, 15, 13, 16, 13, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2586 8, 12, 11, 11, 12, 12, 12, 11, 11, 12, 10, 10, 11, 11, 10, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2587 10, 13, 13, 12, 14, 13, 14, 12, 13, 13, 12, 11, 13, 12, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2588 12, 15, 15, 13, 16, 15, 16, 14, 16, 15, 15, 12, 16, 14, 15, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2589 11, 15, 13, 13, 16, 15, 14, 13, 14, 15, 11, 12, 14, 14, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2590 12, 16, 14, 13, 16, 16, 16, 14, 16, 15, 13, 12, 15, 15, 14, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2591 14, 16, 16, 14, 16, 16, 16, 14, 16, 16, 15, 13, 16, 16, 15, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2592 8, 12, 12, 12, 11, 11, 12, 11, 11, 12, 11, 11, 9, 10, 10, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2593 10, 13, 14, 13, 13, 12, 14, 12, 13, 13, 13, 12, 12, 11, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2594 13, 15, 16, 15, 16, 14, 16, 14, 16, 15, 16, 14, 15, 13, 15, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2595 10, 13, 13, 13, 13, 13, 13, 12, 13, 14, 12, 12, 12, 12, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2596 10, 13, 13, 13, 13, 13, 14, 12, 13, 14, 13, 12, 12, 12, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2597 12, 15, 15, 14, 16, 14, 16, 13, 16, 15, 15, 13, 15, 13, 14, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2598 13, 16, 15, 15, 16, 16, 15, 14, 16, 16, 13, 14, 15, 15, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2599 12, 16, 14, 14, 16, 16, 15, 13, 16, 16, 14, 13, 15, 14, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2600 13, 16, 16, 14, 16, 15, 16, 13, 16, 16, 16, 13, 16, 15, 15, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2601 11, 15, 15, 14, 13, 13, 14, 13, 13, 15, 14, 14, 11, 12, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2602 12, 15, 16, 15, 14, 13, 16, 14, 16, 15, 16, 14, 13, 12, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2603 14, 16, 16, 16, 16, 14, 16, 14, 16, 16, 16, 16, 16, 13, 16, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2604 12, 16, 16, 16, 15, 15, 15, 14, 15, 16, 14, 14, 13, 14, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2605 12, 16, 16, 15, 15, 14, 16, 13, 16, 16, 15, 14, 14, 13, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2606 13, 16, 16, 15, 16, 14, 16, 13, 16, 16, 16, 15, 16, 14, 15, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2607 15, 16, 16, 16, 16, 16, 16, 15, 16, 16, 16, 16, 16, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2608 14, 16, 16, 16, 16, 16, 16, 14, 16, 16, 16, 15, 16, 15, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2609 14, 16, 16, 15, 16, 16, 16, 13, 16, 16, 16, 15, 16, 15, 14, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2610 10, 14, 13, 13, 13, 13, 14, 13, 11, 13, 11, 11, 11, 11, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2611 12, 15, 16, 15, 16, 15, 16, 14, 14, 14, 14, 13, 14, 13, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2612 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14, 16, 14, 16, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2613 11, 15, 14, 14, 15, 15, 15, 14, 13, 14, 11, 12, 13, 13, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2614 13, 16, 15, 15, 16, 16, 16, 15, 15, 15, 13, 12, 15, 14, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2615 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 13, 16, 16, 16, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2616 13, 16, 14, 15, 16, 16, 16, 15, 14, 16, 11, 12, 15, 15, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2617 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 13, 13, 16, 16, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2618 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 13, 16, 16, 16, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2619 11, 15, 15, 14, 13, 14, 14, 14, 13, 14, 13, 13, 11, 12, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2620 12, 16, 16, 16, 16, 15, 16, 15, 15, 15, 15, 14, 13, 12, 14, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2621 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 15, 16, 14, 16, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2622 12, 16, 15, 15, 16, 16, 16, 14, 14, 15, 13, 13, 13, 13, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2623 12, 16, 16, 15, 15, 15, 16, 14, 14, 15, 14, 13, 14, 13, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2624 14, 16, 16, 16, 16, 16, 16, 15, 16, 16, 16, 14, 16, 14, 15, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2625 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14, 14, 15, 15, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2626 13, 16, 16, 15, 16, 16, 16, 14, 16, 16, 14, 13, 16, 14, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2627 14, 16, 16, 16, 16, 16, 16, 15, 16, 16, 16, 14, 16, 14, 15, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2628 12, 16, 16, 15, 14, 15, 16, 14, 13, 15, 14, 14, 11, 12, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2629 13, 16, 16, 16, 16, 15, 16, 16, 16, 16, 16, 15, 13, 12, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2630 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 13, 16, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2631 14, 16, 16, 16, 16, 16, 16, 15, 16, 16, 15, 15, 13, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2632 13, 16, 16, 16, 16, 16, 16, 15, 16, 16, 16, 14, 14, 13, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2633 14, 16, 16, 16, 16, 16, 16, 15, 16, 16, 16, 15, 15, 14, 14, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2634 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 15, 16, 15, 16, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2635 14, 16, 16, 16, 16, 16, 16, 14, 16, 16, 15, 14, 15, 14, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2636 12, 15, 15, 14, 15, 14, 16, 14, 14, 16, 15, 13, 14, 13, 13, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2637 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2638 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2639 2, 5, 5, 5, 5, 5, 6, 6, 5, 6, 5, 6, 5, 6, 6, 4,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2640 6, 8, 10, 8, 10, 9, 11, 9, 10, 10, 10, 9, 10, 9, 10, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2641 10, 11, 13, 11, 13, 11, 14, 11, 14, 13, 13, 12, 13, 12, 13, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2642 6, 10, 8, 9, 10, 10, 10, 9, 10, 11, 9, 9, 10, 10, 9, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2643 8, 11, 11, 10, 12, 11, 12, 10, 12, 12, 11, 10, 12, 12, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2644 11, 13, 14, 11, 15, 14, 15, 12, 16, 14, 14, 12, 15, 14, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2645 10, 13, 11, 11, 14, 13, 13, 12, 13, 14, 11, 11, 13, 13, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2646 11, 14, 13, 11, 16, 14, 14, 12, 15, 15, 14, 12, 15, 14, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2647 12, 14, 14, 11, 16, 16, 16, 13, 16, 16, 16, 13, 16, 16, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2648 6, 10, 10, 10, 8, 9, 10, 9, 10, 11, 10, 10, 9, 9, 9, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2649 8, 11, 12, 12, 11, 10, 12, 11, 12, 12, 12, 12, 12, 11, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2650 11, 13, 16, 14, 14, 12, 15, 12, 16, 15, 16, 14, 14, 13, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2651 9, 13, 12, 12, 12, 12, 12, 11, 13, 13, 12, 12, 12, 12, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2652 10, 13, 13, 12, 13, 12, 13, 11, 14, 14, 13, 13, 13, 13, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2653 13, 14, 16, 14, 15, 14, 16, 13, 16, 16, 16, 14, 16, 14, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2654 12, 16, 14, 14, 16, 15, 14, 13, 16, 16, 14, 14, 15, 15, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2655 13, 16, 15, 14, 16, 16, 15, 13, 16, 16, 15, 14, 16, 16, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2656 14, 16, 16, 14, 16, 16, 16, 14, 16, 16, 16, 16, 16, 16, 16, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2657 10, 13, 14, 13, 11, 11, 13, 12, 13, 14, 13, 13, 11, 12, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2658 11, 14, 15, 15, 13, 12, 14, 13, 16, 16, 16, 15, 14, 13, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2659 12, 14, 16, 16, 14, 12, 16, 13, 16, 16, 16, 16, 15, 13, 16, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2660 12, 16, 15, 16, 14, 15, 14, 14, 16, 16, 15, 16, 14, 14, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2661 13, 16, 16, 16, 16, 14, 16, 13, 16, 16, 16, 16, 16, 14, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2662 14, 16, 16, 16, 16, 14, 16, 14, 16, 16, 16, 16, 16, 15, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2663 15, 16, 16, 16, 16, 16, 16, 15, 16, 16, 16, 16, 16, 16, 15, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2664 16, 16, 16, 16, 16, 16, 16, 15, 16, 16, 16, 16, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2665 15, 16, 16, 16, 16, 16, 16, 14, 16, 16, 16, 16, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2666 6, 10, 10, 10, 10, 10, 10, 10, 8, 10, 9, 9, 8, 9, 9, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2667 9, 12, 13, 12, 13, 12, 13, 12, 12, 12, 12, 11, 12, 11, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2668 12, 14, 16, 14, 16, 14, 16, 14, 16, 15, 15, 14, 16, 14, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2669 8, 12, 11, 11, 12, 12, 12, 11, 11, 12, 10, 10, 11, 12, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2670 10, 13, 13, 12, 14, 13, 14, 12, 13, 13, 12, 11, 13, 13, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2671 13, 15, 16, 14, 16, 16, 16, 14, 16, 15, 15, 13, 16, 15, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2672 11, 15, 13, 13, 15, 15, 15, 14, 14, 14, 11, 12, 14, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2673 13, 16, 14, 14, 16, 16, 16, 14, 16, 15, 13, 13, 16, 14, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2674 14, 16, 16, 14, 16, 16, 16, 15, 16, 16, 16, 14, 16, 16, 16, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2675 8, 12, 12, 12, 11, 11, 12, 12, 11, 12, 11, 11, 9, 10, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2676 10, 13, 14, 13, 13, 12, 14, 13, 13, 13, 13, 13, 12, 11, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2677 13, 15, 16, 15, 16, 14, 16, 14, 16, 16, 16, 15, 16, 13, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2678 10, 14, 13, 13, 13, 13, 13, 13, 13, 14, 12, 12, 12, 12, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2679 10, 13, 13, 13, 13, 13, 14, 12, 13, 14, 13, 12, 13, 12, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2680 13, 16, 16, 14, 16, 15, 16, 14, 16, 16, 15, 14, 16, 14, 15, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2681 13, 16, 15, 16, 16, 16, 15, 14, 16, 16, 14, 14, 15, 15, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2682 13, 16, 15, 14, 16, 16, 16, 14, 16, 16, 14, 14, 15, 15, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2683 14, 16, 16, 15, 16, 16, 16, 14, 16, 16, 16, 15, 16, 16, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2684 11, 14, 15, 14, 13, 13, 14, 14, 13, 15, 14, 14, 11, 12, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2685 13, 16, 16, 16, 14, 14, 16, 14, 16, 16, 16, 15, 14, 13, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2686 14, 16, 16, 16, 16, 14, 16, 16, 16, 16, 16, 16, 16, 14, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2687 13, 16, 16, 16, 15, 16, 15, 15, 16, 16, 15, 16, 14, 14, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2688 13, 16, 16, 15, 15, 14, 16, 14, 16, 16, 16, 15, 14, 14, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2689 14, 16, 16, 16, 16, 16, 16, 15, 16, 16, 16, 16, 16, 15, 16, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2690 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2691 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2692 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2693 9, 13, 13, 13, 13, 13, 14, 13, 10, 12, 11, 12, 11, 12, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2694 12, 15, 16, 15, 16, 16, 16, 16, 14, 14, 14, 13, 14, 13, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2695 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 15, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2696 11, 15, 14, 14, 15, 14, 15, 14, 13, 14, 11, 12, 13, 13, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2697 13, 16, 16, 15, 16, 16, 16, 15, 15, 15, 14, 13, 16, 15, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2698 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2699 12, 16, 14, 15, 16, 16, 16, 16, 14, 16, 11, 13, 15, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2700 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14, 14, 16, 16, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2701 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2702 11, 15, 14, 14, 13, 14, 15, 14, 12, 14, 13, 13, 11, 12, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2703 13, 16, 16, 16, 16, 15, 16, 16, 15, 15, 15, 15, 14, 13, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2704 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 15, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2705 13, 16, 16, 16, 16, 16, 16, 15, 14, 16, 13, 14, 13, 14, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2706 13, 16, 16, 16, 16, 16, 16, 15, 15, 16, 15, 14, 14, 14, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2707 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2708 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14, 15, 16, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2709 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14, 14, 16, 16, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2710 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2711 11, 16, 16, 15, 13, 15, 16, 15, 13, 15, 15, 15, 11, 12, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2712 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14, 14, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2713 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2714 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 15, 16, 14, 14, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2715 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14, 14, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2716 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 15, 16, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2717 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 15, 16, 14, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2718 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 15, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2719 12, 14, 14, 14, 14, 15, 16, 14, 14, 16, 15, 14, 14, 15, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2720 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2721 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2722 1, 5, 5, 6, 5, 6, 7, 7, 5, 7, 6, 7, 5, 6, 6, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2723 6, 9, 10, 9, 10, 9, 11, 10, 11, 11, 11, 10, 11, 10, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2724 10, 11, 14, 12, 14, 12, 16, 12, 16, 13, 16, 13, 14, 13, 16, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2725 6, 10, 9, 9, 10, 11, 11, 10, 10, 11, 9, 10, 10, 11, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2726 8, 11, 11, 10, 13, 12, 13, 12, 13, 13, 12, 12, 13, 13, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2727 11, 13, 16, 12, 16, 16, 16, 13, 16, 16, 16, 14, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2728 10, 14, 11, 12, 14, 14, 13, 13, 13, 16, 12, 13, 14, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2729 11, 14, 13, 12, 16, 16, 16, 14, 16, 16, 14, 14, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2730 12, 14, 16, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2731 6, 10, 10, 11, 9, 9, 11, 10, 10, 11, 11, 11, 9, 10, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2732 9, 12, 13, 12, 12, 11, 13, 12, 13, 13, 13, 13, 12, 12, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2733 12, 13, 16, 16, 16, 13, 16, 14, 16, 16, 16, 16, 16, 14, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2734 9, 13, 13, 13, 13, 13, 13, 13, 13, 14, 13, 13, 13, 13, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2735 10, 14, 14, 13, 14, 13, 14, 13, 16, 16, 14, 15, 14, 14, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2736 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2737 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2738 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2739 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2740 10, 14, 14, 16, 11, 12, 14, 13, 14, 16, 16, 16, 12, 13, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2741 12, 16, 16, 16, 13, 13, 16, 14, 16, 16, 16, 16, 16, 14, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2742 13, 16, 16, 16, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2743 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2744 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2745 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2746 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2747 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2748 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2749 6, 10, 10, 10, 10, 11, 11, 11, 9, 11, 9, 10, 9, 10, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2750 9, 13, 13, 13, 13, 13, 14, 13, 12, 13, 13, 12, 13, 12, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2751 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2752 8, 13, 12, 12, 13, 13, 13, 13, 11, 13, 10, 12, 12, 13, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2753 10, 14, 13, 13, 16, 16, 16, 14, 14, 14, 13, 13, 14, 14, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2754 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2755 11, 16, 13, 16, 16, 16, 16, 16, 14, 16, 12, 13, 16, 16, 14, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2756 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2757 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2758 8, 13, 13, 13, 11, 12, 13, 13, 11, 13, 12, 13, 10, 12, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2759 10, 14, 16, 16, 14, 13, 16, 14, 14, 16, 16, 14, 13, 13, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2760 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2761 10, 16, 14, 16, 14, 14, 14, 14, 13, 16, 13, 14, 13, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2762 10, 14, 14, 14, 14, 16, 16, 14, 14, 16, 14, 14, 14, 14, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2763 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2764 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2765 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2766 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2767 11, 16, 16, 16, 13, 16, 16, 16, 14, 16, 16, 16, 12, 14, 14, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2768 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2769 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2770 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2771 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2772 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2773 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2774 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2775 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2776 9, 14, 13, 14, 13, 14, 16, 16, 11, 13, 12, 13, 11, 13, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2777 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2778 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2779 11, 16, 14, 16, 16, 16, 16, 16, 13, 16, 12, 13, 14, 16, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2780 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2781 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2782 12, 16, 16, 16, 16, 16, 16, 16, 14, 16, 12, 16, 16, 16, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2783 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2784 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2785 11, 16, 16, 16, 14, 16, 16, 16, 13, 16, 14, 16, 12, 13, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2786 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2787 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2788 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14, 16, 16, 16, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2789 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2790 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2791 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2792 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2793 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2794 11, 16, 16, 16, 14, 16, 16, 16, 14, 16, 16, 16, 12, 16, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2795 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2796 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2797 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2798 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2799 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2800 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2801 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2802 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2803 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2804 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2805 1, 5, 5, 6, 5, 6, 7, 8, 5, 7, 6, 8, 6, 7, 7, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2806 5, 9, 10, 10, 10, 10, 12, 11, 10, 11, 11, 11, 10, 11, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2807 9, 11, 13, 12, 13, 12, 16, 14, 16, 14, 16, 16, 16, 13, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2808 5, 10, 9, 10, 10, 11, 11, 11, 10, 11, 9, 11, 10, 11, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2809 8, 11, 11, 11, 12, 13, 13, 13, 12, 13, 12, 12, 13, 13, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2810 11, 13, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2811 9, 14, 11, 12, 14, 16, 13, 14, 13, 16, 12, 14, 16, 16, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2812 11, 16, 13, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2813 11, 14, 14, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2814 5, 10, 11, 11, 9, 10, 11, 11, 10, 12, 11, 12, 9, 11, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2815 8, 12, 13, 13, 11, 11, 14, 13, 13, 14, 13, 16, 12, 12, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2816 11, 13, 16, 16, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2817 9, 13, 12, 13, 12, 13, 13, 14, 13, 16, 13, 16, 13, 16, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2818 10, 14, 13, 14, 13, 13, 16, 14, 16, 16, 16, 16, 16, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2819 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2820 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2821 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2822 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2823 9, 14, 16, 16, 11, 12, 14, 16, 13, 16, 16, 16, 12, 14, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2824 11, 16, 16, 16, 13, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2825 12, 16, 16, 16, 14, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2826 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2827 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2828 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2829 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2830 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2831 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2832 5, 10, 10, 11, 10, 11, 12, 12, 8, 11, 10, 11, 9, 11, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2833 9, 12, 13, 13, 13, 13, 16, 16, 12, 13, 13, 13, 13, 13, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2834 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2835 8, 13, 11, 13, 12, 13, 13, 14, 11, 13, 10, 13, 12, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2836 10, 14, 13, 14, 16, 16, 16, 16, 13, 16, 13, 14, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2837 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2838 11, 16, 13, 16, 16, 16, 16, 16, 13, 16, 12, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2839 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2840 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2841 8, 13, 13, 13, 11, 13, 14, 16, 11, 13, 13, 14, 10, 12, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2842 10, 14, 16, 16, 13, 16, 16, 16, 13, 16, 16, 16, 13, 13, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2843 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2844 10, 16, 14, 16, 13, 16, 16, 16, 13, 16, 13, 16, 13, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2845 10, 16, 16, 16, 14, 16, 16, 16, 14, 16, 16, 16, 13, 16, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2846 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2847 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2848 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2849 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2850 10, 16, 16, 16, 13, 16, 16, 16, 14, 16, 16, 16, 12, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2851 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2852 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2853 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2854 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2855 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2856 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2857 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2858 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2859 9, 14, 13, 16, 13, 16, 16, 16, 10, 14, 12, 14, 11, 13, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2860 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2861 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2862 11, 16, 16, 16, 16, 16, 16, 16, 12, 16, 12, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2863 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2864 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2865 11, 16, 16, 16, 16, 16, 16, 16, 13, 16, 13, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2866 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2867 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2868 10, 16, 16, 16, 14, 16, 16, 16, 12, 16, 16, 16, 12, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2869 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2870 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2871 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2872 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2873 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2874 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2875 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2876 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2877 11, 16, 16, 16, 14, 16, 16, 16, 14, 16, 16, 16, 12, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2878 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2879 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2880 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2881 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2882 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2883 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2884 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2885 10, 16, 16, 16, 16, 16, 16, 16, 14, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2886 }
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2887 };
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2888
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2889
5996
9319837c5d02 Rename some tables
kostya
parents: 5981
diff changeset
2890 static const uint8_t rv34_inter_cbp[NUM_INTER_TABLES][4][CBP_VLC_SIZE] = {
5965
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2891 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2892 { 0, 6, 6, 3, 6, 4, 5, 3, 6, 5, 4, 3, 3, 4, 4, 3 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2893 { 0, 6, 6, 4, 6, 4, 5, 3, 6, 5, 4, 3, 4, 4, 4, 2 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2894 { 0, 7, 7, 4, 7, 5, 5, 4, 7, 5, 5, 4, 5, 4, 4, 1 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2895 { 0, 7, 7, 5, 7, 5, 6, 4, 7, 6, 5, 3, 5, 4, 4, 1 }
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2896 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2897 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2898 { 0, 6, 6, 3, 6, 3, 5, 4, 6, 5, 3, 4, 3, 4, 4, 3 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2899 { 0, 6, 6, 4, 6, 4, 4, 4, 6, 4, 4, 3, 4, 4, 4, 2 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2900 { 0, 6, 6, 4, 6, 4, 5, 4, 6, 5, 4, 3, 4, 4, 3, 2 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2901 { 0, 7, 7, 5, 7, 5, 6, 4, 7, 6, 5, 3, 5, 4, 4, 1 }
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2902 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2903 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2904 { 0, 6, 6, 3, 6, 3, 5, 4, 6, 5, 3, 4, 3, 4, 4, 3 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2905 { 0, 5, 5, 3, 5, 4, 5, 4, 5, 5, 4, 4, 4, 4, 4, 2 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2906 { 0, 6, 6, 4, 6, 4, 5, 3, 6, 5, 4, 3, 4, 4, 4, 2 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2907 { 0, 7, 7, 5, 7, 5, 6, 4, 7, 6, 5, 3, 5, 4, 4, 1 }
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2908 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2909 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2910 { 0, 6, 6, 3, 6, 3, 5, 4, 6, 5, 3, 4, 3, 4, 4, 3 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2911 { 0, 5, 5, 3, 5, 4, 5, 4, 5, 5, 4, 4, 4, 4, 4, 2 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2912 { 0, 6, 6, 4, 6, 4, 5, 3, 6, 5, 4, 3, 4, 4, 4, 2 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2913 { 0, 7, 7, 4, 7, 5, 6, 4, 7, 6, 5, 4, 4, 4, 4, 1 }
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2914 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2915 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2916 { 0, 5, 5, 3, 5, 3, 5, 4, 5, 5, 3, 4, 3, 4, 4, 4 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2917 { 0, 5, 5, 3, 5, 4, 5, 4, 5, 5, 3, 4, 3, 4, 4, 3 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2918 { 0, 6, 6, 4, 6, 4, 5, 4, 6, 5, 4, 3, 4, 4, 3, 2 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2919 { 0, 7, 7, 4, 7, 5, 6, 4, 7, 6, 5, 4, 4, 4, 4, 1 }
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2920 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2921 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2922 { 0, 5, 5, 3, 5, 3, 5, 4, 5, 5, 3, 4, 3, 4, 4, 4 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2923 { 0, 5, 5, 3, 5, 4, 5, 4, 5, 5, 3, 4, 3, 4, 4, 3 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2924 { 0, 5, 5, 3, 5, 4, 4, 4, 5, 4, 4, 4, 3, 4, 4, 3 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2925 { 0, 6, 6, 4, 6, 4, 5, 4, 6, 5, 4, 3, 4, 4, 3, 2 }
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2926 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2927 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2928 { 0, 4, 4, 3, 4, 3, 5, 5, 4, 5, 3, 5, 3, 5, 4, 5 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2929 { 0, 4, 4, 3, 4, 4, 5, 4, 4, 5, 3, 5, 3, 5, 4, 4 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2930 { 0, 4, 4, 3, 4, 4, 5, 4, 4, 5, 4, 4, 3, 4, 4, 4 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2931 { 0, 4, 4, 3, 5, 4, 5, 4, 5, 5, 4, 4, 3, 4, 4, 3 }
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2932 }
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2933 };
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2934
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2935
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2936 static const uint8_t rv34_table_inter_firstpat[NUM_INTER_TABLES][2][FIRSTBLK_VLC_SIZE] = {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2937 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2938 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2939 0, 7, 5, 7, 5, 7, 6, 6, 7, 10, 7, 9, 8, 9, 8, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2940 12, 14, 11, 12, 12, 12, 11, 9, 6, 9, 6, 8, 7, 9, 7, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2941 8, 11, 8, 9, 9, 10, 9, 8, 13, 15, 12, 12, 12, 13, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2942 10, 13, 9, 10, 11, 12, 9, 8, 12, 14, 10, 11, 12, 13, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2943 16, 16, 12, 12, 14, 13, 11, 9, 6, 9, 7, 9, 7, 9, 8, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2944 9, 11, 9, 10, 9, 10, 9, 8, 14, 16, 12, 12, 13, 13, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2945 8, 11, 8, 10, 9, 10, 9, 8, 10, 13, 10, 11, 10, 11, 9, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2946 14, 16, 12, 12, 13, 13, 11, 9, 12, 14, 10, 11, 12, 13, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2947 13, 16, 11, 12, 13, 13, 10, 9, 16, 16, 13, 12, 14, 14, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2948 11, 13, 11, 12, 10, 11, 10, 9, 13, 14, 12, 12, 11, 12, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2949 16, 16, 13, 13, 13, 13, 11, 9, 12, 15, 12, 12, 11, 12, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2950 13, 16, 13, 13, 12, 12, 11, 9, 16, 16, 14, 13, 13, 13, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2951 14, 16, 13, 13, 13, 14, 11, 9, 16, 16, 13, 13, 14, 14, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2952 16, 16, 13, 13, 14, 13, 11, 8, 4, 9, 6, 8, 6, 9, 7, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2953 8, 11, 8, 9, 9, 10, 8, 8, 13, 15, 12, 12, 13, 13, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2954 7, 10, 7, 9, 8, 10, 8, 8, 9, 12, 9, 10, 10, 11, 9, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2955 14, 16, 12, 12, 13, 13, 11, 9, 11, 13, 9, 10, 11, 12, 9, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2956 12, 14, 10, 11, 12, 13, 10, 9, 16, 16, 13, 12, 14, 14, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2957 7, 10, 8, 9, 8, 10, 8, 8, 10, 12, 10, 11, 10, 11, 9, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2958 14, 16, 13, 13, 13, 13, 11, 9, 9, 12, 9, 10, 9, 11, 9, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2959 11, 13, 10, 11, 10, 11, 10, 9, 15, 16, 13, 13, 13, 13, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2960 12, 14, 11, 11, 12, 13, 10, 9, 13, 16, 11, 12, 13, 13, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2961 16, 16, 12, 12, 14, 13, 11, 8, 11, 14, 11, 12, 10, 11, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2962 13, 15, 12, 13, 11, 12, 10, 9, 16, 16, 14, 13, 13, 13, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2963 12, 15, 12, 13, 11, 12, 10, 9, 13, 16, 13, 13, 12, 12, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2964 16, 16, 14, 13, 13, 13, 11, 9, 15, 16, 13, 13, 13, 13, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2965 16, 16, 13, 13, 13, 13, 11, 9, 16, 16, 13, 12, 13, 13, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2966 8, 11, 8, 10, 9, 11, 9, 9, 10, 13, 10, 11, 11, 12, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2967 15, 16, 13, 13, 14, 14, 12, 10, 9, 12, 9, 11, 10, 11, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2968 12, 14, 11, 11, 11, 12, 10, 9, 16, 16, 13, 13, 14, 14, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2969 12, 14, 10, 11, 12, 13, 10, 9, 14, 16, 11, 12, 13, 14, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2970 16, 16, 13, 13, 15, 14, 11, 9, 9, 12, 10, 11, 9, 11, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2971 12, 14, 11, 12, 11, 12, 10, 9, 16, 16, 14, 13, 14, 14, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2972 11, 14, 10, 12, 11, 12, 10, 9, 12, 15, 11, 12, 12, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2973 16, 16, 14, 13, 14, 14, 12, 10, 13, 16, 11, 12, 13, 14, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2974 14, 16, 12, 12, 13, 14, 11, 9, 16, 16, 13, 13, 14, 14, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2975 12, 15, 12, 13, 10, 12, 10, 9, 14, 16, 13, 13, 11, 12, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2976 16, 16, 14, 14, 14, 13, 12, 9, 13, 16, 13, 13, 12, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2977 14, 16, 13, 13, 12, 13, 11, 10, 16, 16, 14, 14, 13, 13, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2978 15, 16, 13, 13, 13, 14, 11, 9, 16, 16, 13, 13, 13, 14, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2979 16, 16, 13, 12, 13, 13, 10, 8, 10, 13, 10, 11, 10, 12, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2980 12, 14, 11, 12, 12, 13, 11, 10, 16, 16, 13, 13, 14, 14, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2981 11, 14, 10, 11, 11, 12, 10, 9, 13, 16, 11, 12, 12, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2982 16, 16, 14, 13, 14, 14, 12, 9, 12, 15, 10, 11, 12, 13, 9, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2983 14, 16, 11, 11, 13, 14, 10, 8, 16, 16, 12, 12, 14, 14, 10, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2984 11, 14, 11, 12, 11, 12, 10, 9, 13, 16, 12, 13, 12, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2985 16, 16, 14, 13, 14, 14, 12, 9, 12, 15, 11, 12, 11, 13, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2986 13, 16, 12, 13, 12, 13, 11, 10, 16, 16, 14, 13, 14, 14, 12, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2987 13, 16, 11, 11, 13, 13, 10, 8, 14, 16, 11, 12, 13, 14, 10, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2988 16, 16, 12, 12, 14, 14, 10, 8, 12, 15, 12, 13, 10, 11, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2989 14, 16, 13, 13, 11, 12, 10, 9, 16, 16, 14, 13, 13, 13, 11, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2990 13, 16, 12, 13, 11, 12, 10, 9, 14, 16, 13, 13, 12, 12, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2991 16, 16, 14, 13, 13, 12, 10, 8, 14, 16, 12, 12, 12, 13, 10, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2992 14, 16, 12, 12, 12, 13, 10, 7, 16, 16, 11, 11, 12, 11, 8, 5,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2993 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2994 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2995 0, 7, 4, 8, 5, 8, 7, 8, 6, 10, 7, 10, 8, 10, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2996 13, 16, 12, 13, 13, 14, 12, 12, 4, 10, 6, 9, 8, 11, 8, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2997 8, 12, 8, 11, 10, 12, 10, 10, 14, 16, 12, 13, 14, 15, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2998 9, 14, 9, 11, 12, 14, 11, 11, 11, 15, 10, 12, 13, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
2999 15, 16, 13, 14, 15, 16, 13, 12, 5, 10, 7, 10, 7, 10, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3000 8, 12, 9, 11, 10, 11, 10, 10, 14, 16, 13, 14, 14, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3001 8, 12, 8, 11, 10, 12, 10, 10, 10, 14, 10, 12, 11, 13, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3002 15, 16, 13, 14, 14, 15, 13, 12, 11, 16, 10, 12, 13, 15, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3003 13, 16, 11, 13, 14, 15, 12, 12, 16, 16, 14, 14, 16, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3004 11, 15, 11, 13, 11, 13, 11, 11, 13, 16, 12, 14, 12, 13, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3005 16, 16, 14, 15, 15, 15, 13, 12, 12, 16, 12, 14, 12, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3006 14, 16, 13, 14, 13, 14, 12, 12, 16, 16, 14, 16, 16, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3007 14, 16, 13, 14, 15, 16, 13, 12, 16, 16, 14, 15, 16, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3008 16, 16, 15, 16, 16, 16, 13, 12, 2, 9, 5, 8, 6, 9, 8, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3009 7, 11, 8, 10, 9, 11, 9, 10, 13, 16, 12, 13, 14, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3010 5, 11, 6, 10, 9, 11, 9, 9, 9, 13, 9, 11, 10, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3011 14, 16, 12, 14, 14, 15, 12, 12, 9, 14, 9, 11, 12, 14, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3012 11, 16, 10, 12, 13, 14, 11, 11, 16, 16, 13, 14, 15, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3013 6, 11, 7, 10, 8, 11, 9, 9, 9, 13, 9, 11, 10, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3014 14, 16, 13, 14, 14, 14, 12, 12, 8, 13, 8, 11, 10, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3015 10, 13, 10, 12, 11, 13, 10, 11, 14, 16, 13, 14, 14, 15, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3016 11, 15, 10, 12, 13, 15, 11, 11, 12, 16, 11, 13, 13, 15, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3017 16, 16, 13, 14, 15, 16, 13, 12, 11, 15, 11, 13, 10, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3018 13, 16, 12, 14, 12, 13, 12, 11, 16, 16, 14, 15, 15, 15, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3019 12, 16, 12, 13, 12, 14, 12, 12, 13, 16, 12, 14, 13, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3020 16, 16, 14, 15, 15, 15, 13, 12, 14, 16, 13, 14, 15, 16, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3021 16, 16, 13, 14, 15, 16, 12, 12, 16, 16, 14, 15, 16, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3022 6, 12, 7, 10, 9, 12, 9, 10, 9, 13, 9, 12, 11, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3023 14, 16, 13, 14, 15, 15, 13, 12, 8, 13, 8, 11, 10, 13, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3024 10, 14, 10, 12, 12, 14, 11, 11, 15, 16, 13, 14, 16, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3025 10, 15, 9, 12, 12, 15, 11, 11, 12, 16, 11, 13, 14, 16, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3026 16, 16, 14, 14, 16, 16, 13, 12, 8, 13, 9, 11, 10, 12, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3027 11, 14, 11, 12, 11, 13, 11, 11, 16, 16, 14, 15, 15, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3028 10, 14, 10, 12, 11, 13, 11, 11, 11, 15, 11, 13, 12, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3029 15, 16, 13, 14, 15, 16, 13, 12, 12, 16, 11, 13, 13, 16, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3030 13, 16, 11, 13, 14, 16, 12, 12, 16, 16, 13, 14, 16, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3031 12, 16, 12, 14, 11, 13, 11, 11, 13, 16, 13, 14, 12, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3032 16, 16, 15, 16, 16, 16, 14, 13, 13, 16, 12, 14, 12, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3033 14, 16, 13, 14, 13, 14, 12, 12, 16, 16, 14, 16, 14, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3034 15, 16, 13, 15, 15, 16, 13, 12, 15, 16, 13, 15, 14, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3035 16, 16, 14, 15, 15, 16, 13, 11, 8, 13, 8, 11, 10, 13, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3036 11, 15, 10, 12, 12, 14, 11, 11, 15, 16, 13, 14, 15, 15, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3037 9, 14, 9, 12, 11, 14, 10, 11, 11, 16, 10, 12, 13, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3038 16, 16, 13, 14, 15, 16, 13, 12, 11, 15, 9, 12, 12, 14, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3039 12, 16, 11, 12, 14, 15, 11, 11, 16, 16, 13, 14, 16, 16, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3040 9, 14, 10, 12, 11, 13, 11, 11, 12, 16, 11, 13, 12, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3041 16, 16, 14, 14, 15, 15, 13, 12, 10, 15, 10, 12, 12, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3042 12, 16, 11, 13, 13, 14, 11, 11, 16, 16, 14, 14, 15, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3043 12, 16, 10, 12, 13, 15, 11, 11, 13, 16, 11, 13, 14, 15, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3044 16, 16, 13, 13, 15, 16, 12, 11, 12, 16, 11, 13, 10, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3045 14, 16, 13, 14, 12, 14, 11, 11, 16, 16, 15, 16, 14, 15, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3046 13, 16, 12, 14, 12, 14, 11, 11, 13, 16, 12, 14, 12, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3047 16, 16, 14, 15, 14, 14, 12, 11, 14, 16, 12, 13, 13, 15, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3048 14, 16, 12, 13, 13, 14, 11, 11, 15, 16, 12, 13, 13, 13, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3049 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3050 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3051 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3052 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3053 0, 7, 4, 7, 5, 7, 6, 6, 6, 10, 7, 8, 8, 9, 8, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3054 13, 14, 11, 12, 12, 12, 11, 9, 5, 9, 6, 8, 7, 9, 7, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3055 8, 11, 8, 9, 9, 10, 9, 8, 13, 16, 12, 12, 12, 13, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3056 10, 13, 8, 10, 11, 12, 9, 9, 12, 14, 10, 11, 12, 13, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3057 15, 16, 12, 12, 14, 14, 11, 9, 6, 10, 7, 9, 7, 9, 8, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3058 8, 11, 9, 10, 9, 10, 9, 8, 14, 16, 12, 12, 13, 12, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3059 8, 11, 8, 10, 9, 10, 9, 8, 10, 13, 10, 11, 10, 11, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3060 14, 16, 12, 12, 13, 13, 11, 9, 12, 15, 10, 11, 12, 13, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3061 13, 16, 11, 12, 13, 13, 10, 9, 16, 16, 12, 13, 14, 14, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3062 10, 14, 11, 12, 9, 11, 10, 9, 12, 15, 12, 13, 11, 12, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3063 16, 16, 13, 13, 13, 13, 11, 9, 12, 15, 12, 13, 11, 12, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3064 13, 16, 12, 13, 12, 13, 11, 10, 16, 16, 13, 13, 13, 13, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3065 14, 16, 13, 13, 13, 14, 11, 10, 16, 16, 13, 13, 13, 14, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3066 16, 16, 13, 13, 14, 14, 11, 9, 4, 9, 6, 8, 6, 9, 7, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3067 8, 11, 8, 9, 9, 10, 9, 8, 13, 15, 12, 12, 13, 13, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3068 6, 10, 7, 9, 8, 10, 8, 8, 9, 12, 9, 10, 10, 11, 9, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3069 14, 16, 12, 12, 13, 13, 11, 10, 10, 13, 8, 10, 11, 12, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3070 12, 15, 10, 11, 12, 13, 10, 9, 16, 16, 12, 12, 14, 14, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3071 7, 11, 8, 9, 7, 10, 8, 8, 9, 12, 10, 11, 9, 11, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3072 14, 16, 12, 13, 13, 13, 11, 10, 9, 12, 9, 10, 9, 11, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3073 10, 13, 10, 11, 10, 11, 10, 9, 14, 16, 12, 13, 13, 13, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3074 12, 15, 10, 11, 12, 13, 10, 9, 13, 16, 11, 12, 13, 13, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3075 16, 16, 12, 12, 14, 14, 11, 9, 10, 14, 11, 12, 9, 11, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3076 12, 16, 12, 13, 11, 12, 11, 9, 16, 16, 14, 14, 13, 13, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3077 12, 16, 12, 13, 11, 12, 10, 10, 13, 16, 12, 13, 11, 12, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3078 16, 16, 13, 13, 13, 13, 11, 9, 14, 16, 13, 13, 13, 14, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3079 15, 16, 13, 13, 13, 14, 11, 9, 16, 16, 13, 13, 13, 13, 10, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3080 7, 11, 8, 10, 9, 11, 9, 9, 10, 13, 10, 11, 11, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3081 15, 16, 13, 13, 14, 14, 12, 10, 9, 13, 9, 11, 10, 12, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3082 11, 14, 10, 12, 12, 13, 10, 10, 16, 16, 13, 13, 14, 14, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3083 11, 15, 9, 11, 12, 13, 10, 9, 13, 16, 11, 12, 13, 14, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3084 16, 16, 13, 13, 15, 15, 11, 10, 9, 13, 10, 11, 9, 11, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3085 11, 14, 11, 12, 11, 12, 11, 10, 16, 16, 14, 14, 14, 14, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3086 10, 14, 10, 12, 11, 12, 10, 10, 12, 15, 11, 12, 12, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3087 16, 16, 13, 13, 14, 14, 12, 10, 13, 16, 11, 12, 13, 14, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3088 13, 16, 11, 12, 13, 14, 11, 10, 16, 16, 12, 13, 14, 14, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3089 11, 15, 12, 13, 10, 12, 10, 10, 13, 16, 13, 14, 11, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3090 16, 16, 14, 14, 14, 14, 12, 10, 13, 16, 13, 13, 11, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3091 14, 16, 13, 14, 12, 13, 11, 10, 16, 16, 14, 14, 13, 13, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3092 15, 16, 13, 14, 14, 14, 11, 10, 15, 16, 13, 13, 13, 14, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3093 16, 16, 12, 13, 13, 13, 10, 8, 9, 13, 10, 11, 10, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3094 12, 15, 11, 12, 12, 13, 11, 10, 16, 16, 14, 13, 14, 14, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3095 10, 14, 10, 12, 11, 13, 10, 10, 13, 16, 11, 12, 12, 14, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3096 16, 16, 13, 13, 14, 14, 12, 10, 12, 16, 9, 11, 12, 14, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3097 13, 16, 10, 12, 13, 14, 10, 9, 16, 16, 12, 12, 14, 14, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3098 10, 14, 11, 12, 10, 12, 10, 10, 13, 16, 12, 13, 12, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3099 16, 16, 14, 14, 14, 14, 12, 10, 11, 16, 11, 12, 11, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3100 13, 16, 12, 13, 12, 14, 11, 10, 16, 16, 14, 14, 14, 14, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3101 13, 16, 11, 12, 13, 14, 10, 9, 14, 16, 11, 12, 13, 14, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3102 16, 16, 12, 12, 14, 14, 10, 8, 12, 16, 12, 13, 10, 12, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3103 14, 16, 13, 13, 11, 12, 11, 9, 16, 16, 14, 14, 13, 13, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3104 13, 16, 12, 13, 11, 12, 10, 9, 14, 16, 13, 13, 11, 13, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3105 16, 16, 14, 14, 13, 13, 11, 9, 14, 16, 12, 13, 12, 13, 10, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3106 14, 16, 12, 12, 12, 13, 10, 8, 15, 16, 11, 11, 11, 12, 9, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3107 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3108 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3109 0, 7, 4, 7, 5, 8, 7, 8, 5, 10, 7, 10, 8, 10, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3110 13, 16, 12, 14, 14, 14, 13, 12, 4, 10, 6, 9, 8, 11, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3111 8, 12, 8, 11, 10, 12, 10, 10, 14, 16, 13, 14, 14, 15, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3112 9, 14, 9, 12, 12, 14, 11, 11, 12, 16, 11, 13, 13, 15, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3113 15, 16, 14, 15, 15, 16, 13, 13, 5, 10, 7, 10, 7, 10, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3114 8, 12, 9, 11, 9, 11, 10, 10, 14, 16, 13, 14, 14, 15, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3115 7, 12, 8, 11, 10, 12, 10, 10, 10, 13, 10, 12, 11, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3116 15, 16, 13, 15, 14, 16, 13, 13, 11, 16, 11, 13, 13, 16, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3117 13, 16, 12, 14, 14, 16, 12, 12, 16, 16, 14, 16, 16, 16, 14, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3118 11, 15, 12, 14, 11, 13, 11, 12, 13, 16, 12, 14, 12, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3119 16, 16, 14, 16, 14, 16, 13, 13, 13, 16, 12, 14, 12, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3120 14, 16, 13, 15, 13, 15, 13, 13, 16, 16, 15, 16, 16, 16, 14, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3121 15, 16, 13, 16, 15, 16, 13, 13, 16, 16, 14, 16, 16, 16, 14, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3122 16, 16, 16, 16, 16, 16, 14, 13, 2, 9, 5, 8, 6, 9, 8, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3123 7, 11, 8, 10, 9, 11, 9, 10, 14, 16, 13, 14, 14, 15, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3124 5, 11, 6, 10, 9, 11, 9, 10, 8, 13, 9, 11, 11, 12, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3125 14, 16, 13, 14, 14, 16, 13, 13, 9, 15, 9, 12, 12, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3126 12, 16, 11, 13, 13, 15, 12, 12, 16, 16, 14, 15, 16, 16, 14, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3127 6, 11, 7, 10, 8, 11, 9, 10, 9, 13, 9, 12, 10, 12, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3128 14, 16, 13, 14, 14, 15, 13, 13, 8, 12, 8, 11, 10, 12, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3129 9, 13, 10, 12, 11, 13, 11, 11, 14, 16, 13, 14, 14, 16, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3130 12, 16, 11, 13, 13, 15, 12, 12, 13, 16, 11, 13, 14, 16, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3131 16, 16, 14, 15, 16, 16, 13, 13, 11, 15, 11, 14, 10, 13, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3132 13, 16, 13, 15, 12, 14, 12, 12, 16, 16, 15, 16, 15, 16, 14, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3133 12, 16, 12, 14, 12, 14, 12, 12, 13, 16, 13, 15, 13, 14, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3134 16, 16, 15, 16, 15, 16, 13, 13, 15, 16, 13, 16, 15, 16, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3135 16, 16, 14, 16, 16, 16, 13, 13, 16, 16, 15, 16, 16, 16, 14, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3136 5, 12, 7, 10, 9, 12, 10, 10, 9, 13, 9, 12, 11, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3137 15, 16, 13, 14, 15, 15, 13, 13, 7, 13, 8, 11, 10, 13, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3138 10, 14, 10, 12, 12, 14, 11, 12, 16, 16, 14, 15, 16, 16, 14, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3139 10, 16, 9, 12, 13, 15, 11, 12, 13, 16, 11, 13, 14, 16, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3140 16, 16, 14, 16, 16, 16, 14, 13, 8, 13, 9, 12, 9, 12, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3141 11, 15, 11, 13, 11, 13, 11, 12, 16, 16, 14, 16, 16, 16, 14, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3142 9, 14, 10, 12, 11, 13, 11, 12, 11, 15, 11, 13, 12, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3143 16, 16, 14, 16, 15, 16, 14, 13, 12, 16, 11, 14, 14, 16, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3144 13, 16, 12, 14, 14, 16, 13, 13, 16, 16, 13, 15, 16, 16, 14, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3145 11, 16, 12, 14, 10, 13, 12, 12, 13, 16, 13, 15, 12, 14, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3146 16, 16, 16, 16, 16, 16, 14, 14, 13, 16, 13, 15, 12, 15, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3147 13, 16, 13, 15, 12, 15, 13, 13, 16, 16, 15, 16, 14, 16, 14, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3148 16, 16, 14, 16, 16, 16, 14, 13, 15, 16, 14, 16, 15, 16, 14, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3149 16, 16, 14, 16, 15, 16, 13, 12, 8, 14, 9, 12, 10, 14, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3150 11, 16, 10, 13, 12, 14, 12, 12, 16, 16, 14, 15, 15, 16, 14, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3151 9, 15, 9, 12, 12, 14, 11, 12, 12, 16, 11, 13, 13, 15, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3152 16, 16, 14, 15, 16, 16, 14, 13, 11, 16, 9, 12, 13, 15, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3153 13, 16, 11, 13, 14, 16, 12, 12, 16, 16, 14, 14, 16, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3154 9, 15, 10, 13, 11, 14, 11, 12, 12, 16, 11, 14, 12, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3155 16, 16, 14, 16, 16, 16, 14, 13, 10, 16, 10, 13, 12, 15, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3156 12, 16, 12, 14, 13, 15, 12, 12, 16, 16, 14, 16, 16, 16, 14, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3157 12, 16, 11, 13, 13, 16, 12, 12, 13, 16, 11, 13, 14, 16, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3158 16, 16, 13, 14, 16, 16, 13, 12, 11, 16, 12, 14, 10, 13, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3159 13, 16, 13, 15, 12, 14, 12, 12, 16, 16, 16, 16, 15, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3160 12, 16, 12, 15, 12, 14, 12, 12, 13, 16, 13, 15, 12, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3161 16, 16, 15, 16, 14, 15, 13, 12, 14, 16, 13, 14, 13, 16, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3162 13, 16, 12, 14, 13, 15, 12, 12, 14, 16, 12, 13, 13, 14, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3163 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3164 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3165 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3166 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3167 0, 7, 4, 7, 5, 7, 6, 6, 6, 10, 7, 8, 8, 9, 8, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3168 13, 14, 11, 12, 12, 12, 11, 10, 5, 9, 6, 8, 7, 9, 7, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3169 8, 11, 8, 9, 9, 10, 9, 8, 13, 16, 12, 12, 13, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3170 10, 14, 8, 10, 11, 13, 9, 9, 12, 15, 10, 11, 12, 13, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3171 16, 16, 12, 13, 14, 14, 11, 10, 5, 10, 7, 9, 6, 9, 8, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3172 8, 11, 9, 10, 9, 10, 9, 8, 14, 16, 12, 12, 13, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3173 8, 12, 8, 10, 9, 10, 9, 9, 10, 13, 9, 11, 10, 11, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3174 14, 16, 12, 13, 13, 13, 11, 10, 12, 16, 10, 12, 12, 13, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3175 13, 16, 11, 12, 13, 14, 11, 10, 16, 16, 12, 13, 14, 14, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3176 10, 14, 11, 13, 9, 11, 10, 10, 12, 16, 12, 13, 11, 12, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3177 16, 16, 13, 14, 13, 13, 12, 10, 12, 16, 12, 13, 11, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3178 13, 16, 12, 13, 12, 13, 11, 10, 16, 16, 13, 14, 13, 14, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3179 14, 16, 13, 14, 13, 14, 12, 11, 16, 16, 13, 14, 14, 15, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3180 16, 16, 13, 14, 14, 14, 11, 10, 3, 9, 5, 8, 6, 9, 7, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3181 8, 11, 8, 10, 9, 10, 9, 8, 14, 15, 12, 12, 13, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3182 6, 11, 6, 9, 8, 10, 8, 8, 9, 12, 9, 10, 10, 11, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3183 14, 16, 12, 13, 13, 13, 11, 10, 10, 14, 8, 11, 12, 13, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3184 12, 16, 10, 11, 12, 13, 10, 10, 16, 16, 12, 13, 14, 14, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3185 6, 11, 8, 10, 7, 10, 8, 8, 9, 12, 10, 11, 9, 11, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3186 14, 16, 12, 13, 13, 13, 12, 10, 9, 12, 9, 11, 9, 11, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3187 10, 13, 10, 11, 10, 12, 10, 9, 14, 16, 12, 13, 13, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3188 12, 16, 10, 12, 12, 14, 10, 10, 13, 16, 10, 12, 13, 14, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3189 16, 16, 12, 13, 14, 14, 11, 10, 10, 15, 11, 13, 9, 11, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3190 12, 16, 12, 13, 11, 12, 11, 10, 16, 16, 14, 14, 13, 14, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3191 12, 16, 12, 13, 11, 13, 11, 10, 13, 16, 12, 13, 11, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3192 16, 16, 13, 14, 13, 13, 12, 10, 14, 16, 13, 14, 14, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3193 15, 16, 13, 14, 13, 14, 11, 10, 16, 16, 13, 13, 13, 14, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3194 7, 12, 8, 11, 9, 11, 9, 10, 10, 14, 10, 12, 11, 12, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3195 16, 16, 13, 13, 14, 14, 12, 11, 9, 13, 9, 11, 10, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3196 11, 15, 10, 12, 12, 13, 11, 10, 16, 16, 13, 14, 14, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3197 11, 16, 9, 11, 12, 14, 10, 10, 13, 16, 10, 12, 13, 14, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3198 16, 16, 13, 14, 16, 16, 12, 11, 9, 13, 10, 12, 9, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3199 11, 15, 11, 13, 11, 13, 11, 11, 16, 16, 14, 14, 14, 14, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3200 10, 14, 10, 12, 11, 13, 11, 10, 12, 16, 11, 13, 12, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3201 16, 16, 13, 14, 14, 14, 12, 11, 13, 16, 11, 13, 13, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3202 13, 16, 11, 13, 13, 14, 11, 11, 16, 16, 12, 13, 14, 15, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3203 11, 16, 12, 14, 10, 12, 11, 10, 13, 16, 13, 14, 11, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3204 16, 16, 15, 16, 14, 14, 13, 11, 13, 16, 13, 14, 12, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3205 13, 16, 13, 14, 12, 13, 11, 11, 16, 16, 14, 14, 13, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3206 15, 16, 13, 14, 14, 16, 12, 11, 14, 16, 13, 14, 13, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3207 16, 16, 12, 13, 13, 14, 11, 9, 9, 14, 10, 12, 10, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3208 12, 16, 12, 13, 12, 14, 12, 11, 16, 16, 14, 14, 14, 14, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3209 10, 16, 10, 13, 12, 14, 11, 11, 13, 16, 12, 13, 13, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3210 16, 16, 14, 14, 15, 15, 13, 11, 12, 16, 9, 12, 13, 14, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3211 14, 16, 11, 12, 13, 15, 11, 10, 16, 16, 13, 13, 15, 16, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3212 10, 16, 11, 13, 11, 13, 11, 11, 13, 16, 12, 14, 12, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3213 16, 16, 14, 14, 14, 14, 13, 11, 11, 16, 11, 13, 12, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3214 13, 16, 12, 14, 13, 14, 12, 11, 16, 16, 14, 14, 14, 15, 13, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3215 13, 16, 11, 13, 13, 14, 11, 10, 14, 16, 11, 13, 13, 14, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3216 16, 16, 12, 13, 14, 15, 11, 9, 12, 16, 12, 14, 10, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3217 14, 16, 13, 14, 11, 13, 11, 10, 16, 16, 14, 15, 13, 14, 12, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3218 13, 16, 13, 14, 11, 13, 11, 10, 14, 16, 13, 14, 12, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3219 16, 16, 14, 14, 13, 13, 11, 10, 14, 16, 12, 13, 13, 14, 11, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3220 14, 16, 12, 13, 12, 13, 10, 9, 14, 16, 11, 11, 12, 12, 9, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3221 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3222 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3223 0, 7, 3, 8, 5, 8, 7, 9, 5, 10, 7, 10, 8, 11, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3224 14, 16, 14, 15, 14, 16, 14, 14, 4, 10, 6, 10, 8, 11, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3225 8, 12, 9, 11, 10, 12, 11, 11, 15, 16, 14, 16, 15, 16, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3226 10, 16, 10, 13, 13, 16, 12, 13, 13, 16, 12, 14, 14, 16, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3227 16, 16, 16, 16, 16, 16, 14, 15, 4, 10, 7, 10, 7, 10, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3228 8, 12, 9, 12, 10, 12, 11, 12, 14, 16, 14, 16, 15, 16, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3229 8, 12, 9, 12, 10, 13, 11, 12, 10, 14, 11, 13, 11, 14, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3230 16, 16, 14, 16, 16, 16, 14, 15, 12, 16, 12, 14, 14, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3231 14, 16, 13, 16, 16, 16, 14, 14, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3232 11, 16, 12, 16, 11, 14, 13, 13, 13, 16, 13, 16, 13, 15, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3233 16, 16, 16, 16, 16, 16, 15, 16, 13, 16, 13, 16, 13, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3234 14, 16, 14, 16, 14, 16, 14, 15, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3235 16, 16, 15, 16, 16, 16, 15, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3236 16, 16, 16, 16, 16, 16, 16, 16, 2, 9, 5, 9, 6, 10, 8, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3237 7, 11, 8, 11, 9, 12, 10, 11, 14, 16, 14, 16, 15, 16, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3238 5, 11, 6, 10, 9, 12, 10, 11, 9, 13, 9, 12, 11, 13, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3239 16, 16, 14, 16, 16, 16, 14, 14, 10, 16, 9, 13, 13, 16, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3240 13, 16, 12, 14, 14, 16, 13, 13, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3241 5, 11, 8, 11, 7, 11, 10, 11, 9, 13, 10, 13, 10, 13, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3242 16, 16, 14, 16, 16, 16, 14, 14, 8, 13, 9, 12, 10, 13, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3243 10, 14, 10, 13, 11, 14, 12, 12, 16, 16, 14, 16, 15, 16, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3244 12, 16, 12, 14, 14, 16, 13, 14, 14, 16, 12, 16, 15, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3245 16, 16, 15, 16, 16, 16, 15, 15, 11, 16, 12, 16, 10, 14, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3246 13, 16, 14, 16, 13, 16, 13, 14, 16, 16, 16, 16, 16, 16, 15, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3247 13, 16, 13, 16, 13, 16, 13, 14, 14, 16, 14, 16, 13, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3248 16, 16, 16, 16, 16, 16, 15, 16, 16, 16, 15, 16, 16, 16, 15, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3249 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 15, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3250 5, 13, 7, 12, 9, 13, 11, 12, 10, 14, 10, 13, 11, 13, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3251 16, 16, 16, 16, 16, 16, 16, 15, 7, 14, 8, 12, 11, 14, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3252 11, 16, 11, 13, 13, 16, 13, 13, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3253 11, 16, 10, 14, 14, 16, 12, 13, 13, 16, 12, 15, 16, 16, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3254 16, 16, 16, 16, 16, 16, 16, 16, 8, 14, 10, 13, 9, 13, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3255 11, 16, 12, 14, 12, 14, 13, 13, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3256 10, 16, 11, 14, 12, 14, 12, 13, 11, 16, 12, 14, 12, 15, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3257 16, 16, 15, 16, 16, 16, 15, 16, 13, 16, 12, 16, 15, 16, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3258 13, 16, 12, 16, 16, 16, 14, 14, 16, 16, 14, 16, 16, 16, 14, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3259 11, 16, 13, 16, 10, 14, 12, 13, 14, 16, 14, 16, 13, 16, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3260 16, 16, 16, 16, 16, 16, 16, 16, 13, 16, 14, 16, 13, 16, 14, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3261 13, 16, 14, 16, 13, 16, 14, 15, 16, 16, 16, 16, 15, 16, 15, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3262 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 15, 16, 16, 16, 15, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3263 16, 16, 15, 16, 16, 16, 14, 14, 8, 16, 10, 14, 11, 16, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3264 12, 16, 12, 14, 13, 16, 13, 14, 16, 16, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3265 10, 16, 10, 14, 12, 16, 12, 13, 13, 16, 12, 15, 14, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3266 16, 16, 16, 16, 16, 16, 16, 15, 11, 16, 10, 13, 13, 16, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3267 14, 16, 12, 14, 15, 16, 13, 13, 16, 16, 16, 16, 16, 16, 15, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3268 10, 16, 11, 14, 11, 16, 12, 13, 13, 16, 13, 16, 13, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3269 16, 16, 16, 16, 16, 16, 16, 15, 11, 16, 12, 14, 13, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3270 13, 16, 13, 16, 14, 16, 13, 14, 16, 16, 16, 16, 16, 16, 16, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3271 13, 16, 12, 14, 14, 16, 13, 13, 13, 16, 12, 15, 14, 16, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3272 16, 16, 14, 16, 16, 16, 14, 13, 11, 16, 12, 16, 11, 15, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3273 14, 16, 14, 16, 13, 16, 13, 14, 16, 16, 16, 16, 16, 16, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3274 12, 16, 13, 16, 12, 16, 13, 14, 13, 16, 14, 16, 13, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3275 16, 16, 16, 16, 14, 16, 14, 14, 14, 16, 13, 16, 14, 16, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3276 13, 16, 13, 16, 14, 16, 13, 13, 15, 16, 13, 14, 13, 15, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3277 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3278 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3279 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3280 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3281 0, 7, 4, 6, 4, 7, 6, 7, 6, 9, 7, 8, 7, 9, 8, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3282 13, 14, 12, 12, 12, 13, 11, 11, 5, 9, 5, 8, 7, 9, 7, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3283 8, 11, 8, 10, 9, 10, 9, 9, 13, 15, 12, 13, 12, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3284 9, 14, 8, 11, 11, 13, 10, 10, 11, 15, 10, 12, 12, 13, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3285 14, 16, 12, 13, 14, 14, 12, 11, 5, 9, 7, 9, 6, 9, 8, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3286 8, 11, 8, 10, 8, 10, 9, 9, 13, 16, 12, 13, 13, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3287 7, 11, 8, 10, 9, 11, 9, 9, 9, 13, 9, 11, 10, 11, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3288 14, 16, 12, 13, 13, 13, 12, 11, 11, 16, 10, 12, 12, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3289 13, 16, 11, 13, 13, 14, 11, 11, 16, 16, 13, 14, 14, 15, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3290 10, 15, 11, 13, 9, 12, 10, 10, 12, 16, 12, 13, 11, 12, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3291 15, 16, 13, 14, 13, 14, 12, 11, 12, 16, 12, 14, 11, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3292 13, 16, 12, 14, 12, 13, 12, 11, 16, 16, 13, 14, 14, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3293 14, 16, 13, 14, 14, 15, 12, 12, 16, 16, 13, 14, 14, 16, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3294 16, 16, 14, 14, 14, 15, 12, 11, 3, 9, 5, 8, 6, 9, 7, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3295 7, 11, 8, 10, 9, 10, 9, 9, 13, 14, 12, 13, 13, 13, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3296 6, 11, 6, 9, 8, 10, 8, 9, 9, 12, 8, 10, 10, 11, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3297 14, 16, 12, 13, 13, 14, 12, 11, 9, 14, 8, 11, 11, 13, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3298 12, 16, 10, 12, 12, 14, 11, 11, 16, 16, 12, 13, 14, 15, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3299 6, 11, 8, 10, 7, 10, 8, 9, 9, 12, 9, 11, 9, 11, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3300 14, 16, 13, 13, 13, 14, 12, 11, 8, 12, 9, 11, 9, 11, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3301 10, 13, 9, 11, 10, 12, 10, 10, 14, 16, 12, 13, 13, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3302 12, 16, 10, 12, 12, 14, 11, 11, 12, 16, 10, 12, 13, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3303 15, 16, 12, 13, 14, 14, 11, 11, 10, 15, 11, 13, 9, 12, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3304 12, 16, 12, 14, 11, 13, 11, 11, 16, 16, 14, 14, 14, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3305 12, 16, 12, 14, 11, 13, 11, 11, 13, 16, 12, 14, 11, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3306 16, 16, 13, 14, 13, 14, 12, 11, 14, 16, 13, 14, 14, 15, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3307 14, 16, 13, 14, 13, 15, 12, 11, 16, 16, 13, 14, 13, 14, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3308 6, 13, 8, 11, 9, 12, 10, 10, 10, 14, 10, 12, 11, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3309 16, 16, 13, 14, 14, 14, 13, 12, 8, 14, 8, 12, 10, 13, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3310 11, 15, 10, 12, 12, 13, 11, 11, 16, 16, 14, 14, 15, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3311 11, 16, 9, 12, 12, 14, 11, 11, 13, 16, 11, 13, 13, 16, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3312 16, 16, 13, 14, 16, 16, 13, 12, 8, 14, 10, 12, 9, 12, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3313 11, 15, 11, 13, 11, 13, 11, 11, 16, 16, 14, 15, 14, 15, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3314 10, 15, 10, 13, 11, 13, 11, 11, 11, 15, 11, 13, 12, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3315 16, 16, 13, 15, 14, 15, 13, 12, 12, 16, 11, 13, 13, 15, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3316 13, 16, 11, 13, 13, 15, 11, 11, 16, 16, 12, 14, 14, 16, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3317 11, 16, 12, 14, 10, 13, 11, 11, 13, 16, 13, 15, 12, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3318 16, 16, 15, 16, 14, 15, 13, 12, 12, 16, 13, 14, 12, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3319 13, 16, 13, 14, 12, 14, 12, 12, 16, 16, 14, 15, 13, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3320 15, 16, 13, 15, 14, 16, 12, 12, 14, 16, 13, 14, 13, 15, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3321 15, 16, 12, 13, 13, 14, 11, 10, 9, 15, 10, 13, 11, 14, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3322 12, 16, 12, 14, 12, 14, 12, 12, 16, 16, 14, 14, 14, 15, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3323 10, 16, 10, 13, 12, 14, 12, 12, 13, 16, 12, 14, 13, 15, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3324 16, 16, 14, 14, 15, 16, 13, 12, 11, 16, 9, 12, 13, 15, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3325 14, 16, 11, 13, 14, 16, 11, 11, 16, 16, 13, 14, 16, 16, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3326 10, 16, 11, 14, 11, 14, 12, 12, 13, 16, 13, 14, 12, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3327 16, 16, 14, 15, 15, 15, 13, 12, 11, 16, 12, 14, 12, 15, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3328 13, 16, 12, 14, 13, 15, 12, 12, 16, 16, 14, 15, 15, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3329 12, 16, 11, 13, 13, 15, 11, 11, 13, 16, 11, 13, 13, 15, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3330 16, 16, 12, 13, 14, 16, 12, 10, 11, 16, 12, 14, 10, 13, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3331 14, 16, 13, 14, 12, 14, 11, 11, 16, 16, 15, 16, 14, 14, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3332 12, 16, 13, 14, 11, 14, 11, 11, 13, 16, 13, 14, 12, 14, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3333 16, 16, 14, 15, 13, 14, 12, 11, 14, 16, 12, 14, 13, 14, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3334 13, 16, 12, 13, 12, 14, 11, 10, 14, 16, 11, 12, 12, 12, 10, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3335 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3336 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3337 0, 8, 4, 9, 5, 9, 8, 10, 6, 11, 8, 11, 9, 12, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3338 16, 16, 16, 16, 16, 16, 16, 16, 4, 11, 6, 11, 9, 12, 10, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3339 9, 13, 10, 13, 11, 16, 12, 13, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3340 11, 16, 11, 16, 16, 16, 14, 16, 14, 16, 13, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3341 16, 16, 16, 16, 16, 16, 16, 16, 4, 11, 8, 12, 7, 12, 10, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3342 8, 13, 10, 13, 10, 13, 12, 14, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3343 8, 13, 10, 14, 11, 16, 12, 14, 11, 16, 12, 16, 12, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3344 16, 16, 16, 16, 16, 16, 16, 16, 14, 16, 13, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3345 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3346 12, 16, 14, 16, 12, 16, 16, 16, 13, 16, 16, 16, 14, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3347 16, 16, 16, 16, 16, 16, 16, 16, 14, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3348 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3349 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3350 16, 16, 16, 16, 16, 16, 16, 16, 1, 10, 5, 10, 7, 11, 9, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3351 8, 12, 9, 12, 10, 13, 12, 13, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3352 5, 12, 7, 12, 10, 13, 11, 12, 9, 16, 10, 13, 12, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3353 16, 16, 16, 16, 16, 16, 16, 16, 11, 16, 10, 16, 16, 16, 14, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3354 14, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3355 6, 12, 9, 13, 8, 12, 11, 13, 10, 16, 11, 16, 11, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3356 16, 16, 16, 16, 16, 16, 16, 16, 9, 16, 10, 14, 11, 16, 12, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3357 10, 16, 11, 16, 12, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3358 14, 16, 13, 16, 16, 16, 16, 16, 16, 16, 13, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3359 16, 16, 16, 16, 16, 16, 16, 16, 12, 16, 14, 16, 11, 16, 14, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3360 16, 16, 16, 16, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3361 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3362 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3363 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3364 6, 16, 9, 13, 10, 16, 12, 14, 11, 16, 12, 16, 12, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3365 16, 16, 16, 16, 16, 16, 16, 16, 8, 16, 9, 14, 12, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3366 12, 16, 12, 16, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3367 12, 16, 10, 16, 16, 16, 14, 16, 16, 16, 13, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3368 16, 16, 16, 16, 16, 16, 16, 16, 8, 16, 11, 16, 10, 16, 12, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3369 12, 16, 13, 16, 13, 16, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3370 10, 16, 12, 16, 13, 16, 14, 16, 11, 16, 13, 16, 13, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3371 16, 16, 16, 16, 16, 16, 16, 16, 14, 16, 13, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3372 14, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3373 12, 16, 16, 16, 11, 16, 14, 16, 16, 16, 16, 16, 14, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3374 16, 16, 16, 16, 16, 16, 16, 16, 14, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3375 16, 16, 16, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3376 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3377 16, 16, 16, 16, 16, 16, 16, 16, 8, 16, 11, 16, 12, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3378 13, 16, 13, 16, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3379 10, 16, 11, 16, 13, 16, 14, 16, 14, 16, 13, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3380 16, 16, 16, 16, 16, 16, 16, 16, 11, 16, 10, 16, 16, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3381 16, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3382 10, 16, 12, 16, 12, 16, 13, 16, 13, 16, 16, 16, 14, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3383 16, 16, 16, 16, 16, 16, 16, 16, 11, 16, 13, 16, 14, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3384 13, 16, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3385 13, 16, 12, 16, 16, 16, 14, 16, 14, 16, 13, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3386 16, 16, 16, 16, 16, 16, 16, 16, 11, 16, 13, 16, 11, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3387 16, 16, 16, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3388 13, 16, 16, 16, 13, 16, 16, 16, 13, 16, 16, 16, 13, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3389 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3390 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14, 16, 16, 16, 14, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3391 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3392 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3393 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3394 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3395 0, 7, 3, 7, 4, 7, 6, 7, 6, 9, 7, 9, 7, 9, 8, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3396 13, 14, 12, 13, 13, 13, 12, 12, 4, 9, 5, 9, 7, 9, 8, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3397 7, 11, 8, 10, 9, 11, 9, 10, 13, 16, 12, 14, 13, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3398 9, 14, 8, 12, 12, 14, 10, 11, 11, 16, 10, 13, 13, 14, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3399 15, 16, 13, 14, 14, 16, 12, 12, 5, 10, 7, 9, 6, 9, 8, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3400 8, 11, 8, 11, 8, 10, 9, 10, 14, 16, 12, 14, 13, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3401 7, 12, 8, 11, 9, 11, 9, 10, 9, 13, 9, 12, 10, 12, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3402 14, 16, 12, 14, 13, 14, 12, 12, 12, 16, 11, 13, 13, 15, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3403 13, 16, 11, 14, 13, 15, 12, 12, 15, 16, 13, 15, 14, 16, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3404 10, 15, 12, 14, 9, 13, 11, 12, 12, 16, 12, 14, 11, 13, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3405 15, 16, 13, 15, 14, 15, 13, 13, 12, 16, 12, 14, 12, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3406 13, 16, 13, 14, 12, 14, 12, 12, 16, 16, 14, 15, 14, 16, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3407 15, 16, 13, 15, 14, 16, 12, 13, 16, 16, 14, 16, 14, 16, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3408 16, 16, 14, 16, 15, 16, 13, 13, 3, 9, 5, 9, 6, 9, 8, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3409 7, 11, 8, 10, 9, 11, 9, 10, 14, 15, 13, 14, 13, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3410 5, 11, 6, 10, 8, 11, 9, 10, 9, 12, 9, 11, 10, 12, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3411 14, 16, 13, 14, 14, 15, 13, 13, 9, 15, 8, 12, 12, 14, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3412 12, 16, 10, 13, 13, 15, 11, 12, 15, 16, 13, 14, 14, 16, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3413 6, 11, 8, 11, 7, 10, 9, 10, 9, 13, 10, 12, 9, 12, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3414 14, 16, 13, 14, 14, 14, 13, 13, 8, 13, 9, 12, 9, 12, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3415 9, 13, 9, 12, 10, 12, 10, 11, 14, 16, 12, 14, 13, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3416 12, 16, 11, 13, 13, 15, 11, 12, 12, 16, 11, 13, 13, 15, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3417 14, 16, 12, 14, 14, 15, 12, 12, 10, 15, 11, 14, 9, 13, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3418 12, 16, 12, 14, 11, 14, 12, 12, 16, 16, 14, 16, 14, 15, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3419 12, 16, 12, 14, 11, 14, 12, 12, 12, 16, 13, 14, 11, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3420 15, 16, 14, 15, 13, 15, 12, 13, 14, 16, 13, 15, 14, 16, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3421 14, 16, 13, 15, 14, 16, 12, 13, 15, 16, 13, 15, 13, 15, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3422 6, 13, 8, 12, 9, 12, 10, 11, 10, 14, 11, 13, 11, 13, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3423 15, 16, 14, 15, 15, 15, 14, 13, 8, 14, 9, 12, 11, 13, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3424 11, 15, 11, 13, 12, 14, 12, 12, 16, 16, 14, 15, 15, 16, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3425 10, 16, 9, 13, 12, 15, 11, 12, 13, 16, 11, 14, 13, 16, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3426 16, 16, 14, 15, 16, 16, 13, 13, 8, 14, 10, 13, 9, 13, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3427 11, 15, 12, 14, 11, 14, 12, 12, 16, 16, 15, 16, 15, 16, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3428 10, 15, 10, 13, 11, 14, 11, 12, 11, 15, 11, 14, 12, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3429 15, 16, 14, 15, 14, 16, 13, 13, 12, 16, 11, 14, 13, 16, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3430 12, 16, 11, 14, 13, 15, 12, 12, 15, 16, 12, 14, 15, 16, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3431 11, 16, 12, 14, 10, 14, 11, 12, 13, 16, 13, 16, 12, 14, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3432 16, 16, 16, 16, 15, 16, 14, 13, 12, 16, 13, 15, 12, 14, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3433 13, 16, 13, 15, 12, 14, 12, 13, 16, 16, 14, 16, 13, 15, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3434 15, 16, 14, 16, 14, 16, 13, 13, 14, 16, 13, 15, 13, 16, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3435 14, 16, 12, 14, 13, 14, 12, 12, 9, 16, 11, 14, 11, 15, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3436 13, 16, 12, 14, 12, 15, 13, 13, 16, 16, 14, 15, 15, 15, 14, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3437 11, 16, 11, 14, 12, 16, 12, 13, 13, 16, 12, 14, 13, 16, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3438 16, 16, 14, 15, 16, 16, 14, 13, 11, 16, 10, 13, 13, 16, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3439 14, 16, 11, 14, 14, 16, 12, 12, 16, 16, 14, 14, 16, 16, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3440 11, 16, 12, 14, 11, 15, 12, 13, 13, 16, 13, 15, 13, 16, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3441 16, 16, 15, 16, 15, 16, 14, 13, 11, 16, 12, 15, 12, 16, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3442 13, 16, 13, 15, 13, 16, 13, 13, 16, 16, 15, 16, 15, 16, 14, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3443 12, 16, 11, 14, 13, 16, 12, 12, 13, 16, 11, 14, 13, 16, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3444 16, 16, 13, 14, 15, 16, 12, 12, 11, 16, 12, 14, 10, 14, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3445 14, 16, 13, 15, 12, 15, 12, 12, 16, 16, 16, 16, 14, 15, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3446 12, 16, 13, 15, 12, 14, 12, 12, 13, 16, 13, 15, 12, 14, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3447 16, 16, 14, 16, 14, 15, 12, 12, 14, 16, 13, 15, 13, 16, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3448 13, 16, 12, 14, 13, 15, 11, 11, 14, 16, 12, 13, 12, 13, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3449 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3450 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3451 0, 8, 4, 9, 5, 10, 9, 11, 5, 11, 9, 12, 9, 13, 12, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3452 16, 16, 16, 16, 16, 16, 16, 16, 4, 11, 6, 12, 9, 13, 11, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3453 9, 16, 10, 16, 12, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3454 12, 16, 11, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3455 16, 16, 16, 16, 16, 16, 16, 16, 4, 12, 8, 13, 7, 12, 11, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3456 8, 16, 11, 16, 11, 16, 15, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3457 8, 16, 10, 16, 11, 16, 13, 16, 11, 16, 12, 16, 13, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3458 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3459 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3460 12, 16, 16, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3461 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3462 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3463 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3464 16, 16, 16, 16, 16, 16, 16, 16, 1, 10, 6, 11, 7, 12, 10, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3465 7, 12, 10, 13, 10, 16, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3466 5, 13, 7, 12, 10, 16, 12, 16, 10, 16, 11, 16, 12, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3467 16, 16, 16, 16, 16, 16, 16, 16, 11, 16, 11, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3468 16, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3469 5, 13, 9, 16, 8, 16, 12, 16, 9, 16, 12, 16, 11, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3470 16, 16, 16, 16, 16, 16, 16, 16, 9, 16, 11, 16, 12, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3471 10, 16, 12, 16, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3472 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3473 16, 16, 16, 16, 16, 16, 16, 16, 12, 16, 16, 16, 12, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3474 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3475 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3476 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3477 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3478 6, 16, 9, 16, 10, 16, 13, 16, 11, 16, 12, 16, 13, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3479 16, 16, 16, 16, 16, 16, 16, 16, 8, 16, 9, 16, 12, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3480 12, 16, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3481 11, 16, 10, 16, 16, 16, 16, 16, 16, 16, 13, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3482 16, 16, 16, 16, 16, 16, 16, 16, 8, 16, 11, 16, 11, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3483 12, 16, 13, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3484 10, 16, 12, 16, 13, 16, 16, 16, 11, 16, 13, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3485 16, 16, 16, 16, 16, 16, 16, 16, 15, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3486 16, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3487 12, 16, 16, 16, 11, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3488 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3489 16, 16, 16, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3490 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3491 16, 16, 16, 16, 16, 16, 16, 16, 7, 16, 11, 16, 12, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3492 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3493 10, 16, 11, 16, 13, 16, 16, 16, 16, 16, 13, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3494 16, 16, 16, 16, 16, 16, 16, 16, 11, 16, 10, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3495 16, 16, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3496 10, 16, 12, 16, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3497 16, 16, 16, 16, 16, 16, 16, 16, 11, 16, 13, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3498 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3499 13, 16, 12, 16, 16, 16, 16, 16, 16, 16, 12, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3500 16, 16, 16, 16, 16, 16, 16, 16, 11, 16, 16, 16, 11, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3501 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3502 13, 16, 16, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3503 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3504 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3505 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3506 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3507 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3508 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3509 0, 7, 4, 8, 4, 8, 7, 8, 6, 10, 7, 10, 8, 10, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3510 13, 16, 13, 15, 13, 15, 13, 14, 4, 10, 5, 10, 7, 10, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3511 7, 12, 8, 11, 9, 12, 10, 11, 13, 16, 13, 15, 13, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3512 9, 16, 9, 13, 12, 16, 11, 13, 11, 16, 11, 14, 13, 16, 12, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3513 15, 16, 14, 16, 15, 16, 14, 14, 4, 10, 7, 10, 6, 10, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3514 8, 12, 9, 12, 9, 11, 10, 12, 13, 16, 13, 16, 14, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3515 7, 12, 8, 12, 9, 12, 10, 12, 9, 13, 10, 13, 10, 13, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3516 14, 16, 13, 16, 14, 16, 13, 14, 12, 16, 11, 14, 13, 16, 12, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3517 13, 16, 12, 16, 14, 16, 13, 14, 16, 16, 14, 16, 15, 16, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3518 10, 16, 12, 15, 10, 14, 12, 13, 12, 16, 13, 16, 12, 14, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3519 15, 16, 14, 16, 14, 16, 14, 14, 12, 16, 13, 16, 12, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3520 13, 16, 13, 16, 13, 16, 13, 14, 16, 16, 14, 16, 15, 16, 14, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3521 15, 16, 14, 16, 15, 16, 13, 15, 16, 16, 14, 16, 15, 16, 14, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3522 16, 16, 16, 16, 16, 16, 15, 15, 2, 9, 5, 10, 6, 10, 8, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3523 7, 11, 8, 11, 9, 11, 10, 11, 14, 16, 13, 15, 14, 15, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3524 5, 11, 6, 11, 8, 12, 9, 11, 8, 13, 9, 12, 10, 13, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3525 14, 16, 13, 15, 14, 16, 14, 14, 9, 16, 8, 13, 12, 16, 11, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3526 12, 16, 11, 14, 13, 16, 12, 13, 16, 16, 14, 16, 15, 16, 14, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3527 5, 12, 8, 11, 7, 11, 9, 11, 9, 13, 10, 13, 10, 13, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3528 14, 16, 14, 16, 14, 16, 14, 15, 8, 13, 9, 13, 10, 13, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3529 9, 13, 10, 13, 10, 13, 11, 13, 13, 16, 13, 15, 13, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3530 12, 16, 11, 14, 13, 16, 12, 14, 12, 16, 11, 14, 13, 16, 12, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3531 14, 16, 13, 16, 14, 16, 13, 14, 10, 16, 12, 15, 9, 14, 11, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3532 12, 16, 13, 16, 12, 15, 12, 14, 16, 16, 15, 16, 15, 16, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3533 12, 16, 13, 16, 12, 16, 12, 14, 12, 16, 13, 16, 12, 15, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3534 15, 16, 14, 16, 14, 16, 14, 14, 15, 16, 14, 16, 14, 16, 14, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3535 14, 16, 13, 16, 14, 16, 13, 14, 16, 16, 14, 16, 14, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3536 6, 14, 9, 13, 9, 14, 11, 12, 10, 14, 11, 13, 11, 14, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3537 16, 16, 15, 16, 15, 16, 14, 15, 8, 15, 9, 13, 11, 14, 11, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3538 11, 16, 11, 14, 12, 15, 12, 14, 16, 16, 15, 16, 16, 16, 15, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3539 10, 16, 9, 14, 12, 16, 12, 13, 13, 16, 11, 15, 14, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3540 16, 16, 15, 16, 16, 16, 15, 16, 8, 15, 10, 13, 10, 14, 11, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3541 11, 16, 12, 14, 12, 14, 12, 14, 16, 16, 16, 16, 16, 16, 15, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3542 10, 16, 11, 14, 11, 15, 12, 13, 11, 16, 11, 14, 12, 15, 12, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3543 16, 16, 14, 16, 15, 16, 14, 15, 12, 16, 11, 15, 13, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3544 12, 16, 11, 14, 13, 16, 13, 14, 15, 16, 13, 16, 16, 16, 14, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3545 10, 16, 12, 15, 10, 15, 12, 13, 13, 16, 13, 16, 12, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3546 16, 16, 16, 16, 16, 16, 15, 15, 12, 16, 13, 16, 12, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3547 12, 16, 13, 16, 12, 16, 13, 14, 16, 16, 15, 16, 14, 16, 14, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3548 15, 16, 14, 16, 15, 16, 14, 15, 14, 16, 13, 16, 14, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3549 14, 16, 13, 15, 14, 16, 13, 14, 9, 16, 11, 16, 11, 16, 12, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3550 13, 16, 12, 16, 13, 16, 13, 14, 16, 16, 15, 16, 16, 16, 15, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3551 11, 16, 11, 16, 12, 16, 13, 14, 13, 16, 12, 16, 13, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3552 16, 16, 15, 16, 16, 16, 15, 15, 11, 16, 10, 15, 13, 16, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3553 14, 16, 12, 16, 14, 16, 13, 14, 16, 16, 15, 16, 16, 16, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3554 11, 16, 12, 16, 11, 16, 13, 14, 13, 16, 13, 16, 13, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3555 16, 16, 16, 16, 16, 16, 15, 15, 11, 16, 12, 16, 12, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3556 13, 16, 13, 16, 13, 16, 13, 14, 16, 16, 15, 16, 16, 16, 15, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3557 12, 16, 12, 15, 13, 16, 12, 14, 13, 16, 12, 16, 14, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3558 16, 16, 14, 16, 16, 16, 14, 14, 11, 16, 12, 16, 11, 16, 12, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3559 14, 16, 14, 16, 12, 16, 13, 14, 16, 16, 16, 16, 16, 16, 15, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3560 12, 16, 13, 16, 12, 16, 12, 14, 13, 16, 13, 16, 12, 16, 13, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3561 16, 16, 16, 16, 15, 16, 14, 14, 14, 16, 13, 16, 14, 16, 12, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3562 13, 16, 13, 16, 13, 16, 12, 13, 15, 16, 13, 14, 14, 15, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3563 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3564 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3565 0, 8, 4, 10, 5, 11, 10, 16, 5, 12, 9, 16, 10, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3566 16, 16, 16, 16, 16, 16, 16, 16, 4, 12, 7, 12, 9, 16, 12, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3567 9, 16, 11, 16, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3568 12, 16, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3569 16, 16, 16, 16, 16, 16, 16, 16, 4, 12, 9, 16, 8, 16, 12, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3570 8, 16, 11, 16, 11, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3571 8, 16, 11, 16, 12, 16, 16, 16, 11, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3572 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3573 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3574 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3575 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3576 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3577 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3578 16, 16, 16, 16, 16, 16, 16, 16, 1, 11, 6, 12, 7, 16, 11, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3579 7, 16, 10, 16, 11, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3580 5, 16, 7, 16, 10, 16, 12, 16, 9, 16, 11, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3581 16, 16, 16, 16, 16, 16, 16, 16, 11, 16, 11, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3582 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3583 5, 16, 10, 16, 8, 16, 12, 16, 9, 16, 12, 16, 12, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3584 16, 16, 16, 16, 16, 16, 16, 16, 9, 16, 11, 16, 12, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3585 10, 16, 12, 16, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3586 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3587 16, 16, 16, 16, 16, 16, 16, 16, 12, 16, 16, 16, 12, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3588 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3589 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3590 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3591 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3592 5, 16, 9, 16, 10, 16, 16, 16, 11, 16, 12, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3593 16, 16, 16, 16, 16, 16, 16, 16, 8, 16, 9, 16, 12, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3594 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3595 11, 16, 10, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3596 16, 16, 16, 16, 16, 16, 16, 16, 8, 16, 11, 16, 11, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3597 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3598 10, 16, 12, 16, 16, 16, 16, 16, 11, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3599 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3600 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3601 11, 16, 16, 16, 11, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3602 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3603 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3604 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3605 16, 16, 16, 16, 16, 16, 16, 16, 6, 16, 10, 16, 12, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3606 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3607 9, 16, 10, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3608 16, 16, 16, 16, 16, 16, 16, 16, 11, 16, 9, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3609 16, 16, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3610 9, 16, 16, 16, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3611 16, 16, 16, 16, 16, 16, 16, 16, 11, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3612 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3613 13, 16, 12, 16, 16, 16, 16, 16, 16, 16, 12, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3614 16, 16, 16, 16, 16, 16, 16, 16, 11, 16, 16, 16, 11, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3615 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3616 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3617 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3618 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3619 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3620 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3621 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3622 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3623 0, 8, 4, 10, 5, 9, 8, 10, 6, 11, 8, 12, 8, 11, 10, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3624 14, 16, 14, 16, 14, 16, 16, 16, 3, 11, 5, 11, 8, 12, 10, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3625 7, 12, 9, 13, 10, 13, 11, 13, 14, 16, 14, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3626 9, 16, 9, 16, 12, 16, 12, 16, 11, 16, 11, 16, 14, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3627 16, 16, 16, 16, 16, 16, 16, 16, 4, 11, 7, 12, 6, 11, 10, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3628 8, 13, 9, 13, 9, 13, 11, 14, 13, 16, 14, 16, 14, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3629 7, 13, 9, 13, 9, 13, 11, 13, 9, 14, 10, 16, 11, 16, 12, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3630 15, 16, 14, 16, 16, 16, 16, 16, 12, 16, 12, 16, 14, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3631 13, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3632 10, 16, 12, 16, 10, 16, 13, 16, 12, 16, 13, 16, 12, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3633 16, 16, 16, 16, 16, 16, 16, 16, 12, 16, 13, 16, 13, 16, 14, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3634 13, 16, 14, 16, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3635 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3636 16, 16, 16, 16, 16, 16, 16, 16, 2, 10, 5, 11, 6, 11, 9, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3637 7, 12, 9, 13, 9, 13, 11, 13, 14, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3638 4, 12, 6, 12, 8, 13, 10, 13, 8, 13, 9, 13, 11, 16, 12, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3639 16, 16, 16, 16, 16, 16, 16, 16, 9, 16, 8, 16, 12, 16, 12, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3640 12, 16, 11, 16, 13, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3641 5, 12, 8, 13, 7, 13, 10, 13, 8, 14, 10, 14, 10, 14, 12, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3642 16, 16, 16, 16, 16, 16, 16, 16, 7, 14, 9, 16, 10, 16, 11, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3643 8, 14, 10, 16, 11, 16, 12, 16, 13, 16, 14, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3644 11, 16, 11, 16, 13, 16, 13, 16, 12, 16, 12, 16, 14, 16, 14, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3645 16, 16, 16, 16, 16, 16, 16, 16, 9, 16, 12, 16, 10, 16, 12, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3646 12, 16, 13, 16, 12, 16, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3647 12, 16, 13, 16, 12, 16, 14, 16, 12, 16, 13, 16, 12, 16, 14, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3648 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3649 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3650 6, 16, 8, 16, 9, 16, 11, 13, 10, 16, 11, 16, 11, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3651 16, 16, 16, 16, 16, 16, 16, 16, 7, 16, 9, 16, 10, 16, 12, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3652 11, 16, 11, 16, 12, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3653 10, 16, 9, 16, 12, 16, 13, 16, 13, 16, 12, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3654 16, 16, 16, 16, 16, 16, 16, 16, 7, 16, 10, 16, 9, 16, 12, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3655 11, 16, 12, 16, 12, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3656 9, 16, 11, 16, 11, 16, 12, 16, 11, 16, 12, 16, 13, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3657 16, 16, 16, 16, 16, 16, 16, 16, 12, 16, 12, 16, 14, 16, 14, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3658 12, 16, 12, 16, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3659 10, 16, 12, 16, 10, 16, 13, 16, 13, 16, 14, 16, 13, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3660 16, 16, 16, 16, 16, 16, 16, 16, 12, 16, 13, 16, 12, 16, 14, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3661 12, 16, 14, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3662 16, 16, 16, 16, 16, 16, 16, 16, 14, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3663 16, 16, 16, 16, 16, 16, 16, 16, 9, 16, 11, 16, 11, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3664 12, 16, 13, 16, 13, 16, 15, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3665 10, 16, 11, 16, 13, 16, 13, 16, 13, 16, 13, 16, 14, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3666 16, 16, 16, 16, 16, 16, 16, 16, 11, 16, 11, 16, 14, 16, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3667 14, 16, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3668 10, 16, 12, 16, 12, 16, 13, 16, 13, 16, 13, 16, 13, 16, 14, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3669 16, 16, 16, 16, 16, 16, 16, 16, 11, 16, 12, 16, 13, 16, 14, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3670 13, 16, 13, 16, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3671 12, 16, 12, 16, 14, 16, 14, 16, 14, 16, 14, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3672 16, 16, 16, 16, 16, 16, 16, 16, 11, 16, 13, 16, 11, 16, 14, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3673 16, 16, 16, 16, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3674 12, 16, 14, 16, 13, 16, 14, 16, 16, 16, 16, 16, 14, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3675 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3676 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3677 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3678 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3679 0, 10, 4, 12, 5, 16, 11, 16, 6, 16, 10, 16, 11, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3680 16, 16, 16, 16, 16, 16, 16, 16, 3, 16, 7, 16, 10, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3681 9, 16, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3682 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3683 16, 16, 16, 16, 16, 16, 16, 16, 4, 16, 10, 16, 9, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3684 9, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3685 9, 16, 12, 16, 16, 16, 16, 16, 11, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3686 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3687 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3688 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3689 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3690 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3691 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3692 16, 16, 16, 16, 16, 16, 16, 16, 1, 16, 6, 16, 8, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3693 8, 16, 11, 16, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3694 5, 16, 8, 16, 11, 16, 16, 16, 10, 16, 12, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3695 16, 16, 16, 16, 16, 16, 16, 16, 12, 16, 11, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3696 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3697 5, 16, 11, 16, 9, 16, 16, 16, 10, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3698 16, 16, 16, 16, 16, 16, 16, 16, 9, 16, 12, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3699 10, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3700 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3701 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3702 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3703 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3704 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3705 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3706 5, 16, 9, 16, 11, 16, 16, 16, 11, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3707 16, 16, 16, 16, 16, 16, 16, 16, 8, 16, 10, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3708 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3709 12, 16, 11, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3710 16, 16, 16, 16, 16, 16, 16, 16, 8, 16, 16, 16, 11, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3711 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3712 10, 16, 16, 16, 16, 16, 16, 16, 12, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3713 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3714 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3715 12, 16, 16, 16, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3716 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3717 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3718 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3719 16, 16, 16, 16, 16, 16, 16, 16, 6, 16, 11, 16, 15, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3720 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3721 9, 16, 10, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3722 16, 16, 16, 16, 16, 16, 16, 16, 11, 16, 9, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3723 16, 16, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3724 10, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3725 16, 16, 16, 16, 16, 16, 16, 16, 11, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3726 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3727 16, 16, 12, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3728 16, 16, 16, 16, 16, 16, 16, 16, 12, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3729 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3730 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3731 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3732 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3733 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3734 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3735 };
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3736
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3737 static const uint8_t rv34_table_inter_secondpat[NUM_INTER_TABLES][2][OTHERBLK_VLC_SIZE] = {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3738 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3739 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3740 0, 4, 8, 3, 6, 8, 6, 7, 8, 4, 6, 8, 6, 7, 8, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3741 8, 8, 7, 8, 8, 8, 8, 8, 8, 8, 8, 3, 6, 8, 4, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3742 9, 7, 7, 8, 5, 7, 9, 6, 7, 9, 8, 8, 8, 7, 8, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3743 8, 8, 8, 8, 8, 7, 6, 8, 9, 7, 8, 9, 7, 8, 9, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3744 8, 9, 7, 8, 9, 8, 8, 9, 8, 8, 9, 8, 9, 9, 8, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3745 8, 8, 9, 9, 8, 9, 9, 7, 8, 8, 8, 9, 9, 8, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3746 8, 8, 8, 7, 8, 8, 8, 8, 8, 7, 7, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3747 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3748 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3749 0, 4, 9, 3, 6, 9, 7, 8, 10, 3, 6, 9, 5, 7, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3750 9, 10, 7, 8, 10, 8, 9, 10, 10, 10, 10, 2, 6, 9, 4, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3751 10, 8, 9, 10, 4, 7, 10, 6, 7, 10, 9, 9, 10, 7, 8, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3752 8, 9, 10, 10, 10, 10, 6, 8, 10, 7, 9, 11, 9, 10, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3753 9, 11, 8, 9, 11, 10, 10, 11, 8, 9, 11, 9, 10, 11, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3754 10, 8, 10, 11, 9, 10, 11, 9, 10, 11, 8, 10, 11, 9, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3755 10, 10, 11, 8, 10, 11, 9, 10, 10, 10, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3756 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3757 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3758 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3759 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3760 0, 4, 8, 3, 6, 8, 6, 7, 9, 4, 6, 8, 5, 7, 8, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3761 8, 9, 7, 7, 8, 8, 8, 8, 8, 9, 8, 3, 6, 8, 4, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3762 9, 7, 7, 9, 5, 6, 9, 6, 7, 9, 8, 8, 9, 7, 8, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3763 8, 8, 8, 8, 8, 8, 6, 8, 9, 7, 8, 10, 7, 8, 9, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3764 8, 10, 7, 8, 10, 8, 8, 9, 7, 8, 9, 8, 9, 9, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3765 8, 7, 9, 10, 8, 9, 10, 8, 8, 8, 8, 9, 10, 8, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3766 8, 8, 8, 7, 8, 8, 8, 8, 8, 8, 7, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3767 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3768 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3769 0, 4, 9, 3, 6, 10, 8, 9, 11, 3, 5, 9, 5, 7, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3770 10, 11, 7, 8, 10, 9, 9, 11, 11, 11, 12, 2, 5, 10, 4, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3771 10, 8, 9, 11, 4, 6, 10, 6, 7, 10, 9, 10, 11, 7, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3772 9, 9, 11, 11, 11, 11, 6, 8, 11, 7, 9, 11, 9, 10, 12, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3773 9, 11, 8, 9, 12, 10, 10, 12, 8, 10, 11, 10, 10, 11, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3774 11, 8, 10, 12, 9, 11, 12, 10, 11, 12, 9, 10, 12, 10, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3775 11, 11, 12, 9, 10, 12, 10, 10, 11, 11, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3776 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3777 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3778 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3779 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3780 0, 4, 8, 3, 6, 9, 7, 8, 9, 4, 6, 8, 5, 7, 9, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3781 9, 9, 7, 8, 9, 8, 8, 9, 9, 9, 9, 2, 6, 9, 4, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3782 9, 7, 8, 10, 5, 7, 9, 6, 7, 9, 8, 8, 9, 7, 8, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3783 8, 8, 9, 9, 9, 9, 6, 8, 10, 7, 8, 10, 8, 9, 10, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3784 8, 10, 8, 8, 10, 9, 9, 10, 8, 9, 10, 9, 9, 10, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3785 9, 8, 9, 10, 8, 9, 10, 8, 9, 10, 8, 9, 10, 9, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3786 9, 9, 9, 8, 9, 9, 8, 9, 9, 9, 9, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3787 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3788 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3789 0, 4, 10, 3, 6, 10, 8, 10, 12, 2, 6, 10, 6, 8, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3790 11, 12, 7, 9, 11, 9, 10, 12, 12, 13, 13, 2, 6, 10, 4, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3791 11, 9, 10, 13, 4, 7, 11, 7, 8, 11, 10, 11, 12, 8, 9, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3792 10, 10, 12, 12, 12, 13, 6, 9, 12, 8, 10, 13, 10, 12, 14, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3793 10, 13, 9, 10, 13, 11, 11, 13, 9, 11, 13, 11, 11, 13, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3794 13, 9, 11, 13, 10, 12, 14, 11, 12, 14, 9, 11, 14, 11, 12, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3795 12, 12, 14, 9, 12, 13, 11, 12, 13, 13, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3796 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3797 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3798 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3799 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3800 0, 4, 9, 3, 6, 9, 7, 8, 10, 3, 6, 9, 6, 7, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3801 9, 10, 7, 8, 9, 8, 9, 10, 10, 10, 11, 2, 6, 9, 4, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3802 10, 7, 9, 10, 4, 7, 10, 6, 7, 10, 9, 9, 10, 7, 8, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3803 8, 9, 10, 10, 10, 10, 6, 8, 11, 7, 9, 11, 8, 10, 11, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3804 9, 11, 8, 9, 11, 9, 9, 11, 8, 9, 11, 9, 10, 11, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3805 10, 8, 10, 11, 9, 10, 11, 9, 10, 11, 8, 10, 11, 9, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3806 10, 10, 11, 8, 10, 11, 9, 10, 11, 10, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3807 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3808 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3809 0, 4, 12, 3, 7, 12, 10, 11, 14, 3, 6, 12, 7, 9, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3810 13, 14, 8, 11, 13, 11, 12, 14, 14, 14, 14, 1, 7, 12, 5, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3811 13, 10, 12, 14, 4, 8, 13, 8, 9, 13, 12, 13, 14, 9, 11, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3812 11, 12, 14, 14, 14, 14, 7, 10, 14, 9, 11, 14, 11, 13, 16, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3813 11, 14, 10, 12, 14, 13, 13, 16, 10, 12, 15, 12, 13, 15, 15, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3814 15, 10, 13, 15, 12, 13, 14, 13, 15, 15, 10, 13, 15, 12, 13, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3815 13, 14, 15, 10, 13, 14, 12, 13, 14, 14, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3816 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3817 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3818 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3819 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3820 0, 4, 9, 3, 6, 10, 7, 9, 11, 3, 5, 9, 5, 7, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3821 10, 12, 7, 8, 10, 9, 10, 11, 11, 12, 12, 2, 6, 10, 4, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3822 10, 7, 9, 12, 4, 7, 10, 6, 7, 11, 9, 10, 12, 7, 9, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3823 9, 9, 11, 11, 11, 12, 5, 8, 11, 7, 9, 12, 9, 10, 13, 6,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3824 9, 12, 8, 9, 12, 10, 10, 12, 8, 10, 12, 10, 10, 12, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3825 12, 8, 10, 12, 9, 11, 13, 10, 11, 13, 9, 11, 13, 10, 11, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3826 11, 11, 13, 9, 11, 12, 10, 11, 12, 11, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3827 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3828 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3829 0, 4, 12, 3, 7, 13, 10, 12, 15, 3, 7, 13, 7, 9, 14, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3830 12, 13, 8, 11, 14, 11, 13, 15, 15, 14, 14, 1, 6, 13, 5, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3831 13, 10, 13, 15, 4, 8, 13, 8, 9, 14, 13, 13, 15, 8, 11, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3832 12, 12, 15, 15, 14, 14, 7, 10, 13, 9, 11, 13, 12, 14, 16, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3833 11, 14, 10, 12, 15, 13, 13, 16, 10, 12, 15, 12, 13, 15, 15, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3834 15, 11, 12, 14, 12, 14, 14, 13, 15, 15, 10, 12, 14, 12, 13, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3835 14, 15, 15, 10, 13, 13, 12, 13, 15, 14, 14, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3836 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3837 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3838 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3839 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3840 0, 5, 10, 3, 7, 11, 9, 11, 14, 3, 7, 11, 7, 8, 12, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3841 12, 14, 7, 9, 12, 10, 11, 14, 13, 14, 16, 1, 7, 11, 5, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3842 12, 9, 11, 15, 4, 8, 12, 7, 9, 13, 11, 12, 15, 8, 10, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3843 10, 11, 14, 14, 14, 16, 6, 9, 13, 8, 11, 14, 10, 13, 16, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3844 10, 14, 9, 11, 15, 12, 13, 16, 9, 11, 15, 12, 12, 15, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3845 16, 10, 12, 14, 11, 13, 15, 12, 14, 16, 10, 12, 15, 11, 13, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3846 13, 14, 16, 10, 13, 16, 12, 13, 15, 14, 15, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3847 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3848 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3849 0, 5, 16, 3, 8, 14, 11, 13, 14, 2, 8, 14, 8, 10, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3850 13, 14, 9, 13, 16, 12, 13, 16, 16, 14, 16, 1, 7, 14, 6, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3851 14, 12, 16, 16, 5, 9, 14, 9, 11, 16, 15, 16, 16, 10, 12, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3852 13, 13, 16, 16, 14, 16, 8, 11, 14, 11, 13, 14, 14, 14, 16, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3853 12, 14, 11, 13, 16, 16, 16, 16, 10, 12, 15, 13, 14, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3854 16, 11, 14, 14, 14, 15, 16, 16, 15, 16, 10, 13, 16, 13, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3855 16, 16, 16, 10, 13, 16, 13, 14, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3856 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3857 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3858 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3859 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3860 0, 5, 11, 3, 7, 13, 9, 12, 16, 3, 7, 12, 6, 9, 14, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3861 13, 16, 7, 10, 16, 11, 12, 16, 16, 16, 16, 1, 6, 12, 5, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3862 16, 9, 13, 16, 4, 8, 16, 7, 10, 16, 12, 15, 16, 7, 11, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3863 11, 12, 16, 16, 16, 16, 6, 10, 15, 8, 11, 16, 11, 14, 16, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3864 11, 16, 10, 12, 16, 13, 16, 16, 9, 13, 16, 13, 14, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3865 16, 10, 12, 16, 12, 16, 16, 16, 16, 16, 11, 13, 16, 13, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3866 16, 16, 16, 12, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3867 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3868 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3869 0, 5, 16, 3, 8, 16, 12, 12, 16, 2, 8, 16, 8, 10, 16, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3870 13, 16, 9, 13, 16, 12, 13, 16, 16, 16, 16, 1, 8, 16, 6, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3871 16, 12, 16, 16, 5, 9, 16, 9, 11, 16, 13, 16, 16, 9, 12, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3872 12, 12, 16, 16, 16, 16, 8, 11, 13, 11, 12, 16, 14, 16, 16, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3873 12, 16, 11, 13, 16, 16, 15, 16, 9, 13, 14, 12, 13, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3874 16, 10, 12, 13, 14, 13, 16, 16, 16, 16, 9, 13, 16, 13, 12, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3875 16, 16, 16, 10, 12, 16, 14, 15, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3876 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3877 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3878 };
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3879
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3880 static const uint8_t rv34_table_inter_thirdpat[NUM_INTER_TABLES][2][OTHERBLK_VLC_SIZE] = {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3881 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3882 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3883 0, 5, 8, 3, 6, 9, 6, 7, 9, 4, 6, 9, 6, 7, 9, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3884 8, 9, 7, 8, 9, 8, 9, 9, 9, 9, 9, 2, 6, 9, 4, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3885 9, 7, 8, 9, 5, 7, 9, 6, 7, 9, 8, 8, 9, 7, 8, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3886 8, 9, 9, 9, 9, 8, 5, 8, 10, 6, 8, 10, 8, 9, 9, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3887 8, 10, 7, 9, 10, 8, 9, 9, 8, 9, 10, 9, 9, 10, 9, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3888 9, 7, 9, 10, 8, 9, 10, 8, 8, 9, 8, 9, 10, 8, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3889 8, 8, 9, 8, 9, 9, 8, 9, 9, 8, 8, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3890 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3891 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3892 0, 4, 9, 2, 6, 10, 7, 8, 10, 3, 6, 10, 6, 7, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3893 9, 10, 8, 9, 11, 9, 10, 11, 10, 11, 11, 2, 6, 10, 4, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3894 10, 8, 9, 10, 5, 7, 10, 7, 8, 10, 9, 9, 10, 9, 10, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3895 10, 10, 11, 11, 11, 11, 6, 9, 11, 7, 9, 11, 9, 10, 12, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3896 9, 11, 8, 10, 11, 10, 10, 11, 10, 11, 12, 11, 11, 12, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3897 11, 9, 11, 12, 10, 11, 12, 10, 11, 12, 10, 11, 12, 10, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3898 11, 11, 12, 11, 12, 12, 11, 12, 12, 12, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3899 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3900 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3901 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3902 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3903 0, 4, 9, 3, 6, 9, 6, 8, 9, 4, 6, 9, 5, 7, 9, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3904 8, 9, 7, 8, 10, 8, 9, 10, 9, 9, 9, 2, 6, 9, 4, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3905 9, 7, 8, 9, 5, 7, 9, 6, 7, 10, 8, 9, 9, 7, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3906 8, 9, 10, 9, 9, 9, 5, 8, 10, 6, 8, 10, 8, 9, 10, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3907 8, 10, 7, 9, 11, 9, 9, 10, 8, 9, 10, 9, 10, 10, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3908 9, 7, 9, 10, 8, 9, 11, 8, 9, 10, 8, 9, 11, 8, 9, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3909 9, 9, 10, 9, 9, 10, 9, 9, 10, 9, 9, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3910 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3911 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3912 0, 4, 9, 2, 5, 10, 7, 8, 11, 3, 6, 10, 6, 7, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3913 10, 11, 8, 9, 11, 9, 10, 11, 11, 11, 12, 2, 6, 10, 4, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3914 10, 8, 9, 11, 5, 7, 10, 6, 8, 10, 9, 10, 11, 9, 10, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3915 10, 10, 12, 11, 12, 12, 6, 9, 11, 8, 9, 12, 9, 11, 13, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3916 10, 12, 9, 10, 12, 11, 11, 12, 10, 12, 13, 11, 12, 13, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3917 13, 10, 11, 13, 10, 12, 13, 11, 12, 13, 11, 12, 13, 11, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3918 12, 12, 13, 12, 13, 14, 13, 13, 14, 13, 13, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3919 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3920 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3921 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3922 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3923 0, 4, 9, 3, 6, 9, 7, 8, 10, 3, 6, 9, 5, 7, 10, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3924 9, 10, 7, 9, 10, 8, 9, 10, 10, 10, 10, 2, 6, 9, 4, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3925 10, 7, 9, 10, 4, 7, 10, 6, 8, 10, 8, 9, 10, 8, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3926 9, 9, 10, 10, 10, 10, 5, 8, 11, 7, 9, 11, 8, 10, 11, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3927 9, 11, 8, 9, 11, 9, 10, 11, 9, 10, 11, 10, 10, 11, 11, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3928 11, 8, 10, 11, 9, 10, 11, 9, 10, 11, 9, 10, 12, 9, 10, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3929 10, 11, 11, 9, 10, 11, 10, 11, 11, 10, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3930 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3931 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3932 0, 4, 10, 3, 6, 11, 8, 10, 12, 3, 6, 11, 6, 8, 11, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3933 11, 13, 9, 10, 13, 11, 12, 14, 13, 13, 14, 1, 6, 10, 5, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3934 12, 9, 10, 13, 5, 8, 11, 7, 9, 12, 11, 11, 13, 10, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3935 11, 12, 14, 14, 13, 15, 7, 10, 12, 9, 11, 14, 11, 12, 15, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3936 11, 13, 10, 11, 14, 12, 12, 14, 12, 14, 16, 13, 13, 16, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3937 16, 12, 13, 15, 12, 14, 15, 13, 14, 16, 13, 14, 16, 14, 14, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3938 14, 15, 16, 14, 16, 16, 15, 16, 16, 15, 15, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3939 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3940 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3941 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3942 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3943 0, 4, 9, 2, 6, 9, 7, 9, 11, 3, 6, 10, 6, 7, 10, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3944 10, 11, 7, 9, 10, 9, 10, 11, 11, 11, 12, 2, 6, 10, 4, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3945 10, 8, 9, 11, 5, 7, 10, 7, 8, 10, 9, 10, 11, 8, 9, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3946 9, 10, 11, 11, 12, 11, 6, 9, 11, 7, 10, 12, 9, 11, 12, 7,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3947 10, 12, 9, 10, 12, 11, 11, 12, 9, 11, 12, 10, 11, 12, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3948 12, 9, 11, 12, 9, 11, 13, 11, 12, 13, 9, 11, 13, 10, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3949 11, 12, 13, 11, 12, 13, 11, 12, 13, 12, 13, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3950 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3951 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3952 0, 4, 11, 2, 6, 12, 9, 11, 16, 4, 7, 12, 7, 9, 15, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3953 12, 16, 10, 11, 16, 11, 13, 16, 16, 16, 16, 1, 6, 11, 5, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3954 16, 9, 12, 16, 6, 9, 15, 8, 10, 16, 12, 13, 16, 12, 14, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3955 12, 16, 16, 16, 16, 16, 8, 11, 14, 10, 12, 16, 12, 16, 16, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3956 13, 16, 12, 16, 16, 13, 14, 16, 14, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3957 16, 13, 13, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3958 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3959 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3960 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3961 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3962 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3963 0, 5, 9, 3, 6, 10, 8, 10, 12, 3, 6, 10, 6, 8, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3964 11, 12, 8, 9, 11, 10, 10, 12, 13, 13, 13, 1, 6, 10, 5, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3965 11, 9, 11, 13, 5, 8, 11, 7, 9, 11, 11, 11, 13, 8, 9, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3966 10, 10, 12, 13, 13, 14, 6, 9, 12, 8, 11, 13, 11, 13, 15, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3967 10, 13, 10, 11, 13, 12, 13, 15, 10, 12, 13, 12, 12, 13, 14, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3968 14, 9, 12, 14, 11, 13, 15, 13, 15, 16, 11, 13, 15, 12, 14, 15,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3969 14, 15, 16, 13, 14, 15, 14, 14, 15, 15, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3970 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3971 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3972 0, 4, 16, 2, 7, 16, 10, 13, 16, 3, 8, 16, 7, 10, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3973 16, 16, 12, 16, 16, 15, 16, 16, 16, 16, 16, 1, 7, 16, 6, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3974 16, 10, 16, 16, 7, 12, 16, 9, 13, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3975 16, 16, 16, 16, 16, 16, 9, 16, 16, 11, 13, 16, 16, 16, 16, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3976 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3977 16, 16, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3978 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3979 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3980 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3981 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3982 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3983 0, 4, 9, 3, 6, 11, 9, 12, 16, 3, 6, 10, 6, 8, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3984 13, 16, 8, 9, 12, 10, 11, 13, 16, 16, 16, 1, 6, 10, 5, 8,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3985 12, 10, 13, 16, 5, 8, 11, 8, 9, 13, 13, 14, 16, 9, 10, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3986 11, 12, 15, 16, 16, 16, 6, 10, 13, 9, 12, 16, 14, 16, 16, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3987 12, 14, 11, 13, 16, 16, 16, 16, 12, 14, 16, 14, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3988 16, 11, 16, 16, 13, 16, 16, 16, 16, 16, 12, 16, 16, 13, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3989 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3990 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3991 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3992 0, 4, 16, 2, 8, 16, 10, 16, 16, 3, 9, 16, 8, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3993 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 1, 7, 16, 5, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3994 16, 16, 16, 16, 7, 16, 16, 11, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3995 16, 16, 16, 16, 16, 16, 10, 15, 16, 10, 16, 16, 16, 16, 16, 14,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3996 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3997 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3998 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
3999 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4000 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4001 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4002 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4003 0, 3, 9, 3, 7, 11, 11, 15, 16, 3, 6, 11, 7, 9, 12, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4004 16, 16, 8, 10, 16, 11, 16, 16, 16, 16, 16, 1, 6, 11, 6, 9,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4005 15, 16, 16, 16, 5, 8, 16, 9, 11, 16, 16, 16, 16, 10, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4006 16, 16, 16, 16, 16, 16, 7, 11, 16, 11, 16, 16, 16, 16, 16, 11,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4007 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4008 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4009 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4010 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4011 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4012 0, 4, 16, 2, 8, 16, 16, 16, 16, 3, 12, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4013 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 1, 7, 16, 5, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4014 16, 16, 16, 16, 6, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4015 16, 16, 16, 16, 16, 16, 9, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4016 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4017 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4018 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4019 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4020 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4021 };
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4022
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4023
5996
9319837c5d02 Rename some tables
kostya
parents: 5981
diff changeset
4024 static const uint8_t rv34_inter_coeff[NUM_INTER_TABLES][COEFF_VLC_SIZE] = {
5965
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4025 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4026 1, 2, 4, 4, 5, 5, 6, 7, 7, 7, 8, 8, 8, 9, 9, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4027 10, 10, 10, 11, 11, 11, 11, 12, 11, 11, 11, 13, 14, 15, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4028 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4029 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4030 1, 2, 3, 5, 5, 6, 6, 7, 7, 8, 9, 9, 9, 10, 10, 10,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4031 11, 11, 12, 12, 12, 12, 13, 13, 12, 12, 13, 14, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4032 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4033 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4034 1, 2, 3, 4, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4035 12, 12, 13, 13, 13, 14, 14, 15, 14, 14, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4036 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4037 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4038 1, 2, 3, 4, 5, 6, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4039 13, 13, 15, 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4040 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4041 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4042 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4043 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4044 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4045 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4046 1, 2, 3, 4, 5, 6, 7, 8, 10, 10, 11, 11, 13, 12, 12, 13,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4047 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4048 },
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4049 {
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4050 1, 2, 3, 4, 5, 6, 7, 8, 10, 10, 10, 11, 14, 13, 15, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4051 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 15, 16, 16, 16,
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4052 }
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4053 };
febfff2ccb8d RV30/40 common VLC tables
kostya
parents:
diff changeset
4054
7760
c4a4495715dd Globally rename the header inclusion guard names.
stefano
parents: 5996
diff changeset
4055 #endif /* AVCODEC_RV34VLC_H */