annotate rv40vlc2.h @ 12514:e6d711ba5760 libavcodec

rawdec: ensure that there is always a valid palette for formats that should have one like gray8 etc.
author reimar
date Sat, 25 Sep 2010 08:44:35 +0000
parents 7dd2a45249a9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5937
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
1 /*
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
2 * RealVideo 4 decoder
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
3 * copyright (c) 2007 Konstantin Shishkov
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
4 *
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
5 * This file is part of FFmpeg.
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
6 *
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
7 * FFmpeg is free software; you can redistribute it and/or
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
9 * License as published by the Free Software Foundation; either
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
10 * version 2.1 of the License, or (at your option) any later version.
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
11 *
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
12 * FFmpeg is distributed in the hope that it will be useful,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
15 * Lesser General Public License for more details.
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
16 *
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
17 * You should have received a copy of the GNU Lesser General Public
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
18 * License along with FFmpeg; if not, write to the Free Software
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
20 */
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
21
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
22 /**
11644
7dd2a45249a9 Remove explicit filename from Doxygen @file commands.
diego
parents: 8718
diff changeset
23 * @file
5943
337a95c66190 spelling cosmetics
diego
parents: 5937
diff changeset
24 * RV40 VLC tables used for macroblock information decoding
5937
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
25 */
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
26
7760
c4a4495715dd Globally rename the header inclusion guard names.
stefano
parents: 5990
diff changeset
27 #ifndef AVCODEC_RV40VLC2_H
c4a4495715dd Globally rename the header inclusion guard names.
stefano
parents: 5990
diff changeset
28 #define AVCODEC_RV40VLC2_H
5937
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
29
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
30 #include <stdint.h>
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
31
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
32 /**
5943
337a95c66190 spelling cosmetics
diego
parents: 5937
diff changeset
33 * codes used for the first four block types
5937
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
34 */
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
35 //@{
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
36 #define AIC_TOP_BITS 8
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
37 #define AIC_TOP_SIZE 16
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
38 static const uint8_t rv40_aic_top_vlc_codes[AIC_TOP_SIZE] = {
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
39 0x01, 0x05, 0x01, 0x00, 0x03, 0x3D, 0x1D, 0x02,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
40 0x04, 0x3C, 0x3F, 0x1C, 0x0D, 0x3E, 0x0C, 0x01
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
41 };
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
42
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
43 static const uint8_t rv40_aic_top_vlc_bits[AIC_TOP_SIZE] = {
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
44 1, 4, 5, 5, 5, 7, 6, 5, 4, 7, 7, 6, 5, 7, 5, 3
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
45 };
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
46 //@}
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
47
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
48 /**
5943
337a95c66190 spelling cosmetics
diego
parents: 5937
diff changeset
49 * codes used for determining a pair of block types
5937
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
50 */
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
51 //@{
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
52 #define AIC_MODE2_NUM 20
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
53 #define AIC_MODE2_SIZE 81
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
54 #define AIC_MODE2_BITS 9
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
55
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
56 static const uint16_t aic_mode2_vlc_codes[AIC_MODE2_NUM][AIC_MODE2_SIZE] = {
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
57 { 0x0001, 0x0001, 0x0005, 0x01F5, 0x0011, 0x0049, 0x0000, 0x0048, 0x004B,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
58 0x0035, 0x0003, 0x0034, 0x03C9, 0x01F4, 0x00C9, 0x004A, 0x0FD9, 0x03C8,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
59 0x0010, 0x0037, 0x0001, 0x00C8, 0x0075, 0x01F7, 0x00CB, 0x0074, 0x0002,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
60 0x01F6, 0x00CA, 0x01F1, 0x01F0, 0x1F81, 0x07F9, 0x1F80, 0x1F83, 0x07F8,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
61 0x0077, 0x00F5, 0x0036, 0x07FB, 0x0076, 0x1F82, 0x00F4, 0x00F7, 0x07FA,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
62 0x0071, 0x00F6, 0x03CB, 0x03CA, 0x0FD8, 0x00F1, 0x03F5, 0x1F8D, 0x07E5,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
63 0x0013, 0x0031, 0x00F0, 0x0FDB, 0x00F3, 0x07E4, 0x0030, 0x01F3, 0x07E7,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
64 0x03F4, 0x07E6, 0x0070, 0x3F19, 0x01F2, 0x3F18, 0x0FDA, 0x0033, 0x07E1,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
65 0x01FD, 0x01FC, 0x0073, 0x01FF, 0x0FC5, 0x0FC4, 0x0FC7, 0x03F7, 0x0072, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
66 { 0x0005, 0x0005, 0x0005, 0x0079, 0x0005, 0x000D, 0x001D, 0x0078, 0x0069,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
67 0x0004, 0x0001, 0x0007, 0x0068, 0x001C, 0x001F, 0x0004, 0x006B, 0x000C,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
68 0x0004, 0x001E, 0x0006, 0x006A, 0x0015, 0x000F, 0x0014, 0x0017, 0x0007,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
69 0x0016, 0x000E, 0x0011, 0x0009, 0x00D1, 0x00D0, 0x0181, 0x00D3, 0x007B,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
70 0x0010, 0x0013, 0x0004, 0x00D2, 0x0007, 0x0319, 0x0008, 0x007A, 0x00DD,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
71 0x0019, 0x0006, 0x000B, 0x0065, 0x00DC, 0x0012, 0x0064, 0x0180, 0x00DF,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
72 0x0006, 0x0018, 0x0001, 0x00DE, 0x001D, 0x00D9, 0x001B, 0x0067, 0x000A,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
73 0x00D8, 0x00DB, 0x001C, 0x0318, 0x00DA, 0x0635, 0x0183, 0x0000, 0x00C5,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
74 0x0066, 0x0061, 0x0035, 0x00C4, 0x0182, 0x0634, 0x031B, 0x00C7, 0x001F, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
75 { 0x0005, 0x0001, 0x001D, 0x01C1, 0x0035, 0x00F1, 0x006D, 0x00F0, 0x0049,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
76 0x0000, 0x0004, 0x0003, 0x00F3, 0x0048, 0x0034, 0x006C, 0x01C0, 0x01C3,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
77 0x0007, 0x0006, 0x0001, 0x006F, 0x0002, 0x004B, 0x006E, 0x001C, 0x0005,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
78 0x0069, 0x0068, 0x006B, 0x0037, 0x01C2, 0x00F2, 0x0395, 0x01CD, 0x00FD,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
79 0x006A, 0x0036, 0x0015, 0x01CC, 0x0014, 0x0394, 0x004A, 0x00FC, 0x00FF,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
80 0x0017, 0x0031, 0x00FE, 0x01CF, 0x0397, 0x00F9, 0x01CE, 0x0725, 0x0396,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
81 0x0016, 0x0030, 0x0075, 0x0724, 0x00F8, 0x0727, 0x0033, 0x0391, 0x0390,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
82 0x0011, 0x0032, 0x001F, 0x00FB, 0x0074, 0x0726, 0x00FA, 0x001E, 0x0077,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
83 0x0019, 0x0018, 0x0004, 0x0010, 0x003D, 0x0076, 0x0071, 0x0013, 0x0001, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
84 { 0x000D, 0x0019, 0x0011, 0x0015, 0x0061, 0x0019, 0x0014, 0x01AD, 0x0060,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
85 0x0018, 0x0001, 0x0005, 0x001B, 0x0010, 0x0019, 0x0005, 0x0017, 0x0018,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
86 0x0016, 0x0004, 0x0004, 0x0013, 0x000C, 0x0012, 0x001A, 0x0018, 0x0005,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
87 0x000F, 0x001B, 0x0004, 0x001D, 0x0011, 0x001C, 0x0010, 0x000E, 0x001B,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
88 0x0013, 0x001F, 0x001A, 0x0029, 0x0005, 0x0063, 0x001E, 0x0009, 0x0062,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
89 0x0008, 0x0007, 0x0007, 0x0019, 0x0004, 0x001A, 0x0018, 0x006D, 0x0007,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
90 0x001B, 0x0007, 0x001A, 0x006C, 0x0006, 0x0012, 0x0005, 0x006F, 0x000B,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
91 0x006E, 0x0069, 0x001D, 0x0359, 0x0028, 0x002B, 0x002A, 0x001C, 0x00D5,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
92 0x0358, 0x001F, 0x0001, 0x001E, 0x0068, 0x00D4, 0x00D7, 0x0019, 0x0000, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
93 { 0x00B9, 0x0061, 0x0060, 0x00B8, 0x02B5, 0x01AD, 0x00BB, 0x0AF5, 0x0151,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
94 0x0001, 0x0001, 0x0005, 0x0000, 0x0003, 0x0005, 0x0004, 0x0063, 0x0025,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
95 0x00BA, 0x0004, 0x0007, 0x0062, 0x00A5, 0x0024, 0x006D, 0x0002, 0x006C,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
96 0x02B4, 0x000D, 0x006F, 0x0027, 0x00A4, 0x0026, 0x01AC, 0x0150, 0x01AF,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
97 0x01AE, 0x0021, 0x006E, 0x02B7, 0x0020, 0x0153, 0x0023, 0x00A7, 0x0152,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
98 0x00A6, 0x0006, 0x000C, 0x0022, 0x01A9, 0x0019, 0x002D, 0x02B6, 0x01A8,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
99 0x000F, 0x0007, 0x000E, 0x00A1, 0x0069, 0x002C, 0x0001, 0x01AB, 0x00A0,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
100 0x02B1, 0x00A3, 0x002F, 0x0AF4, 0x02B0, 0x0AF7, 0x02B3, 0x0068, 0x015D,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
101 0x0AF6, 0x01AA, 0x0055, 0x015C, 0x02B2, 0x0579, 0x0578, 0x015F, 0x00A2, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
102 { 0x0905, 0x013D, 0x013C, 0x0904, 0x121D, 0x049D, 0x049C, 0x243D, 0x0907,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
103 0x00ED, 0x0001, 0x0015, 0x0041, 0x013F, 0x0031, 0x0014, 0x025D, 0x025C,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
104 0x013E, 0x000D, 0x0000, 0x0040, 0x0139, 0x0043, 0x0030, 0x0017, 0x0033,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
105 0x0906, 0x0032, 0x0042, 0x00EC, 0x025F, 0x00EF, 0x025E, 0x049F, 0x0138,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
106 0x0901, 0x013B, 0x0259, 0x121C, 0x049E, 0x0900, 0x0258, 0x243C, 0x121F,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
107 0x0903, 0x003D, 0x00EE, 0x025B, 0x025A, 0x004D, 0x013A, 0x0902, 0x0245,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
108 0x00E9, 0x0016, 0x00E8, 0x0499, 0x0125, 0x0244, 0x004C, 0x0498, 0x090D,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
109 0x00EB, 0x003C, 0x0011, 0x049B, 0x049A, 0x0485, 0x00EA, 0x003F, 0x0124,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
110 0x090C, 0x003E, 0x0039, 0x0095, 0x0247, 0x0246, 0x0484, 0x0094, 0x0038, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
111 { 0x0F09, 0x00CD, 0x01FD, 0x0791, 0x1E6D, 0x0790, 0x03D9, 0x3CD1, 0x3CD0,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
112 0x0075, 0x0001, 0x0001, 0x0035, 0x00CC, 0x0011, 0x0000, 0x03D8, 0x01FC,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
113 0x03DB, 0x0010, 0x0003, 0x00CF, 0x03DA, 0x00CE, 0x0074, 0x0034, 0x0077,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
114 0x0793, 0x0013, 0x0076, 0x0071, 0x03C5, 0x0070, 0x01FF, 0x0792, 0x01FE,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
115 0x01F9, 0x0037, 0x00C9, 0x0F08, 0x01F8, 0x03C4, 0x00C8, 0x0F0B, 0x079D,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
116 0x03C7, 0x0001, 0x0012, 0x0073, 0x00CB, 0x0005, 0x0036, 0x03C6, 0x0072,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
117 0x007D, 0x0002, 0x00CA, 0x079C, 0x01FB, 0x00F5, 0x0031, 0x079F, 0x0F0A,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
118 0x0F35, 0x079E, 0x01FA, 0x1E6C, 0x1E6F, 0x3CD3, 0x0799, 0x03C1, 0x1E6E,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
119 0x3CD2, 0x0030, 0x00F4, 0x007C, 0x03C0, 0x03C3, 0x0798, 0x01E5, 0x00F7, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
120 { 0x01A5, 0x0001, 0x001D, 0x0021, 0x00A1, 0x000D, 0x0061, 0x06B9, 0x00A0,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
121 0x0060, 0x0001, 0x0005, 0x000C, 0x0020, 0x001C, 0x0004, 0x01A4, 0x01A7,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
122 0x00A3, 0x001F, 0x001E, 0x0023, 0x0022, 0x002D, 0x002C, 0x0063, 0x0062,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
123 0x1A81, 0x01A6, 0x01A1, 0x06B8, 0x06BB, 0x00A2, 0x06BA, 0x0D59, 0x06A5,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
124 0x01A0, 0x000F, 0x006D, 0x06A4, 0x002F, 0x00AD, 0x006C, 0x06A7, 0x00AC,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
125 0x0D58, 0x000E, 0x01A3, 0x00AF, 0x00AE, 0x006F, 0x01A2, 0x0D5B, 0x00A9,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
126 0x0019, 0x0001, 0x0009, 0x00A8, 0x006E, 0x002E, 0x0000, 0x01AD, 0x00AB,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
127 0x00AA, 0x0355, 0x0029, 0x1A80, 0x1A83, 0x1A82, 0x0354, 0x01AC, 0x0D5A,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
128 0x1A8D, 0x01AF, 0x0357, 0x0D45, 0x0D44, 0x0D47, 0x1A8C, 0x06A6, 0x06A1, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
129 { 0x0001, 0x0011, 0x0005, 0x0775, 0x00F9, 0x00F8, 0x0031, 0x0030, 0x0049,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
130 0x00FB, 0x0010, 0x0033, 0x0EC9, 0x038D, 0x038C, 0x00FA, 0x038F, 0x0774,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
131 0x0048, 0x0032, 0x0000, 0x01D5, 0x00E5, 0x038E, 0x00E4, 0x0013, 0x000D,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
132 0x0389, 0x0777, 0x0388, 0x038B, 0x1DF9, 0x0EC8, 0x3BC9, 0x1DF8, 0x038A,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
133 0x03B5, 0x0776, 0x00E7, 0x3BC8, 0x01D4, 0x3BCB, 0x0ECB, 0x0771, 0x0ECA,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
134 0x01D7, 0x03B4, 0x01D6, 0x1DFB, 0x0EF5, 0x0770, 0x0EF4, 0x3BCA, 0x0773,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
135 0x00E6, 0x03B7, 0x004B, 0x1DFA, 0x03B6, 0x0EF7, 0x00E1, 0x0EF6, 0x0EF1,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
136 0x03B1, 0x01D1, 0x003D, 0x0EF0, 0x0772, 0x077D, 0x077C, 0x003C, 0x01D0,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
137 0x03B0, 0x01D3, 0x003F, 0x03B3, 0x01D2, 0x0EF3, 0x077F, 0x00E0, 0x004A, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
138 { 0x0015, 0x0049, 0x0014, 0x07D1, 0x03FD, 0x03FC, 0x01C1, 0x01C0, 0x00F1,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
139 0x0017, 0x0001, 0x0001, 0x01C3, 0x0048, 0x004B, 0x0016, 0x0031, 0x01C2,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
140 0x004A, 0x0011, 0x0000, 0x01CD, 0x00F0, 0x01CC, 0x0075, 0x0010, 0x000D,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
141 0x03FF, 0x01CF, 0x01CE, 0x07D0, 0x0F81, 0x07D3, 0x1F1D, 0x0F80, 0x07D2,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
142 0x01C9, 0x03FE, 0x0074, 0x07DD, 0x00F3, 0x1F1C, 0x07DC, 0x03F9, 0x07DF,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
143 0x00F2, 0x00FD, 0x0077, 0x07DE, 0x07D9, 0x01C8, 0x07D8, 0x0F83, 0x03F8,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
144 0x0030, 0x0076, 0x0013, 0x0F82, 0x00FC, 0x03FB, 0x0033, 0x03FA, 0x03E5,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
145 0x03E4, 0x01CB, 0x0032, 0x1F1F, 0x03E7, 0x07DB, 0x07DA, 0x003D, 0x01CA,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
146 0x07C5, 0x03E6, 0x0071, 0x0F8D, 0x07C4, 0x1F1E, 0x0F8C, 0x03E1, 0x01F5, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
147 { 0x0019, 0x0065, 0x0018, 0x0351, 0x0350, 0x0353, 0x0021, 0x0020, 0x0064,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
148 0x001D, 0x0005, 0x0005, 0x01A5, 0x0023, 0x0067, 0x0005, 0x0066, 0x0022,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
149 0x001B, 0x0004, 0x0001, 0x0004, 0x001C, 0x0061, 0x001A, 0x0005, 0x0004,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
150 0x0007, 0x002D, 0x0006, 0x002C, 0x01A4, 0x002F, 0x0352, 0x035D, 0x0060,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
151 0x0001, 0x002E, 0x001F, 0x035C, 0x0000, 0x06B1, 0x01A7, 0x0029, 0x01A6,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
152 0x0028, 0x0063, 0x0062, 0x035F, 0x01A1, 0x002B, 0x06B0, 0x06B3, 0x01A0,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
153 0x0003, 0x006D, 0x001E, 0x035E, 0x006C, 0x06B2, 0x0002, 0x01A3, 0x01A2,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
154 0x000D, 0x0005, 0x0007, 0x01AD, 0x006F, 0x002A, 0x006E, 0x0004, 0x0004,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
155 0x000C, 0x0007, 0x0006, 0x000F, 0x000E, 0x00D5, 0x0009, 0x0006, 0x0007, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
156 { 0x0065, 0x0181, 0x0064, 0x36C9, 0x06D5, 0x0DB5, 0x0379, 0x0180, 0x0183,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
157 0x00D5, 0x001D, 0x001C, 0x0DB4, 0x0182, 0x0378, 0x00D4, 0x00D7, 0x06D4,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
158 0x0067, 0x001F, 0x0001, 0x00D6, 0x00D1, 0x018D, 0x0066, 0x0001, 0x0000,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
159 0x037B, 0x06D7, 0x037A, 0x0DB7, 0x36C8, 0x06D6, 0x0DB6, 0x1B79, 0x0DB1,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
160 0x018C, 0x0365, 0x00D0, 0x1B78, 0x00D3, 0x1B7B, 0x0364, 0x06D1, 0x06D0,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
161 0x018F, 0x018E, 0x00D2, 0x36CB, 0x0367, 0x0366, 0x06D3, 0x0DB0, 0x06D2,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
162 0x0361, 0x06DD, 0x0189, 0x36CA, 0x0360, 0x36F5, 0x0188, 0x0DB3, 0x36F4,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
163 0x0009, 0x0008, 0x0005, 0x06DC, 0x00DD, 0x018B, 0x00DC, 0x0004, 0x000B,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
164 0x018A, 0x0061, 0x0003, 0x0363, 0x00DF, 0x06DF, 0x0362, 0x000A, 0x001E, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
165 { 0x001D, 0x0061, 0x000D, 0x0D55, 0x06B9, 0x06B8, 0x01A5, 0x0021, 0x0020,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
166 0x0023, 0x000C, 0x0060, 0x0D54, 0x00AD, 0x00AC, 0x0022, 0x00AF, 0x06BB,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
167 0x000F, 0x001C, 0x0001, 0x002D, 0x0063, 0x01A4, 0x000E, 0x0001, 0x0005,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
168 0x01A7, 0x06BA, 0x01A6, 0x06A5, 0x0D57, 0x0D56, 0x1ABD, 0x0D51, 0x00AE,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
169 0x002C, 0x00A9, 0x002F, 0x0D50, 0x01A1, 0x1ABC, 0x06A4, 0x06A7, 0x06A6,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
170 0x00A8, 0x06A1, 0x01A0, 0x1ABF, 0x0D53, 0x06A0, 0x0D52, 0x1ABE, 0x06A3,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
171 0x0062, 0x002E, 0x0009, 0x0D5D, 0x01A3, 0x0D5C, 0x006D, 0x00AB, 0x06A2,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
172 0x006C, 0x001F, 0x0001, 0x06AD, 0x0029, 0x01A2, 0x0028, 0x0004, 0x001E,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
173 0x01AD, 0x006F, 0x0000, 0x01AC, 0x01AF, 0x06AC, 0x00AA, 0x006E, 0x0019, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
174 { 0x0019, 0x007D, 0x0018, 0x01B5, 0x000D, 0x01B4, 0x007C, 0x007F, 0x01B7,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
175 0x000C, 0x001B, 0x001A, 0x01B6, 0x000F, 0x00D5, 0x0019, 0x007E, 0x00D4,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
176 0x0018, 0x001B, 0x0001, 0x000E, 0x0011, 0x0009, 0x0005, 0x0005, 0x0005,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
177 0x00D7, 0x01B1, 0x0008, 0x01B0, 0x0079, 0x06FD, 0x0371, 0x0370, 0x00D6,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
178 0x0078, 0x01B3, 0x0010, 0x0373, 0x0013, 0x06FC, 0x007B, 0x007A, 0x00D1,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
179 0x00D0, 0x00D3, 0x0065, 0x0372, 0x06FF, 0x0064, 0x06FE, 0x037D, 0x00D2,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
180 0x00DD, 0x0067, 0x0004, 0x037C, 0x0012, 0x01B2, 0x0007, 0x0066, 0x01BD,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
181 0x0006, 0x0061, 0x0004, 0x01BC, 0x001A, 0x0060, 0x001D, 0x0004, 0x001C,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
182 0x0063, 0x0001, 0x0007, 0x000B, 0x0000, 0x0062, 0x000A, 0x0005, 0x0007, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
183 { 0x0069, 0x0045, 0x0068, 0x04BD, 0x0255, 0x04BC, 0x00E5, 0x00E4, 0x0031,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
184 0x0030, 0x0019, 0x0001, 0x0121, 0x00E7, 0x00E6, 0x0033, 0x00E1, 0x00E0,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
185 0x006B, 0x0018, 0x0001, 0x0044, 0x0032, 0x0047, 0x006A, 0x001B, 0x0005,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
186 0x003D, 0x0046, 0x0015, 0x0041, 0x0120, 0x0123, 0x04BF, 0x0122, 0x0040,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
187 0x003C, 0x00E3, 0x0014, 0x0254, 0x0043, 0x0975, 0x012D, 0x00E2, 0x00ED,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
188 0x0042, 0x00EC, 0x004D, 0x0257, 0x0256, 0x0251, 0x04BE, 0x0974, 0x0250,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
189 0x00EF, 0x00EE, 0x004C, 0x04B9, 0x012C, 0x04B8, 0x004F, 0x04BB, 0x0253,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
190 0x003F, 0x0017, 0x0001, 0x0252, 0x00E9, 0x00E8, 0x00EB, 0x0000, 0x0003,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
191 0x0016, 0x0002, 0x0004, 0x004E, 0x003E, 0x00EA, 0x0049, 0x000D, 0x0007, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
192 { 0x000D, 0x01BD, 0x000C, 0x0D31, 0x0D30, 0x0D33, 0x0359, 0x0358, 0x002D,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
193 0x0065, 0x001D, 0x001C, 0x0D32, 0x035B, 0x035A, 0x002C, 0x01BC, 0x0345,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
194 0x000F, 0x001F, 0x0001, 0x002F, 0x0064, 0x01BF, 0x0067, 0x0001, 0x0005,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
195 0x0066, 0x002E, 0x0061, 0x0029, 0x0695, 0x0694, 0x0697, 0x0696, 0x0060,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
196 0x01BE, 0x0D3D, 0x0028, 0x1A49, 0x0344, 0x1A48, 0x1A4B, 0x0D3C, 0x0691,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
197 0x002B, 0x01B9, 0x002A, 0x0D3F, 0x0690, 0x0347, 0x0D3E, 0x1A4A, 0x0346,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
198 0x00D5, 0x0341, 0x0063, 0x0D39, 0x0340, 0x0D38, 0x01B8, 0x0D3B, 0x0D3A,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
199 0x00D4, 0x0062, 0x0000, 0x0693, 0x01BB, 0x0343, 0x0342, 0x001E, 0x000E,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
200 0x006D, 0x0009, 0x0001, 0x006C, 0x00D7, 0x034D, 0x01BA, 0x0008, 0x0004, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
201 { 0x0075, 0x00CD, 0x0035, 0x03C1, 0x03C0, 0x07F9, 0x03C3, 0x1F8D, 0x00CC,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
202 0x0074, 0x0011, 0x0010, 0x03C2, 0x0FD9, 0x01F1, 0x00CF, 0x03CD, 0x00CE,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
203 0x0034, 0x0001, 0x0001, 0x0037, 0x00C9, 0x00C8, 0x0036, 0x0000, 0x0001,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
204 0x0FD8, 0x03CC, 0x00CB, 0x01F0, 0x07F8, 0x03CF, 0x07FB, 0x07FA, 0x00CA,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
205 0x01F3, 0x03CE, 0x00F5, 0x0FDB, 0x00F4, 0x07E5, 0x07E4, 0x07E7, 0x01F2,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
206 0x07E6, 0x03C9, 0x01FD, 0x0FDA, 0x1F8C, 0x07E1, 0x1F8F, 0x1F8E, 0x03C8,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
207 0x03CB, 0x0077, 0x0076, 0x0FC5, 0x03CA, 0x07E0, 0x00F7, 0x0FC4, 0x03F5,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
208 0x00F6, 0x01FC, 0x0003, 0x03F4, 0x0071, 0x03F7, 0x00F1, 0x0013, 0x0031,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
209 0x0030, 0x0070, 0x0005, 0x0012, 0x0073, 0x01FF, 0x0072, 0x007D, 0x0002, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
210 { 0x0061, 0x0055, 0x0060, 0x02C9, 0x02C8, 0x02CB, 0x0171, 0x00B5, 0x0054,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
211 0x0001, 0x0001, 0x0001, 0x0057, 0x0001, 0x0063, 0x001D, 0x0062, 0x0039,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
212 0x006D, 0x0000, 0x0005, 0x0038, 0x0056, 0x00B4, 0x006C, 0x0003, 0x001C,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
213 0x006F, 0x003B, 0x0002, 0x003A, 0x0170, 0x00B7, 0x0173, 0x0051, 0x006E,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
214 0x0025, 0x0050, 0x0069, 0x02CA, 0x0024, 0x0027, 0x0172, 0x00B6, 0x00B1,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
215 0x000D, 0x000C, 0x001F, 0x017D, 0x0026, 0x0068, 0x0053, 0x017C, 0x006B,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
216 0x001E, 0x000F, 0x0004, 0x017F, 0x006A, 0x02F5, 0x0019, 0x0021, 0x0052,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
217 0x02F4, 0x02F7, 0x0020, 0x0BCD, 0x05E5, 0x05E4, 0x0BCC, 0x0023, 0x00B0,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
218 0x02F6, 0x00B3, 0x0022, 0x02F1, 0x02F0, 0x0BCF, 0x0BCE, 0x017E, 0x005D, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
219 { 0x00BD, 0x0025, 0x01A1, 0x0159, 0x0299, 0x00BC, 0x0024, 0x0505, 0x0504,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
220 0x01A0, 0x0001, 0x001D, 0x006D, 0x001C, 0x0001, 0x0005, 0x0027, 0x01A3,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
221 0x0158, 0x001F, 0x001E, 0x01A2, 0x0026, 0x0021, 0x000D, 0x0020, 0x0023,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
222 0x0298, 0x006C, 0x0022, 0x00BF, 0x00BE, 0x01AD, 0x002D, 0x029B, 0x00B9,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
223 0x01AC, 0x00B8, 0x01AF, 0x029A, 0x006F, 0x015B, 0x006E, 0x0285, 0x0284,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
224 0x01AE, 0x0019, 0x002C, 0x01A9, 0x01A8, 0x000C, 0x000F, 0x015A, 0x00BB,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
225 0x000E, 0x0000, 0x0069, 0x01AB, 0x0018, 0x01AA, 0x0004, 0x0055, 0x00BA,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
226 0x0507, 0x0145, 0x0054, 0x0506, 0x00A5, 0x0501, 0x00A4, 0x0057, 0x0500,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
227 0x0A05, 0x0144, 0x00A7, 0x0287, 0x0286, 0x0503, 0x0147, 0x0A04, 0x0146, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
228 { 0x0759, 0x0041, 0x00E5, 0x03BD, 0x0E9D, 0x012D, 0x012C, 0x3A1D, 0x03BC,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
229 0x012F, 0x000D, 0x0040, 0x00E4, 0x03BF, 0x0043, 0x0042, 0x0758, 0x03BE,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
230 0x00E7, 0x0001, 0x0000, 0x003D, 0x00E6, 0x0015, 0x0014, 0x0017, 0x003C,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
231 0x743D, 0x012E, 0x03B9, 0x03B8, 0x0E9C, 0x03BB, 0x075B, 0x3A1C, 0x0E9F,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
232 0x0129, 0x00E1, 0x0128, 0x0E9E, 0x012B, 0x075A, 0x00E0, 0x0E99, 0x0745,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
233 0x3A1F, 0x03BA, 0x0744, 0x0E98, 0x1D0D, 0x03A5, 0x0E9B, 0x743C, 0x0E9A,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
234 0x012A, 0x004D, 0x00E3, 0x0E85, 0x01D5, 0x0E84, 0x004C, 0x0747, 0x1D0C,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
235 0x01D4, 0x003F, 0x0016, 0x0746, 0x03A4, 0x0741, 0x004F, 0x003E, 0x01D7,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
236 0x0740, 0x000C, 0x0011, 0x004E, 0x00E2, 0x00ED, 0x00EC, 0x0049, 0x0048, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
237 };
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
238
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
239 static const uint8_t aic_mode2_vlc_bits[AIC_MODE2_NUM][AIC_MODE2_SIZE] = {
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
240 { 1, 5, 4, 10, 6, 8, 5, 8, 8,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
241 7, 5, 7, 11, 10, 9, 8, 13, 11,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
242 6, 7, 3, 9, 8, 10, 9, 8, 5,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
243 10, 9, 10, 10, 14, 12, 14, 14, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
244 8, 9, 7, 12, 8, 14, 9, 9, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
245 8, 9, 11, 11, 13, 9, 11, 14, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
246 6, 7, 9, 13, 9, 12, 7, 10, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
247 11, 12, 8, 15, 10, 15, 13, 7, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
248 10, 10, 8, 10, 13, 13, 13, 11, 8, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
249 { 4, 6, 5, 11, 8, 10, 7, 11, 9,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
250 4, 1, 4, 9, 7, 7, 5, 9, 10,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
251 6, 7, 4, 9, 9, 10, 9, 9, 6,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
252 9, 10, 9, 10, 12, 12, 13, 12, 11,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
253 9, 9, 8, 12, 8, 14, 10, 11, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
254 7, 8, 10, 11, 12, 9, 11, 13, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
255 6, 7, 8, 12, 9, 12, 7, 11, 10,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
256 12, 12, 9, 14, 12, 15, 13, 8, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
257 11, 11, 10, 12, 13, 15, 14, 12, 9, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
258 { 5, 7, 6, 12, 9, 11, 8, 11, 10,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
259 7, 5, 7, 11, 10, 9, 8, 12, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
260 5, 5, 1, 8, 7, 10, 8, 6, 4,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
261 8, 8, 8, 9, 12, 11, 13, 12, 11,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
262 8, 9, 8, 12, 8, 13, 10, 11, 11,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
263 8, 9, 11, 12, 13, 11, 12, 14, 13,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
264 8, 9, 10, 14, 11, 14, 9, 13, 13,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
265 8, 9, 6, 11, 10, 14, 11, 6, 10,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
266 6, 6, 4, 8, 9, 10, 10, 8, 5, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
267 { 11, 7, 8, 10, 12, 9, 10, 14, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
268 7, 1, 5, 7, 8, 6, 4, 10, 9,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
269 10, 5, 4, 8, 11, 8, 7, 6, 7,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
270 11, 6, 7, 8, 10, 8, 10, 11, 9,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
271 10, 8, 9, 13, 9, 12, 8, 11, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
272 11, 4, 7, 8, 9, 6, 8, 12, 9,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
273 8, 5, 8, 12, 9, 10, 6, 12, 11,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
274 12, 12, 10, 15, 13, 13, 13, 10, 13,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
275 15, 10, 9, 10, 12, 13, 13, 10, 9, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
276 { 11, 8, 8, 11, 13, 10, 11, 15, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
277 7, 1, 4, 7, 7, 5, 4, 8, 9,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
278 11, 5, 5, 8, 11, 9, 8, 7, 8,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
279 13, 7, 8, 9, 11, 9, 10, 12, 10,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
280 10, 9, 8, 13, 9, 12, 9, 11, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
281 11, 5, 7, 9, 10, 6, 9, 13, 10,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
282 7, 4, 7, 11, 8, 9, 5, 10, 11,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
283 13, 11, 9, 15, 13, 15, 13, 8, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
284 15, 10, 10, 12, 13, 14, 14, 12, 11, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
285 { 12, 9, 9, 12, 13, 11, 11, 14, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
286 8, 2, 5, 7, 9, 6, 5, 10, 10,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
287 9, 4, 2, 7, 9, 7, 6, 5, 6,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
288 12, 6, 7, 8, 10, 8, 10, 11, 9,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
289 12, 9, 10, 13, 11, 12, 10, 14, 13,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
290 12, 6, 8, 10, 10, 7, 9, 12, 10,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
291 8, 5, 8, 11, 9, 10, 7, 11, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
292 8, 6, 5, 11, 11, 11, 8, 6, 9,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
293 12, 6, 6, 8, 10, 10, 11, 8, 6, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
294 { 13, 9, 10, 12, 14, 12, 11, 15, 15,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
295 8, 1, 5, 7, 9, 6, 5, 11, 10,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
296 11, 6, 5, 9, 11, 9, 8, 7, 8,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
297 12, 6, 8, 8, 11, 8, 10, 12, 10,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
298 10, 7, 9, 13, 10, 11, 9, 13, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
299 11, 3, 6, 8, 9, 4, 7, 11, 8,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
300 8, 5, 9, 12, 10, 9, 7, 12, 13,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
301 13, 12, 10, 14, 14, 15, 12, 11, 14,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
302 15, 7, 9, 8, 11, 11, 12, 10, 9, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
303 { 10, 5, 6, 9, 11, 7, 8, 12, 11,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
304 8, 1, 4, 7, 9, 6, 4, 10, 10,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
305 11, 6, 6, 9, 9, 9, 9, 8, 8,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
306 14, 10, 10, 12, 12, 11, 12, 13, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
307 10, 7, 8, 12, 9, 11, 8, 12, 11,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
308 13, 7, 10, 11, 11, 8, 10, 13, 11,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
309 6, 3, 7, 11, 8, 9, 5, 10, 11,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
310 11, 11, 9, 14, 14, 14, 11, 10, 13,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
311 14, 10, 11, 13, 13, 13, 14, 12, 12, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
312 { 2, 5, 3, 11, 8, 8, 6, 6, 7,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
313 8, 5, 6, 12, 10, 10, 8, 10, 11,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
314 7, 6, 2, 9, 8, 10, 8, 5, 4,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
315 10, 11, 10, 10, 13, 12, 14, 13, 10,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
316 10, 11, 8, 14, 9, 14, 12, 11, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
317 9, 10, 9, 13, 12, 11, 12, 14, 11,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
318 8, 10, 7, 13, 10, 12, 8, 12, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
319 10, 9, 6, 12, 11, 11, 11, 6, 9,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
320 10, 9, 6, 10, 9, 12, 11, 8, 7, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
321 { 6, 8, 6, 12, 11, 11, 10, 10, 9,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
322 6, 1, 3, 10, 8, 8, 6, 7, 10,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
323 8, 6, 3, 10, 9, 10, 8, 6, 5,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
324 11, 10, 10, 12, 13, 12, 14, 13, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
325 10, 11, 8, 12, 9, 14, 12, 11, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
326 9, 9, 8, 12, 12, 10, 12, 13, 11,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
327 7, 8, 6, 13, 9, 11, 7, 11, 11,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
328 11, 10, 7, 14, 11, 12, 12, 7, 10,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
329 12, 11, 8, 13, 12, 14, 13, 11, 10, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
330 { 7, 10, 7, 13, 13, 13, 11, 11, 10,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
331 8, 5, 6, 12, 11, 10, 9, 10, 11,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
332 7, 5, 1, 9, 8, 10, 7, 4, 4,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
333 9, 11, 9, 11, 12, 11, 13, 13, 10,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
334 9, 11, 8, 13, 9, 14, 12, 11, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
335 11, 10, 10, 13, 12, 11, 14, 14, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
336 9, 10, 8, 13, 10, 14, 9, 12, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
337 9, 7, 4, 12, 10, 11, 10, 6, 7,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
338 9, 7, 4, 9, 9, 11, 9, 7, 5, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
339 { 7, 9, 7, 14, 11, 12, 10, 9, 9,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
340 8, 5, 5, 12, 9, 10, 8, 8, 11,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
341 7, 5, 2, 8, 8, 9, 7, 4, 4,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
342 10, 11, 10, 12, 14, 11, 12, 13, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
343 9, 10, 8, 13, 8, 13, 10, 11, 11,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
344 9, 9, 8, 14, 10, 10, 11, 12, 11,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
345 10, 11, 9, 14, 10, 14, 9, 12, 14,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
346 6, 6, 3, 11, 8, 9, 8, 3, 6,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
347 9, 7, 4, 10, 8, 11, 10, 6, 5, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
348 { 6, 8, 7, 13, 12, 12, 10, 9, 9,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
349 9, 7, 8, 13, 11, 11, 9, 11, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
350 7, 6, 1, 9, 8, 10, 7, 5, 4,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
351 10, 12, 10, 12, 13, 13, 14, 13, 11,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
352 9, 11, 9, 13, 10, 14, 12, 12, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
353 11, 12, 10, 14, 13, 12, 13, 14, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
354 8, 9, 7, 13, 10, 13, 8, 11, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
355 8, 6, 3, 12, 9, 10, 9, 4, 6,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
356 10, 8, 5, 10, 10, 12, 11, 8, 6, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
357 { 7, 10, 7, 12, 9, 12, 10, 10, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
358 9, 7, 7, 12, 9, 11, 6, 10, 11,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
359 6, 6, 1, 9, 8, 9, 7, 4, 5,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
360 11, 12, 9, 12, 10, 14, 13, 13, 11,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
361 10, 12, 8, 13, 8, 14, 10, 10, 11,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
362 11, 11, 10, 13, 14, 10, 14, 13, 11,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
363 11, 10, 7, 13, 8, 12, 7, 10, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
364 7, 10, 4, 12, 6, 10, 8, 5, 8,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
365 10, 7, 4, 9, 7, 10, 9, 6, 5, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
366 { 7, 9, 7, 13, 12, 13, 10, 10, 8,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
367 8, 5, 6, 11, 10, 10, 8, 10, 10,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
368 7, 5, 2, 9, 8, 9, 7, 5, 3,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
369 8, 9, 7, 9, 11, 11, 13, 11, 9,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
370 8, 10, 7, 12, 9, 14, 11, 10, 10,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
371 9, 10, 9, 12, 12, 12, 13, 14, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
372 10, 10, 9, 13, 11, 13, 9, 13, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
373 8, 7, 4, 12, 10, 10, 10, 6, 6,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
374 7, 6, 3, 9, 8, 10, 9, 6, 3, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
375 { 7, 10, 7, 13, 13, 13, 11, 11, 9,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
376 8, 6, 6, 13, 11, 11, 9, 10, 11,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
377 7, 6, 1, 9, 8, 10, 8, 5, 4,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
378 8, 9, 8, 9, 12, 12, 12, 12, 8,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
379 10, 13, 9, 14, 11, 14, 14, 13, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
380 9, 10, 9, 13, 12, 11, 13, 14, 11,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
381 9, 11, 8, 13, 11, 13, 10, 13, 13,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
382 9, 8, 5, 12, 10, 11, 11, 6, 7,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
383 8, 7, 3, 8, 9, 11, 10, 7, 4, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
384 { 8, 9, 7, 11, 11, 12, 11, 14, 9,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
385 8, 6, 6, 11, 13, 10, 9, 11, 9,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
386 7, 5, 1, 7, 9, 9, 7, 5, 3,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
387 13, 11, 9, 10, 12, 11, 12, 12, 9,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
388 10, 11, 9, 13, 9, 12, 12, 12, 10,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
389 12, 11, 10, 13, 14, 12, 14, 14, 11,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
390 11, 8, 8, 13, 11, 12, 9, 13, 11,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
391 9, 10, 5, 11, 8, 11, 9, 6, 7,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
392 7, 8, 4, 6, 8, 10, 8, 8, 5, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
393 { 8, 10, 8, 13, 13, 13, 12, 11, 10,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
394 5, 1, 3, 10, 7, 8, 6, 8, 9,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
395 8, 7, 4, 9, 10, 11, 8, 7, 6,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
396 8, 9, 7, 9, 12, 11, 12, 10, 8,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
397 9, 10, 8, 13, 9, 9, 12, 11, 11,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
398 7, 7, 6, 12, 9, 8, 10, 12, 8,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
399 6, 7, 4, 12, 8, 13, 6, 9, 10,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
400 13, 13, 9, 15, 14, 14, 15, 9, 11,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
401 13, 11, 9, 13, 13, 15, 15, 12, 10, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
402 { 10, 8, 9, 11, 12, 10, 8, 13, 13,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
403 9, 2, 5, 7, 5, 4, 3, 8, 9,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
404 11, 5, 5, 9, 8, 8, 6, 8, 8,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
405 12, 7, 8, 10, 10, 9, 8, 12, 10,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
406 9, 10, 9, 12, 7, 11, 7, 12, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
407 9, 5, 8, 9, 9, 6, 6, 11, 10,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
408 6, 4, 7, 9, 5, 9, 3, 9, 10,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
409 13, 11, 9, 13, 10, 13, 10, 9, 13,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
410 14, 11, 10, 12, 12, 13, 11, 14, 11, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
411 { 11, 7, 8, 10, 12, 9, 9, 14, 10,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
412 9, 4, 7, 8, 10, 7, 7, 11, 10,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
413 8, 2, 2, 6, 8, 5, 5, 5, 6,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
414 15, 9, 10, 10, 12, 10, 11, 14, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
415 9, 8, 9, 12, 9, 11, 8, 12, 11,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
416 14, 10, 11, 12, 13, 10, 12, 15, 12,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
417 9, 7, 8, 12, 9, 12, 7, 11, 13,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
418 9, 6, 5, 11, 10, 11, 7, 6, 9,
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
419 11, 4, 5, 7, 8, 8, 8, 7, 7, },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
420 };
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
421 //@}
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
422
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
423 /**
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
424 * Codes used for determining block type
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
425 */
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
426 //@{
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
427 #define AIC_MODE1_NUM 90
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
428 #define AIC_MODE1_SIZE 9
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
429 #define AIC_MODE1_BITS 7
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
430
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
431 static const uint8_t aic_mode1_vlc_codes[AIC_MODE1_NUM][AIC_MODE1_SIZE] = {
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
432 { 0x01, 0x01, 0x01, 0x11, 0x00, 0x09, 0x03, 0x10, 0x05,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
433 { 0x09, 0x01, 0x01, 0x05, 0x11, 0x00, 0x03, 0x21, 0x20,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
434 { 0x01, 0x01, 0x01, 0x11, 0x09, 0x10, 0x05, 0x00, 0x03,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
435 { 0x01, 0x01, 0x00, 0x03, 0x21, 0x05, 0x09, 0x20, 0x11,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
436 { 0x01, 0x09, 0x00, 0x29, 0x08, 0x15, 0x03, 0x0B, 0x28,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
437 { 0x01, 0x01, 0x01, 0x01, 0x00, 0x01, 0x01, 0x03, 0x02,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
438 { 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x01, 0x09, 0x08,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
439 { 0x01, 0x01, 0x01, 0x09, 0x01, 0x08, 0x00, 0x03, 0x05,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
440 { 0x01, 0x01, 0x01, 0x00, 0x05, 0x11, 0x09, 0x10, 0x03,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
441 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
442
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
443 { 0x01, 0x01, 0x01, 0x05, 0x01, 0x00, 0x03, 0x09, 0x08,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
444 { 0x09, 0x01, 0x01, 0x05, 0x11, 0x00, 0x03, 0x21, 0x20,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
445 { 0x01, 0x01, 0x01, 0x0D, 0x05, 0x04, 0x00, 0x07, 0x0C,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
446 { 0x01, 0x01, 0x00, 0x05, 0x11, 0x03, 0x09, 0x21, 0x20,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
447 { 0x05, 0x01, 0x01, 0x11, 0x00, 0x09, 0x03, 0x21, 0x20,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
448 { 0x09, 0x01, 0x01, 0x00, 0x05, 0x01, 0x03, 0x11, 0x10,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
449 { 0x01, 0x01, 0x01, 0x00, 0x01, 0x01, 0x01, 0x03, 0x02,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
450 { 0x01, 0x01, 0x01, 0x09, 0x00, 0x05, 0x01, 0x03, 0x08,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
451 { 0x01, 0x01, 0x01, 0x09, 0x11, 0x05, 0x00, 0x10, 0x03,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
452 { 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
453
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
454 { 0x01, 0x00, 0x01, 0x09, 0x08, 0x15, 0x14, 0x0B, 0x03,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
455 { 0x0D, 0x01, 0x01, 0x05, 0x0C, 0x04, 0x01, 0x00, 0x07,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
456 { 0x01, 0x01, 0x01, 0x05, 0x00, 0x04, 0x03, 0x01, 0x01,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
457 { 0x05, 0x01, 0x01, 0x04, 0x19, 0x07, 0x18, 0x0D, 0x00,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
458 { 0x11, 0x09, 0x01, 0x21, 0x05, 0x20, 0x01, 0x00, 0x03,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
459 { 0x41, 0x01, 0x00, 0x05, 0x40, 0x03, 0x09, 0x21, 0x11,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
460 { 0x29, 0x01, 0x00, 0x28, 0x09, 0x15, 0x03, 0x08, 0x0B,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
461 { 0x01, 0x00, 0x01, 0x11, 0x09, 0x10, 0x05, 0x01, 0x03,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
462 { 0x05, 0x01, 0x01, 0x04, 0x0D, 0x0C, 0x07, 0x00, 0x01,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
463 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
464
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
465 { 0x01, 0x00, 0x03, 0x05, 0x11, 0x10, 0x25, 0x24, 0x13,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
466 { 0x21, 0x01, 0x01, 0x00, 0x11, 0x03, 0x05, 0x20, 0x09,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
467 { 0x01, 0x01, 0x01, 0x00, 0x09, 0x11, 0x10, 0x05, 0x03,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
468 { 0x21, 0x05, 0x01, 0x01, 0x09, 0x00, 0x11, 0x20, 0x03,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
469 { 0x05, 0x01, 0x00, 0x04, 0x01, 0x19, 0x07, 0x18, 0x0D,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
470 { 0x11, 0x01, 0x00, 0x01, 0x09, 0x01, 0x03, 0x10, 0x05,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
471 { 0x1D, 0x01, 0x05, 0x0D, 0x0C, 0x04, 0x00, 0x1C, 0x0F,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
472 { 0x05, 0x19, 0x01, 0x04, 0x00, 0x18, 0x1B, 0x1A, 0x07,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
473 { 0x09, 0x01, 0x00, 0x01, 0x05, 0x03, 0x11, 0x10, 0x01,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
474 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
475
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
476 { 0x01, 0x00, 0x03, 0x41, 0x05, 0x40, 0x09, 0x11, 0x21,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
477 { 0x05, 0x01, 0x01, 0x19, 0x04, 0x07, 0x00, 0x18, 0x0D,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
478 { 0x01, 0x01, 0x01, 0x05, 0x01, 0x04, 0x01, 0x00, 0x03,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
479 { 0x01, 0x05, 0x00, 0x0D, 0x01, 0x04, 0x07, 0x19, 0x18,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
480 { 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x01, 0x03, 0x02,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
481 { 0x31, 0x01, 0x05, 0x19, 0x04, 0x07, 0x00, 0x30, 0x0D,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
482 { 0x01, 0x00, 0x03, 0x11, 0x01, 0x05, 0x01, 0x09, 0x10,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
483 { 0x01, 0x05, 0x01, 0x11, 0x01, 0x10, 0x00, 0x03, 0x09,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
484 { 0x01, 0x09, 0x00, 0x29, 0x03, 0x08, 0x28, 0x15, 0x0B,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
485 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
486
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
487 { 0x01, 0x01, 0x00, 0x09, 0x15, 0x03, 0x08, 0x14, 0x0B,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
488 { 0x11, 0x01, 0x01, 0x00, 0x09, 0x01, 0x03, 0x10, 0x05,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
489 { 0x01, 0x00, 0x03, 0x25, 0x11, 0x05, 0x10, 0x24, 0x13,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
490 { 0x11, 0x01, 0x00, 0x01, 0x09, 0x01, 0x05, 0x10, 0x03,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
491 { 0x05, 0x01, 0x00, 0x0D, 0x0C, 0x04, 0x0F, 0x1D, 0x1C,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
492 { 0x01, 0x01, 0x01, 0x01, 0x00, 0x01, 0x01, 0x03, 0x02,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
493 { 0x21, 0x01, 0x05, 0x09, 0x11, 0x00, 0x03, 0x41, 0x40,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
494 { 0x05, 0x01, 0x00, 0x1D, 0x1C, 0x0D, 0x0C, 0x0F, 0x04,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
495 { 0x05, 0x01, 0x00, 0x0D, 0x31, 0x04, 0x19, 0x30, 0x07,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
496 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
497
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
498 { 0x01, 0x01, 0x00, 0x21, 0x05, 0x11, 0x03, 0x09, 0x20,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
499 { 0x01, 0x01, 0x00, 0x11, 0x03, 0x05, 0x01, 0x09, 0x10,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
500 { 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x01, 0x03, 0x02,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
501 { 0x05, 0x01, 0x04, 0x19, 0x07, 0x0D, 0x00, 0x31, 0x30,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
502 { 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x01, 0x03, 0x02,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
503 { 0x05, 0x01, 0x01, 0x11, 0x09, 0x00, 0x03, 0x21, 0x20,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
504 { 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x01, 0x03, 0x02,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
505 { 0x01, 0x01, 0x01, 0x00, 0x01, 0x03, 0x01, 0x01, 0x02,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
506 { 0x09, 0x01, 0x00, 0x29, 0x08, 0x15, 0x03, 0x28, 0x0B,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
507 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
508
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
509 { 0x01, 0x01, 0x01, 0x05, 0x01, 0x04, 0x00, 0x01, 0x03,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
510 { 0x09, 0x01, 0x00, 0x29, 0x28, 0x15, 0x08, 0x03, 0x0B,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
511 { 0x01, 0x00, 0x01, 0x11, 0x05, 0x10, 0x09, 0x01, 0x03,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
512 { 0x05, 0x04, 0x01, 0x1D, 0x0D, 0x0C, 0x1C, 0x00, 0x0F,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
513 { 0x09, 0x11, 0x01, 0x41, 0x00, 0x40, 0x05, 0x03, 0x21,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
514 { 0x0D, 0x05, 0x01, 0x1D, 0x1C, 0x0C, 0x04, 0x00, 0x0F,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
515 { 0x41, 0x09, 0x01, 0x40, 0x00, 0x11, 0x05, 0x03, 0x21,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
516 { 0x01, 0x01, 0x01, 0x05, 0x01, 0x04, 0x00, 0x01, 0x03,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
517 { 0x05, 0x04, 0x01, 0x0D, 0x01, 0x0C, 0x07, 0x01, 0x00,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
518 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
519
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
520 { 0x05, 0x04, 0x01, 0x07, 0x19, 0x31, 0x30, 0x0D, 0x00,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
521 { 0x21, 0x01, 0x01, 0x00, 0x11, 0x09, 0x20, 0x05, 0x03,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
522 { 0x05, 0x01, 0x01, 0x04, 0x07, 0x0D, 0x0C, 0x00, 0x01,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
523 { 0x21, 0x09, 0x01, 0x00, 0x20, 0x05, 0x23, 0x22, 0x03,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
524 { 0x31, 0x0D, 0x01, 0x19, 0x05, 0x30, 0x04, 0x07, 0x00,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
525 { 0x31, 0x05, 0x01, 0x04, 0x19, 0x00, 0x0D, 0x30, 0x07,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
526 { 0x31, 0x01, 0x00, 0x0D, 0x05, 0x19, 0x04, 0x30, 0x07,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
527 { 0x01, 0x01, 0x01, 0x00, 0x01, 0x03, 0x02, 0x01, 0x01,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
528 { 0x01, 0x00, 0x01, 0x01, 0x05, 0x09, 0x08, 0x03, 0x01,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
529 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
530 };
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
531
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
532 static const uint8_t aic_mode1_vlc_bits[AIC_MODE1_NUM][AIC_MODE1_SIZE] = {
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
533 { 1, 4, 2, 7, 4, 6, 4, 7, 5,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
534 { 5, 1, 3, 4, 6, 3, 3, 7, 7,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
535 { 1, 4, 2, 7, 6, 7, 5, 4, 4,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
536 { 1, 3, 3, 3, 7, 4, 5, 7, 6,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
537 { 2, 4, 2, 6, 4, 5, 2, 4, 6,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
538 { 7, 2, 3, 4, 7, 1, 5, 7, 7,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
539 { 5, 1, 3, 6, 5, 5, 2, 7, 7,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
540 { 2, 5, 1, 7, 3, 7, 5, 5, 6,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
541 { 2, 4, 1, 4, 5, 7, 6, 7, 4,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
542 { 0, 0, 0, 0, 0, 0, 0, 0, 0,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
543
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
544 { 2, 1, 3, 6, 5, 5, 5, 7, 7,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
545 { 5, 1, 3, 4, 6, 3, 3, 7, 7,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
546 { 4, 1, 2, 6, 5, 5, 4, 5, 6,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
547 { 3, 1, 3, 4, 6, 3, 5, 7, 7,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
548 { 4, 1, 3, 6, 3, 5, 3, 7, 7,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
549 { 6, 1, 4, 4, 5, 2, 4, 7, 7,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
550 { 7, 1, 5, 7, 4, 3, 2, 7, 7,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
551 { 5, 3, 2, 7, 5, 6, 1, 5, 7,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
552 { 4, 1, 2, 6, 7, 5, 4, 7, 4,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
553 { 1, 0, 1, 0, 0, 0, 0, 0, 0,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
554
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
555 { 3, 3, 1, 5, 5, 6, 6, 5, 3,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
556 { 6, 2, 1, 5, 6, 5, 4, 4, 5,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
557 { 6, 4, 1, 7, 6, 7, 6, 3, 2,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
558 { 4, 3, 1, 4, 6, 4, 6, 5, 3,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
559 { 6, 5, 1, 7, 4, 7, 3, 3, 3,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
560 { 7, 2, 2, 3, 7, 2, 4, 6, 5,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
561 { 6, 2, 2, 6, 4, 5, 2, 4, 4,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
562 { 4, 4, 1, 7, 6, 7, 5, 2, 4,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
563 { 5, 4, 1, 5, 6, 6, 5, 4, 2,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
564 { 0, 0, 0, 0, 0, 0, 0, 0, 0,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
565
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
566 { 2, 2, 2, 3, 5, 5, 6, 6, 5,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
567 { 7, 1, 3, 3, 6, 3, 4, 7, 5,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
568 { 2, 4, 1, 4, 6, 7, 7, 5, 4,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
569 { 7, 4, 3, 1, 5, 3, 6, 7, 3,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
570 { 4, 3, 3, 4, 1, 6, 4, 6, 5,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
571 { 7, 4, 4, 2, 6, 1, 4, 7, 5,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
572 { 5, 2, 3, 4, 4, 3, 2, 5, 4,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
573 { 3, 5, 2, 3, 2, 5, 5, 5, 3,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
574 { 6, 4, 4, 2, 5, 4, 7, 7, 1,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
575 { 0, 0, 0, 0, 0, 0, 0, 0, 0,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
576
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
577 { 2, 2, 2, 7, 3, 7, 4, 5, 6,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
578 { 4, 1, 3, 6, 4, 4, 3, 6, 5,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
579 { 2, 4, 1, 7, 3, 7, 6, 6, 6,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
580 { 3, 4, 3, 5, 1, 4, 4, 6, 6,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
581 { 4, 5, 2, 7, 1, 7, 3, 7, 7,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
582 { 6, 2, 3, 5, 3, 3, 2, 6, 4,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
583 { 4, 4, 4, 7, 2, 5, 1, 6, 7,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
584 { 4, 5, 2, 7, 1, 7, 4, 4, 6,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
585 { 2, 4, 2, 6, 2, 4, 6, 5, 4,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
586 { 0, 0, 0, 0, 0, 0, 0, 0, 0,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
587
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
588 { 1, 3, 3, 5, 6, 3, 5, 6, 5,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
589 { 7, 1, 4, 4, 6, 2, 4, 7, 5,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
590 { 2, 2, 2, 6, 5, 3, 5, 6, 5,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
591 { 7, 4, 4, 2, 6, 1, 5, 7, 4,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
592 { 3, 2, 2, 4, 4, 3, 4, 5, 5,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
593 { 7, 2, 5, 3, 7, 1, 4, 7, 7,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
594 { 6, 2, 3, 4, 5, 2, 2, 7, 7,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
595 { 3, 2, 2, 5, 5, 4, 4, 4, 3,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
596 { 3, 2, 2, 4, 6, 3, 5, 6, 3,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
597 { 0, 0, 0, 0, 0, 0, 0, 0, 0,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
598
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
599 { 1, 3, 3, 7, 4, 6, 3, 5, 7,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
600 { 4, 1, 4, 7, 4, 5, 2, 6, 7,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
601 { 2, 4, 1, 7, 5, 7, 3, 7, 7,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
602 { 3, 2, 3, 5, 3, 4, 2, 6, 6,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
603 { 3, 5, 4, 7, 2, 7, 1, 7, 7,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
604 { 4, 1, 3, 6, 5, 3, 3, 7, 7,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
605 { 4, 2, 5, 7, 3, 7, 1, 7, 7,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
606 { 7, 4, 1, 7, 3, 7, 2, 5, 7,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
607 { 4, 2, 2, 6, 4, 5, 2, 6, 4,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
608 { 0, 0, 0, 0, 0, 0, 0, 0, 0,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
609
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
610 { 3, 4, 1, 7, 6, 7, 6, 2, 6,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
611 { 4, 2, 2, 6, 6, 5, 4, 2, 4,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
612 { 4, 4, 1, 7, 5, 7, 6, 2, 4,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
613 { 3, 3, 2, 5, 4, 4, 5, 2, 4,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
614 { 4, 5, 2, 7, 2, 7, 3, 2, 6,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
615 { 4, 3, 2, 5, 5, 4, 3, 2, 4,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
616 { 7, 4, 2, 7, 2, 5, 3, 2, 6,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
617 { 4, 6, 2, 7, 3, 7, 6, 1, 6,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
618 { 5, 5, 1, 6, 4, 6, 5, 2, 4,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
619 { 0, 0, 0, 0, 0, 0, 0, 0, 0,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
620
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
621 { 3, 3, 2, 3, 5, 6, 6, 4, 2,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
622 { 7, 1, 3, 3, 6, 5, 7, 4, 3,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
623 { 5, 4, 1, 5, 5, 6, 6, 4, 2,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
624 { 6, 4, 2, 2, 6, 3, 6, 6, 2,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
625 { 6, 4, 2, 5, 3, 6, 3, 3, 2,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
626 { 6, 3, 2, 3, 5, 2, 4, 6, 3,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
627 { 6, 2, 2, 4, 3, 5, 3, 6, 3,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
628 { 7, 5, 1, 7, 4, 7, 7, 3, 2,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
629 { 5, 5, 2, 3, 6, 7, 7, 5, 1,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
630 { 0, 0, 0, 0, 0, 0, 0, 0, 0,},
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
631 };
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
632
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
633 //@}
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
634
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
635 #define PBTYPE_ESCAPE 0xFF
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
636
5943
337a95c66190 spelling cosmetics
diego
parents: 5937
diff changeset
637 /** tables used for P-frame macroblock type decoding */
5937
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
638 //@{
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
639 #define NUM_PTYPE_VLCS 7
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
640 #define PTYPE_VLC_SIZE 8
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
641 #define PTYPE_VLC_BITS 7
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
642
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
643 static const uint8_t ptype_vlc_codes[NUM_PTYPE_VLCS][PTYPE_VLC_SIZE] = {
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
644 { 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00 },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
645 { 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00 },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
646 { 0x0D, 0x05, 0x01, 0x04, 0x01, 0x00, 0x07, 0x0C },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
647 { 0x09, 0x11, 0x01, 0x00, 0x05, 0x03, 0x21, 0x20 },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
648 { 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00 },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
649 { 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00 },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
650 { 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00 }
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
651 };
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
652
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
653 static const uint8_t ptype_vlc_bits[NUM_PTYPE_VLCS][PTYPE_VLC_SIZE] = {
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
654 { 1, 2, 3, 6, 5, 4, 7, 7 },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
655 { 3, 1, 2, 7, 6, 5, 4, 7 },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
656 { 5, 4, 1, 4, 3, 3, 4, 5 },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
657 { 4, 5, 2, 2, 3, 2, 6, 6 },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
658 { 5, 6, 1, 4, 2, 3, 7, 7 },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
659 { 5, 6, 1, 4, 3, 2, 7, 7 },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
660 { 6, 3, 2, 7, 5, 4, 1, 7 }
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
661 };
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
662
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
663 static const uint8_t ptype_vlc_syms[PTYPE_VLC_SIZE] = {
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
664 0, 1, 2, 3, 8, 9, 11, PBTYPE_ESCAPE
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
665 };
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
666
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
667 /** reverse of ptype_vlc_syms */
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
668 static const uint8_t block_num_to_ptype_vlc_num[12] = {
5990
266b2501216a Update tables for RV40 decoder
kostya
parents: 5943
diff changeset
669 0, 1, 2, 3, 0, 0, 2, 0, 4, 5, 0, 6
5937
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
670 };
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
671 //@}
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
672
5943
337a95c66190 spelling cosmetics
diego
parents: 5937
diff changeset
673 /** tables used for P-frame macroblock type decoding */
5937
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
674 //@{
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
675 #define NUM_BTYPE_VLCS 6
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
676 #define BTYPE_VLC_SIZE 7
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
677 #define BTYPE_VLC_BITS 6
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
678
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
679 static const uint8_t btype_vlc_codes[NUM_BTYPE_VLCS][BTYPE_VLC_SIZE] = {
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
680 { 0x01, 0x05, 0x00, 0x03, 0x11, 0x09, 0x10 },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
681 { 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00 },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
682 { 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00 },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
683 { 0x09, 0x01, 0x00, 0x01, 0x05, 0x03, 0x08 },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
684 { 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00 },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
685 { 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00 }
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
686 };
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
687
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
688 static const uint8_t btype_vlc_bits[NUM_BTYPE_VLCS][PTYPE_VLC_SIZE] = {
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
689 { 2, 3, 2, 2, 5, 4, 5 },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
690 { 4, 1, 3, 2, 6, 5, 6 },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
691 { 6, 4, 1, 2, 5, 3, 6 },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
692 { 5, 3, 3, 1, 4, 3, 5 },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
693 { 6, 5, 3, 2, 4, 1, 6 },
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
694 { 6, 5, 3, 1, 4, 2, 6 }
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
695 };
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
696
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
697 static const uint8_t btype_vlc_syms[BTYPE_VLC_SIZE] = {
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
698 0, 1, 4, 5, 10, 7, PBTYPE_ESCAPE
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
699 };
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
700
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
701 /** reverse of btype_vlc_syms */
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
702 static const uint8_t block_num_to_btype_vlc_num[12] = {
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
703 0, 1, 0, 0, 2, 3, 0, 5, 0, 0, 4, 0
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
704 };
7b5731b088ed Data tables for future RV30/40 decoder
kostya
parents:
diff changeset
705 //@}
7760
c4a4495715dd Globally rename the header inclusion guard names.
stefano
parents: 5990
diff changeset
706 #endif /* AVCODEC_RV40VLC2_H */