]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blob - libavcodec/mpeg12data.h
Change license headers to say 'FFmpeg' instead of 'this program/this library'
[frescor/ffmpeg.git] / libavcodec / mpeg12data.h
1 /*
2  * MPEG1 codec / MPEG2 decoder
3  * copyright (c) 2000,2001 Fabrice Bellard
4  * copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 /**
24  * @file mpeg12data.h
25  * MPEG1/2 tables.
26  */
27
28 const uint16_t ff_mpeg1_default_intra_matrix[64] = {
29         8, 16, 19, 22, 26, 27, 29, 34,
30         16, 16, 22, 24, 27, 29, 34, 37,
31         19, 22, 26, 27, 29, 34, 34, 38,
32         22, 22, 26, 27, 29, 34, 37, 40,
33         22, 26, 27, 29, 32, 35, 40, 48,
34         26, 27, 29, 32, 35, 40, 48, 58,
35         26, 27, 29, 34, 38, 46, 56, 69,
36         27, 29, 35, 38, 46, 56, 69, 83
37 };
38
39 const uint16_t ff_mpeg1_default_non_intra_matrix[64] = {
40     16, 16, 16, 16, 16, 16, 16, 16,
41     16, 16, 16, 16, 16, 16, 16, 16,
42     16, 16, 16, 16, 16, 16, 16, 16,
43     16, 16, 16, 16, 16, 16, 16, 16,
44     16, 16, 16, 16, 16, 16, 16, 16,
45     16, 16, 16, 16, 16, 16, 16, 16,
46     16, 16, 16, 16, 16, 16, 16, 16,
47     16, 16, 16, 16, 16, 16, 16, 16,
48 };
49
50 static const uint16_t vlc_dc_lum_code[12] = {
51     0x4, 0x0, 0x1, 0x5, 0x6, 0xe, 0x1e, 0x3e, 0x7e, 0xfe, 0x1fe, 0x1ff,
52 };
53 static const unsigned char vlc_dc_lum_bits[12] = {
54     3, 2, 2, 3, 3, 4, 5, 6, 7, 8, 9, 9,
55 };
56
57 const uint16_t vlc_dc_chroma_code[12] = {
58     0x0, 0x1, 0x2, 0x6, 0xe, 0x1e, 0x3e, 0x7e, 0xfe, 0x1fe, 0x3fe, 0x3ff,
59 };
60 const unsigned char vlc_dc_chroma_bits[12] = {
61     2, 2, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10,
62 };
63
64 static const uint16_t mpeg1_vlc[113][2] = {
65  { 0x3, 2 }, { 0x4, 4 }, { 0x5, 5 }, { 0x6, 7 },
66  { 0x26, 8 }, { 0x21, 8 }, { 0xa, 10 }, { 0x1d, 12 },
67  { 0x18, 12 }, { 0x13, 12 }, { 0x10, 12 }, { 0x1a, 13 },
68  { 0x19, 13 }, { 0x18, 13 }, { 0x17, 13 }, { 0x1f, 14 },
69  { 0x1e, 14 }, { 0x1d, 14 }, { 0x1c, 14 }, { 0x1b, 14 },
70  { 0x1a, 14 }, { 0x19, 14 }, { 0x18, 14 }, { 0x17, 14 },
71  { 0x16, 14 }, { 0x15, 14 }, { 0x14, 14 }, { 0x13, 14 },
72  { 0x12, 14 }, { 0x11, 14 }, { 0x10, 14 }, { 0x18, 15 },
73  { 0x17, 15 }, { 0x16, 15 }, { 0x15, 15 }, { 0x14, 15 },
74  { 0x13, 15 }, { 0x12, 15 }, { 0x11, 15 }, { 0x10, 15 },
75  { 0x3, 3 }, { 0x6, 6 }, { 0x25, 8 }, { 0xc, 10 },
76  { 0x1b, 12 }, { 0x16, 13 }, { 0x15, 13 }, { 0x1f, 15 },
77  { 0x1e, 15 }, { 0x1d, 15 }, { 0x1c, 15 }, { 0x1b, 15 },
78  { 0x1a, 15 }, { 0x19, 15 }, { 0x13, 16 }, { 0x12, 16 },
79  { 0x11, 16 }, { 0x10, 16 }, { 0x5, 4 }, { 0x4, 7 },
80  { 0xb, 10 }, { 0x14, 12 }, { 0x14, 13 }, { 0x7, 5 },
81  { 0x24, 8 }, { 0x1c, 12 }, { 0x13, 13 }, { 0x6, 5 },
82  { 0xf, 10 }, { 0x12, 12 }, { 0x7, 6 }, { 0x9, 10 },
83  { 0x12, 13 }, { 0x5, 6 }, { 0x1e, 12 }, { 0x14, 16 },
84  { 0x4, 6 }, { 0x15, 12 }, { 0x7, 7 }, { 0x11, 12 },
85  { 0x5, 7 }, { 0x11, 13 }, { 0x27, 8 }, { 0x10, 13 },
86  { 0x23, 8 }, { 0x1a, 16 }, { 0x22, 8 }, { 0x19, 16 },
87  { 0x20, 8 }, { 0x18, 16 }, { 0xe, 10 }, { 0x17, 16 },
88  { 0xd, 10 }, { 0x16, 16 }, { 0x8, 10 }, { 0x15, 16 },
89  { 0x1f, 12 }, { 0x1a, 12 }, { 0x19, 12 }, { 0x17, 12 },
90  { 0x16, 12 }, { 0x1f, 13 }, { 0x1e, 13 }, { 0x1d, 13 },
91  { 0x1c, 13 }, { 0x1b, 13 }, { 0x1f, 16 }, { 0x1e, 16 },
92  { 0x1d, 16 }, { 0x1c, 16 }, { 0x1b, 16 },
93  { 0x1, 6 }, /* escape */
94  { 0x2, 2 }, /* EOB */
95 };
96
97 static const uint16_t mpeg2_vlc[113][2] = {
98   {0x02, 2}, {0x06, 3}, {0x07, 4}, {0x1c, 5},
99   {0x1d, 5}, {0x05, 6}, {0x04, 6}, {0x7b, 7},
100   {0x7c, 7}, {0x23, 8}, {0x22, 8}, {0xfa, 8},
101   {0xfb, 8}, {0xfe, 8}, {0xff, 8}, {0x1f,14},
102   {0x1e,14}, {0x1d,14}, {0x1c,14}, {0x1b,14},
103   {0x1a,14}, {0x19,14}, {0x18,14}, {0x17,14},
104   {0x16,14}, {0x15,14}, {0x14,14}, {0x13,14},
105   {0x12,14}, {0x11,14}, {0x10,14}, {0x18,15},
106   {0x17,15}, {0x16,15}, {0x15,15}, {0x14,15},
107   {0x13,15}, {0x12,15}, {0x11,15}, {0x10,15},
108   {0x02, 3}, {0x06, 5}, {0x79, 7}, {0x27, 8},
109   {0x20, 8}, {0x16,13}, {0x15,13}, {0x1f,15},
110   {0x1e,15}, {0x1d,15}, {0x1c,15}, {0x1b,15},
111   {0x1a,15}, {0x19,15}, {0x13,16}, {0x12,16},
112   {0x11,16}, {0x10,16}, {0x05, 5}, {0x07, 7},
113   {0xfc, 8}, {0x0c,10}, {0x14,13}, {0x07, 5},
114   {0x26, 8}, {0x1c,12}, {0x13,13}, {0x06, 6},
115   {0xfd, 8}, {0x12,12}, {0x07, 6}, {0x04, 9},
116   {0x12,13}, {0x06, 7}, {0x1e,12}, {0x14,16},
117   {0x04, 7}, {0x15,12}, {0x05, 7}, {0x11,12},
118   {0x78, 7}, {0x11,13}, {0x7a, 7}, {0x10,13},
119   {0x21, 8}, {0x1a,16}, {0x25, 8}, {0x19,16},
120   {0x24, 8}, {0x18,16}, {0x05, 9}, {0x17,16},
121   {0x07, 9}, {0x16,16}, {0x0d,10}, {0x15,16},
122   {0x1f,12}, {0x1a,12}, {0x19,12}, {0x17,12},
123   {0x16,12}, {0x1f,13}, {0x1e,13}, {0x1d,13},
124   {0x1c,13}, {0x1b,13}, {0x1f,16}, {0x1e,16},
125   {0x1d,16}, {0x1c,16}, {0x1b,16},
126   {0x01,6}, /* escape */
127   {0x06,4}, /* EOB */
128 };
129
130 static const int8_t mpeg1_level[111] = {
131   1,  2,  3,  4,  5,  6,  7,  8,
132   9, 10, 11, 12, 13, 14, 15, 16,
133  17, 18, 19, 20, 21, 22, 23, 24,
134  25, 26, 27, 28, 29, 30, 31, 32,
135  33, 34, 35, 36, 37, 38, 39, 40,
136   1,  2,  3,  4,  5,  6,  7,  8,
137   9, 10, 11, 12, 13, 14, 15, 16,
138  17, 18,  1,  2,  3,  4,  5,  1,
139   2,  3,  4,  1,  2,  3,  1,  2,
140   3,  1,  2,  3,  1,  2,  1,  2,
141   1,  2,  1,  2,  1,  2,  1,  2,
142   1,  2,  1,  2,  1,  2,  1,  2,
143   1,  1,  1,  1,  1,  1,  1,  1,
144   1,  1,  1,  1,  1,  1,  1,
145 };
146
147 static const int8_t mpeg1_run[111] = {
148   0,  0,  0,  0,  0,  0,  0,  0,
149   0,  0,  0,  0,  0,  0,  0,  0,
150   0,  0,  0,  0,  0,  0,  0,  0,
151   0,  0,  0,  0,  0,  0,  0,  0,
152   0,  0,  0,  0,  0,  0,  0,  0,
153   1,  1,  1,  1,  1,  1,  1,  1,
154   1,  1,  1,  1,  1,  1,  1,  1,
155   1,  1,  2,  2,  2,  2,  2,  3,
156   3,  3,  3,  4,  4,  4,  5,  5,
157   5,  6,  6,  6,  7,  7,  8,  8,
158   9,  9, 10, 10, 11, 11, 12, 12,
159  13, 13, 14, 14, 15, 15, 16, 16,
160  17, 18, 19, 20, 21, 22, 23, 24,
161  25, 26, 27, 28, 29, 30, 31,
162 };
163
164 static RLTable rl_mpeg1 = {
165     111,
166     111,
167     mpeg1_vlc,
168     mpeg1_run,
169     mpeg1_level,
170 };
171
172 static RLTable rl_mpeg2 = {
173     111,
174     111,
175     mpeg2_vlc,
176     mpeg1_run,
177     mpeg1_level,
178 };
179
180 static const uint8_t mbAddrIncrTable[36][2] = {
181     {0x1, 1},
182     {0x3, 3},
183     {0x2, 3},
184     {0x3, 4},
185     {0x2, 4},
186     {0x3, 5},
187     {0x2, 5},
188     {0x7, 7},
189     {0x6, 7},
190     {0xb, 8},
191     {0xa, 8},
192     {0x9, 8},
193     {0x8, 8},
194     {0x7, 8},
195     {0x6, 8},
196     {0x17, 10},
197     {0x16, 10},
198     {0x15, 10},
199     {0x14, 10},
200     {0x13, 10},
201     {0x12, 10},
202     {0x23, 11},
203     {0x22, 11},
204     {0x21, 11},
205     {0x20, 11},
206     {0x1f, 11},
207     {0x1e, 11},
208     {0x1d, 11},
209     {0x1c, 11},
210     {0x1b, 11},
211     {0x1a, 11},
212     {0x19, 11},
213     {0x18, 11},
214     {0x8, 11}, /* escape */
215     {0xf, 11}, /* stuffing */
216     {0x0, 8}, /* end (and 15 more 0 bits should follow) */
217 };
218
219 static const uint8_t mbPatTable[64][2] = {
220     {0x1, 9},
221     {0xb, 5},
222     {0x9, 5},
223     {0xd, 6},
224     {0xd, 4},
225     {0x17, 7},
226     {0x13, 7},
227     {0x1f, 8},
228     {0xc, 4},
229     {0x16, 7},
230     {0x12, 7},
231     {0x1e, 8},
232     {0x13, 5},
233     {0x1b, 8},
234     {0x17, 8},
235     {0x13, 8},
236     {0xb, 4},
237     {0x15, 7},
238     {0x11, 7},
239     {0x1d, 8},
240     {0x11, 5},
241     {0x19, 8},
242     {0x15, 8},
243     {0x11, 8},
244     {0xf, 6},
245     {0xf, 8},
246     {0xd, 8},
247     {0x3, 9},
248     {0xf, 5},
249     {0xb, 8},
250     {0x7, 8},
251     {0x7, 9},
252     {0xa, 4},
253     {0x14, 7},
254     {0x10, 7},
255     {0x1c, 8},
256     {0xe, 6},
257     {0xe, 8},
258     {0xc, 8},
259     {0x2, 9},
260     {0x10, 5},
261     {0x18, 8},
262     {0x14, 8},
263     {0x10, 8},
264     {0xe, 5},
265     {0xa, 8},
266     {0x6, 8},
267     {0x6, 9},
268     {0x12, 5},
269     {0x1a, 8},
270     {0x16, 8},
271     {0x12, 8},
272     {0xd, 5},
273     {0x9, 8},
274     {0x5, 8},
275     {0x5, 9},
276     {0xc, 5},
277     {0x8, 8},
278     {0x4, 8},
279     {0x4, 9},
280     {0x7, 3},
281     {0xa, 5},
282     {0x8, 5},
283     {0xc, 6}
284 };
285
286 #define MB_TYPE_ZERO_MV   0x20000000
287 #define IS_ZERO_MV(a)   ((a)&MB_TYPE_ZERO_MV)
288
289 static const uint8_t table_mb_ptype[7][2] = {
290     { 3, 5 }, // 0x01 MB_INTRA
291     { 1, 2 }, // 0x02 MB_PAT
292     { 1, 3 }, // 0x08 MB_FOR
293     { 1, 1 }, // 0x0A MB_FOR|MB_PAT
294     { 1, 6 }, // 0x11 MB_QUANT|MB_INTRA
295     { 1, 5 }, // 0x12 MB_QUANT|MB_PAT
296     { 2, 5 }, // 0x1A MB_QUANT|MB_FOR|MB_PAT
297 };
298
299 static const uint32_t ptype2mb_type[7] = {
300                     MB_TYPE_INTRA,
301                     MB_TYPE_L0 | MB_TYPE_CBP | MB_TYPE_ZERO_MV | MB_TYPE_16x16,
302                     MB_TYPE_L0,
303                     MB_TYPE_L0 | MB_TYPE_CBP,
304     MB_TYPE_QUANT | MB_TYPE_INTRA,
305     MB_TYPE_QUANT | MB_TYPE_L0 | MB_TYPE_CBP | MB_TYPE_ZERO_MV | MB_TYPE_16x16,
306     MB_TYPE_QUANT | MB_TYPE_L0 | MB_TYPE_CBP,
307 };
308
309 static const uint8_t table_mb_btype[11][2] = {
310     { 3, 5 }, // 0x01 MB_INTRA
311     { 2, 3 }, // 0x04 MB_BACK
312     { 3, 3 }, // 0x06 MB_BACK|MB_PAT
313     { 2, 4 }, // 0x08 MB_FOR
314     { 3, 4 }, // 0x0A MB_FOR|MB_PAT
315     { 2, 2 }, // 0x0C MB_FOR|MB_BACK
316     { 3, 2 }, // 0x0E MB_FOR|MB_BACK|MB_PAT
317     { 1, 6 }, // 0x11 MB_QUANT|MB_INTRA
318     { 2, 6 }, // 0x16 MB_QUANT|MB_BACK|MB_PAT
319     { 3, 6 }, // 0x1A MB_QUANT|MB_FOR|MB_PAT
320     { 2, 5 }, // 0x1E MB_QUANT|MB_FOR|MB_BACK|MB_PAT
321 };
322
323 static const uint32_t btype2mb_type[11] = {
324                     MB_TYPE_INTRA,
325                     MB_TYPE_L1,
326                     MB_TYPE_L1   | MB_TYPE_CBP,
327                     MB_TYPE_L0,
328                     MB_TYPE_L0   | MB_TYPE_CBP,
329                     MB_TYPE_L0L1,
330                     MB_TYPE_L0L1 | MB_TYPE_CBP,
331     MB_TYPE_QUANT | MB_TYPE_INTRA,
332     MB_TYPE_QUANT | MB_TYPE_L1   | MB_TYPE_CBP,
333     MB_TYPE_QUANT | MB_TYPE_L0   | MB_TYPE_CBP,
334     MB_TYPE_QUANT | MB_TYPE_L0L1 | MB_TYPE_CBP,
335 };
336
337 static const uint8_t mbMotionVectorTable[17][2] = {
338 { 0x1, 1 },
339 { 0x1, 2 },
340 { 0x1, 3 },
341 { 0x1, 4 },
342 { 0x3, 6 },
343 { 0x5, 7 },
344 { 0x4, 7 },
345 { 0x3, 7 },
346 { 0xb, 9 },
347 { 0xa, 9 },
348 { 0x9, 9 },
349 { 0x11, 10 },
350 { 0x10, 10 },
351 { 0xf, 10 },
352 { 0xe, 10 },
353 { 0xd, 10 },
354 { 0xc, 10 },
355 };
356
357 const AVRational ff_frame_rate_tab[] = {
358     {    0,    0},
359     {24000, 1001},
360     {   24,    1},
361     {   25,    1},
362     {30000, 1001},
363     {   30,    1},
364     {   50,    1},
365     {60000, 1001},
366     {   60,    1},
367   // Xing's 15fps: (9)
368     {   15,    1},
369   // libmpeg3's "Unofficial economy rates": (10-13)
370     {    5,    1},
371     {   10,    1},
372     {   12,    1},
373     {   15,    1},
374     {    0,    0},
375 };
376
377 static const uint8_t non_linear_qscale[32] = {
378     0, 1, 2, 3, 4, 5, 6, 7,
379     8,10,12,14,16,18,20,22,
380     24,28,32,36,40,44,48,52,
381     56,64,72,80,88,96,104,112,
382 };
383
384 const uint8_t ff_mpeg1_dc_scale_table[128]={
385 //  0  1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
386     8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,
387     8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,
388     8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,
389     8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,
390 };
391
392 static const uint8_t mpeg2_dc_scale_table1[128]={
393 //  0  1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
394     4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
395     4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
396     4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
397     4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
398 };
399
400 static const uint8_t mpeg2_dc_scale_table2[128]={
401 //  0  1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
402     2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
403     2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
404     2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
405     2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
406 };
407
408 static const uint8_t mpeg2_dc_scale_table3[128]={
409 //  0  1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
410     1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
411     1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
412     1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
413     1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
414 };
415
416 static const uint8_t *mpeg2_dc_scale_table[4]={
417     ff_mpeg1_dc_scale_table,
418     mpeg2_dc_scale_table1,
419     mpeg2_dc_scale_table2,
420     mpeg2_dc_scale_table3,
421 };
422
423 static const float mpeg1_aspect[16]={
424     0.0000,
425     1.0000,
426     0.6735,
427     0.7031,
428
429     0.7615,
430     0.8055,
431     0.8437,
432     0.8935,
433
434     0.9157,
435     0.9815,
436     1.0255,
437     1.0695,
438
439     1.0950,
440     1.1575,
441     1.2015,
442 };
443
444 static const AVRational mpeg2_aspect[16]={
445     {0,1},
446     {1,1},
447     {4,3},
448     {16,9},
449     {221,100},
450     {0,1},
451     {0,1},
452     {0,1},
453     {0,1},
454     {0,1},
455     {0,1},
456     {0,1},
457     {0,1},
458     {0,1},
459     {0,1},
460     {0,1},
461 };
462
463 static const uint8_t svcd_scan_offset_placeholder[14]={
464     0x10, 0x0E,
465     0x00, 0x80, 0x81,
466     0x00, 0x80, 0x81,
467     0xff, 0xff, 0xff,
468     0xff, 0xff, 0xff,
469 };