Mercurial > libavcodec.hg
annotate dvdata.h @ 7728:311f7ae6fbbc libavcodec
Move t1 and t2 declaration from the QMF code closer to where they are used.
author | michael |
---|---|
date | Fri, 29 Aug 2008 14:53:07 +0000 |
parents | e8f71784062e |
children | c4a4495715dd |
rev | line source |
---|---|
723 | 1 /* |
2 * Constants for DV codec | |
3 * Copyright (c) 2002 Fabrice Bellard. | |
4 * | |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3671
diff
changeset
|
5 * This file is part of FFmpeg. |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3671
diff
changeset
|
6 * |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3671
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
723 | 8 * modify it under the terms of the GNU Lesser General Public |
9 * License as published by the Free Software Foundation; either | |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3671
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
723 | 11 * |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3671
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
723 | 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 * Lesser General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU Lesser General Public | |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3671
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
3036
0b546eab515d
Update licensing information: The FSF changed postal address.
diego
parents:
2967
diff
changeset
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
723 | 20 */ |
21 | |
1106 | 22 /** |
23 * @file dvdata.h | |
24 * Constants for DV codec. | |
25 */ | |
1489
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
26 |
5830
1d83e9c34641
Add FFMPEG_ prefix to all multiple inclusion guards.
diego
parents:
5351
diff
changeset
|
27 #ifndef FFMPEG_DVDATA_H |
1d83e9c34641
Add FFMPEG_ prefix to all multiple inclusion guards.
diego
parents:
5351
diff
changeset
|
28 #define FFMPEG_DVDATA_H |
5163 | 29 |
6763 | 30 #include "libavutil/rational.h" |
5162 | 31 #include "avcodec.h" |
32 | |
2967 | 33 /* |
34 * DVprofile is used to express the differences between various | |
1489
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
35 * DV flavors. For now it's primarily used for differentiating |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
36 * 525/60 and 625/50, but the plans are to use it for various |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
37 * DV specs as well (e.g. SMPTE314M vs. IEC 61834). |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
38 */ |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
39 typedef struct DVprofile { |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
40 int dsf; /* value of the dsf in the DV header */ |
7714
f0f8bb920b24
Introducing video_stype for holding the value of VAUX source pack
romansh
parents:
7616
diff
changeset
|
41 int video_stype; /* stype for VAUX source pack */ |
1489
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
42 int frame_size; /* total size of one frame in bytes */ |
3167 | 43 int difseg_size; /* number of DIF segments per DIF channel */ |
44 int n_difchan; /* number of DIF channels per frame */ | |
2967 | 45 int frame_rate; |
1489
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
46 int frame_rate_base; |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
47 int ltc_divisor; /* FPS from the LTS standpoint */ |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
48 int height; /* picture height in pixels */ |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
49 int width; /* picture width in pixels */ |
1590
2d5dd2f9f760
* DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents:
1567
diff
changeset
|
50 AVRational sar[2]; /* sample aspect ratios for 4:3 and 16:9 */ |
1489
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
51 const uint16_t *video_place; /* positions of all DV macro blocks */ |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
52 enum PixelFormat pix_fmt; /* picture pixel format */ |
7615
290fd3ae1219
Making the number of blocks per macroblock dependent on the DV stream
romansh
parents:
7614
diff
changeset
|
53 int bpm; /* blocks per macroblock */ |
7616
685ef77c9fe5
Making block size in bits variable and dependent on the DV spec
romansh
parents:
7615
diff
changeset
|
54 const uint8_t *block_sizes; /* AC block sizes, in bits */ |
1489
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
55 int audio_stride; /* size of audio_shuffle table */ |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
56 int audio_min_samples[3];/* min ammount of audio samples */ |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
57 /* for 48Khz, 44.1Khz and 32Khz */ |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
58 int audio_samples_dist[5];/* how many samples are supposed to be */ |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
59 /* in each frame in a 5 frames window */ |
4361 | 60 const uint8_t (*audio_shuffle)[9]; /* PCM shuffling table */ |
1489
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
61 } DVprofile; |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
62 |
723 | 63 #define NB_DV_VLC 409 |
64 | |
2967 | 65 /* |
1631
59f2fa833449
* 3x encoding speedup. Finally we seem to be on par with libdv
romansh
parents:
1590
diff
changeset
|
66 * There's a catch about the following three tables: the mapping they establish |
59f2fa833449
* 3x encoding speedup. Finally we seem to be on par with libdv
romansh
parents:
1590
diff
changeset
|
67 * between (run, level) and vlc is not 1-1. So you have to watch out for that |
2967 | 68 * when building misc. tables. E.g. (1, 0) can be either 0x7cf or 0x1f82. |
1631
59f2fa833449
* 3x encoding speedup. Finally we seem to be on par with libdv
romansh
parents:
1590
diff
changeset
|
69 */ |
1064 | 70 static const uint16_t dv_vlc_bits[409] = { |
723 | 71 0x0000, 0x0002, 0x0007, 0x0008, 0x0009, 0x0014, 0x0015, 0x0016, |
72 0x0017, 0x0030, 0x0031, 0x0032, 0x0033, 0x0068, 0x0069, 0x006a, | |
73 0x006b, 0x006c, 0x006d, 0x006e, 0x006f, 0x00e0, 0x00e1, 0x00e2, | |
74 0x00e3, 0x00e4, 0x00e5, 0x00e6, 0x00e7, 0x00e8, 0x00e9, 0x00ea, | |
75 0x00eb, 0x00ec, 0x00ed, 0x00ee, 0x00ef, 0x01e0, 0x01e1, 0x01e2, | |
76 0x01e3, 0x01e4, 0x01e5, 0x01e6, 0x01e7, 0x01e8, 0x01e9, 0x01ea, | |
77 0x01eb, 0x01ec, 0x01ed, 0x01ee, 0x01ef, 0x03e0, 0x03e1, 0x03e2, | |
78 0x03e3, 0x03e4, 0x03e5, 0x03e6, 0x07ce, 0x07cf, 0x07d0, 0x07d1, | |
79 0x07d2, 0x07d3, 0x07d4, 0x07d5, 0x0fac, 0x0fad, 0x0fae, 0x0faf, | |
80 0x0fb0, 0x0fb1, 0x0fb2, 0x0fb3, 0x0fb4, 0x0fb5, 0x0fb6, 0x0fb7, | |
81 0x0fb8, 0x0fb9, 0x0fba, 0x0fbb, 0x0fbc, 0x0fbd, 0x0fbe, 0x0fbf, | |
82 0x1f80, 0x1f81, 0x1f82, 0x1f83, 0x1f84, 0x1f85, 0x1f86, 0x1f87, | |
83 0x1f88, 0x1f89, 0x1f8a, 0x1f8b, 0x1f8c, 0x1f8d, 0x1f8e, 0x1f8f, | |
84 0x1f90, 0x1f91, 0x1f92, 0x1f93, 0x1f94, 0x1f95, 0x1f96, 0x1f97, | |
85 0x1f98, 0x1f99, 0x1f9a, 0x1f9b, 0x1f9c, 0x1f9d, 0x1f9e, 0x1f9f, | |
86 0x1fa0, 0x1fa1, 0x1fa2, 0x1fa3, 0x1fa4, 0x1fa5, 0x1fa6, 0x1fa7, | |
87 0x1fa8, 0x1fa9, 0x1faa, 0x1fab, 0x1fac, 0x1fad, 0x1fae, 0x1faf, | |
88 0x1fb0, 0x1fb1, 0x1fb2, 0x1fb3, 0x1fb4, 0x1fb5, 0x1fb6, 0x1fb7, | |
89 0x1fb8, 0x1fb9, 0x1fba, 0x1fbb, 0x1fbc, 0x1fbd, 0x1fbe, 0x1fbf, | |
90 0x7f00, 0x7f01, 0x7f02, 0x7f03, 0x7f04, 0x7f05, 0x7f06, 0x7f07, | |
91 0x7f08, 0x7f09, 0x7f0a, 0x7f0b, 0x7f0c, 0x7f0d, 0x7f0e, 0x7f0f, | |
92 0x7f10, 0x7f11, 0x7f12, 0x7f13, 0x7f14, 0x7f15, 0x7f16, 0x7f17, | |
93 0x7f18, 0x7f19, 0x7f1a, 0x7f1b, 0x7f1c, 0x7f1d, 0x7f1e, 0x7f1f, | |
94 0x7f20, 0x7f21, 0x7f22, 0x7f23, 0x7f24, 0x7f25, 0x7f26, 0x7f27, | |
95 0x7f28, 0x7f29, 0x7f2a, 0x7f2b, 0x7f2c, 0x7f2d, 0x7f2e, 0x7f2f, | |
96 0x7f30, 0x7f31, 0x7f32, 0x7f33, 0x7f34, 0x7f35, 0x7f36, 0x7f37, | |
97 0x7f38, 0x7f39, 0x7f3a, 0x7f3b, 0x7f3c, 0x7f3d, 0x7f3e, 0x7f3f, | |
98 0x7f40, 0x7f41, 0x7f42, 0x7f43, 0x7f44, 0x7f45, 0x7f46, 0x7f47, | |
99 0x7f48, 0x7f49, 0x7f4a, 0x7f4b, 0x7f4c, 0x7f4d, 0x7f4e, 0x7f4f, | |
100 0x7f50, 0x7f51, 0x7f52, 0x7f53, 0x7f54, 0x7f55, 0x7f56, 0x7f57, | |
101 0x7f58, 0x7f59, 0x7f5a, 0x7f5b, 0x7f5c, 0x7f5d, 0x7f5e, 0x7f5f, | |
102 0x7f60, 0x7f61, 0x7f62, 0x7f63, 0x7f64, 0x7f65, 0x7f66, 0x7f67, | |
103 0x7f68, 0x7f69, 0x7f6a, 0x7f6b, 0x7f6c, 0x7f6d, 0x7f6e, 0x7f6f, | |
104 0x7f70, 0x7f71, 0x7f72, 0x7f73, 0x7f74, 0x7f75, 0x7f76, 0x7f77, | |
105 0x7f78, 0x7f79, 0x7f7a, 0x7f7b, 0x7f7c, 0x7f7d, 0x7f7e, 0x7f7f, | |
106 0x7f80, 0x7f81, 0x7f82, 0x7f83, 0x7f84, 0x7f85, 0x7f86, 0x7f87, | |
107 0x7f88, 0x7f89, 0x7f8a, 0x7f8b, 0x7f8c, 0x7f8d, 0x7f8e, 0x7f8f, | |
108 0x7f90, 0x7f91, 0x7f92, 0x7f93, 0x7f94, 0x7f95, 0x7f96, 0x7f97, | |
109 0x7f98, 0x7f99, 0x7f9a, 0x7f9b, 0x7f9c, 0x7f9d, 0x7f9e, 0x7f9f, | |
110 0x7fa0, 0x7fa1, 0x7fa2, 0x7fa3, 0x7fa4, 0x7fa5, 0x7fa6, 0x7fa7, | |
111 0x7fa8, 0x7fa9, 0x7faa, 0x7fab, 0x7fac, 0x7fad, 0x7fae, 0x7faf, | |
112 0x7fb0, 0x7fb1, 0x7fb2, 0x7fb3, 0x7fb4, 0x7fb5, 0x7fb6, 0x7fb7, | |
113 0x7fb8, 0x7fb9, 0x7fba, 0x7fbb, 0x7fbc, 0x7fbd, 0x7fbe, 0x7fbf, | |
114 0x7fc0, 0x7fc1, 0x7fc2, 0x7fc3, 0x7fc4, 0x7fc5, 0x7fc6, 0x7fc7, | |
115 0x7fc8, 0x7fc9, 0x7fca, 0x7fcb, 0x7fcc, 0x7fcd, 0x7fce, 0x7fcf, | |
116 0x7fd0, 0x7fd1, 0x7fd2, 0x7fd3, 0x7fd4, 0x7fd5, 0x7fd6, 0x7fd7, | |
117 0x7fd8, 0x7fd9, 0x7fda, 0x7fdb, 0x7fdc, 0x7fdd, 0x7fde, 0x7fdf, | |
118 0x7fe0, 0x7fe1, 0x7fe2, 0x7fe3, 0x7fe4, 0x7fe5, 0x7fe6, 0x7fe7, | |
119 0x7fe8, 0x7fe9, 0x7fea, 0x7feb, 0x7fec, 0x7fed, 0x7fee, 0x7fef, | |
120 0x7ff0, 0x7ff1, 0x7ff2, 0x7ff3, 0x7ff4, 0x7ff5, 0x7ff6, 0x7ff7, | |
121 0x7ff8, 0x7ff9, 0x7ffa, 0x7ffb, 0x7ffc, 0x7ffd, 0x7ffe, 0x7fff, | |
122 0x0006, | |
123 }; | |
124 | |
1064 | 125 static const uint8_t dv_vlc_len[409] = { |
723 | 126 2, 3, 4, 4, 4, 5, 5, 5, |
127 5, 6, 6, 6, 6, 7, 7, 7, | |
128 7, 7, 7, 7, 7, 8, 8, 8, | |
129 8, 8, 8, 8, 8, 8, 8, 8, | |
130 8, 8, 8, 8, 8, 9, 9, 9, | |
131 9, 9, 9, 9, 9, 9, 9, 9, | |
132 9, 9, 9, 9, 9, 10, 10, 10, | |
133 10, 10, 10, 10, 11, 11, 11, 11, | |
134 11, 11, 11, 11, 12, 12, 12, 12, | |
135 12, 12, 12, 12, 12, 12, 12, 12, | |
136 12, 12, 12, 12, 12, 12, 12, 12, | |
137 13, 13, 13, 13, 13, 13, 13, 13, | |
138 13, 13, 13, 13, 13, 13, 13, 13, | |
139 13, 13, 13, 13, 13, 13, 13, 13, | |
140 13, 13, 13, 13, 13, 13, 13, 13, | |
141 13, 13, 13, 13, 13, 13, 13, 13, | |
142 13, 13, 13, 13, 13, 13, 13, 13, | |
143 13, 13, 13, 13, 13, 13, 13, 13, | |
144 13, 13, 13, 13, 13, 13, 13, 13, | |
145 15, 15, 15, 15, 15, 15, 15, 15, | |
146 15, 15, 15, 15, 15, 15, 15, 15, | |
147 15, 15, 15, 15, 15, 15, 15, 15, | |
148 15, 15, 15, 15, 15, 15, 15, 15, | |
149 15, 15, 15, 15, 15, 15, 15, 15, | |
150 15, 15, 15, 15, 15, 15, 15, 15, | |
151 15, 15, 15, 15, 15, 15, 15, 15, | |
152 15, 15, 15, 15, 15, 15, 15, 15, | |
153 15, 15, 15, 15, 15, 15, 15, 15, | |
154 15, 15, 15, 15, 15, 15, 15, 15, | |
155 15, 15, 15, 15, 15, 15, 15, 15, | |
156 15, 15, 15, 15, 15, 15, 15, 15, | |
157 15, 15, 15, 15, 15, 15, 15, 15, | |
158 15, 15, 15, 15, 15, 15, 15, 15, | |
159 15, 15, 15, 15, 15, 15, 15, 15, | |
160 15, 15, 15, 15, 15, 15, 15, 15, | |
161 15, 15, 15, 15, 15, 15, 15, 15, | |
162 15, 15, 15, 15, 15, 15, 15, 15, | |
163 15, 15, 15, 15, 15, 15, 15, 15, | |
164 15, 15, 15, 15, 15, 15, 15, 15, | |
165 15, 15, 15, 15, 15, 15, 15, 15, | |
166 15, 15, 15, 15, 15, 15, 15, 15, | |
167 15, 15, 15, 15, 15, 15, 15, 15, | |
168 15, 15, 15, 15, 15, 15, 15, 15, | |
169 15, 15, 15, 15, 15, 15, 15, 15, | |
170 15, 15, 15, 15, 15, 15, 15, 15, | |
171 15, 15, 15, 15, 15, 15, 15, 15, | |
172 15, 15, 15, 15, 15, 15, 15, 15, | |
173 15, 15, 15, 15, 15, 15, 15, 15, | |
174 15, 15, 15, 15, 15, 15, 15, 15, | |
175 15, 15, 15, 15, 15, 15, 15, 15, | |
176 15, 15, 15, 15, 15, 15, 15, 15, | |
177 4, | |
178 }; | |
179 | |
1064 | 180 static const uint8_t dv_vlc_run[409] = { |
723 | 181 0, 0, 1, 0, 0, 2, 1, 0, |
182 0, 3, 4, 0, 0, 5, 6, 2, | |
183 1, 1, 0, 0, 0, 7, 8, 9, | |
184 10, 3, 4, 2, 1, 1, 1, 0, | |
185 0, 0, 0, 0, 0, 11, 12, 13, | |
186 14, 5, 6, 3, 4, 2, 2, 1, | |
187 0, 0, 0, 0, 0, 5, 3, 3, | |
188 2, 1, 1, 1, 0, 1, 6, 4, | |
189 3, 1, 1, 1, 2, 3, 4, 5, | |
190 7, 8, 9, 10, 7, 8, 4, 3, | |
191 2, 2, 2, 2, 2, 1, 1, 1, | |
192 0, 1, 2, 3, 4, 5, 6, 7, | |
193 8, 9, 10, 11, 12, 13, 14, 15, | |
194 16, 17, 18, 19, 20, 21, 22, 23, | |
195 24, 25, 26, 27, 28, 29, 30, 31, | |
196 32, 33, 34, 35, 36, 37, 38, 39, | |
197 40, 41, 42, 43, 44, 45, 46, 47, | |
198 48, 49, 50, 51, 52, 53, 54, 55, | |
199 56, 57, 58, 59, 60, 61, 62, 63, | |
200 0, 0, 0, 0, 0, 0, 0, 0, | |
201 0, 0, 0, 0, 0, 0, 0, 0, | |
202 0, 0, 0, 0, 0, 0, 0, 0, | |
203 0, 0, 0, 0, 0, 0, 0, 0, | |
204 0, 0, 0, 0, 0, 0, 0, 0, | |
205 0, 0, 0, 0, 0, 0, 0, 0, | |
206 0, 0, 0, 0, 0, 0, 0, 0, | |
207 0, 0, 0, 0, 0, 0, 0, 0, | |
208 0, 0, 0, 0, 0, 0, 0, 0, | |
209 0, 0, 0, 0, 0, 0, 0, 0, | |
210 0, 0, 0, 0, 0, 0, 0, 0, | |
211 0, 0, 0, 0, 0, 0, 0, 0, | |
212 0, 0, 0, 0, 0, 0, 0, 0, | |
213 0, 0, 0, 0, 0, 0, 0, 0, | |
214 0, 0, 0, 0, 0, 0, 0, 0, | |
215 0, 0, 0, 0, 0, 0, 0, 0, | |
216 0, 0, 0, 0, 0, 0, 0, 0, | |
217 0, 0, 0, 0, 0, 0, 0, 0, | |
218 0, 0, 0, 0, 0, 0, 0, 0, | |
219 0, 0, 0, 0, 0, 0, 0, 0, | |
220 0, 0, 0, 0, 0, 0, 0, 0, | |
221 0, 0, 0, 0, 0, 0, 0, 0, | |
222 0, 0, 0, 0, 0, 0, 0, 0, | |
223 0, 0, 0, 0, 0, 0, 0, 0, | |
224 0, 0, 0, 0, 0, 0, 0, 0, | |
225 0, 0, 0, 0, 0, 0, 0, 0, | |
226 0, 0, 0, 0, 0, 0, 0, 0, | |
227 0, 0, 0, 0, 0, 0, 0, 0, | |
228 0, 0, 0, 0, 0, 0, 0, 0, | |
229 0, 0, 0, 0, 0, 0, 0, 0, | |
230 0, 0, 0, 0, 0, 0, 0, 0, | |
231 0, 0, 0, 0, 0, 0, 0, 0, | |
1886
fbcf02596520
* DV decoder simplifications. Now it looks to be 6% faster. At least
romansh
parents:
1631
diff
changeset
|
232 127, |
723 | 233 }; |
234 | |
1064 | 235 static const uint8_t dv_vlc_level[409] = { |
723 | 236 1, 2, 1, 3, 4, 1, 2, 5, |
237 6, 1, 1, 7, 8, 1, 1, 2, | |
238 3, 4, 9, 10, 11, 1, 1, 1, | |
239 1, 2, 2, 3, 5, 6, 7, 12, | |
240 13, 14, 15, 16, 17, 1, 1, 1, | |
241 1, 2, 2, 3, 3, 4, 5, 8, | |
242 18, 19, 20, 21, 22, 3, 4, 5, | |
243 6, 9, 10, 11, 0, 0, 3, 4, | |
244 6, 12, 13, 14, 0, 0, 0, 0, | |
245 2, 2, 2, 2, 3, 3, 5, 7, | |
246 7, 8, 9, 10, 11, 15, 16, 17, | |
247 0, 0, 0, 0, 0, 0, 0, 0, | |
248 0, 0, 0, 0, 0, 0, 0, 0, | |
249 0, 0, 0, 0, 0, 0, 0, 0, | |
250 0, 0, 0, 0, 0, 0, 0, 0, | |
251 0, 0, 0, 0, 0, 0, 0, 0, | |
252 0, 0, 0, 0, 0, 0, 0, 0, | |
253 0, 0, 0, 0, 0, 0, 0, 0, | |
254 0, 0, 0, 0, 0, 0, 0, 0, | |
255 0, 1, 2, 3, 4, 5, 6, 7, | |
256 8, 9, 10, 11, 12, 13, 14, 15, | |
257 16, 17, 18, 19, 20, 21, 22, 23, | |
258 24, 25, 26, 27, 28, 29, 30, 31, | |
259 32, 33, 34, 35, 36, 37, 38, 39, | |
260 40, 41, 42, 43, 44, 45, 46, 47, | |
261 48, 49, 50, 51, 52, 53, 54, 55, | |
262 56, 57, 58, 59, 60, 61, 62, 63, | |
263 64, 65, 66, 67, 68, 69, 70, 71, | |
264 72, 73, 74, 75, 76, 77, 78, 79, | |
265 80, 81, 82, 83, 84, 85, 86, 87, | |
266 88, 89, 90, 91, 92, 93, 94, 95, | |
267 96, 97, 98, 99, 100, 101, 102, 103, | |
268 104, 105, 106, 107, 108, 109, 110, 111, | |
269 112, 113, 114, 115, 116, 117, 118, 119, | |
270 120, 121, 122, 123, 124, 125, 126, 127, | |
271 128, 129, 130, 131, 132, 133, 134, 135, | |
272 136, 137, 138, 139, 140, 141, 142, 143, | |
273 144, 145, 146, 147, 148, 149, 150, 151, | |
274 152, 153, 154, 155, 156, 157, 158, 159, | |
275 160, 161, 162, 163, 164, 165, 166, 167, | |
276 168, 169, 170, 171, 172, 173, 174, 175, | |
277 176, 177, 178, 179, 180, 181, 182, 183, | |
278 184, 185, 186, 187, 188, 189, 190, 191, | |
279 192, 193, 194, 195, 196, 197, 198, 199, | |
280 200, 201, 202, 203, 204, 205, 206, 207, | |
281 208, 209, 210, 211, 212, 213, 214, 215, | |
282 216, 217, 218, 219, 220, 221, 222, 223, | |
283 224, 225, 226, 227, 228, 229, 230, 231, | |
284 232, 233, 234, 235, 236, 237, 238, 239, | |
285 240, 241, 242, 243, 244, 245, 246, 247, | |
286 248, 249, 250, 251, 252, 253, 254, 255, | |
287 0, | |
288 }; | |
289 | |
290 /* unquant tables (not used directly) */ | |
1489
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
291 static const uint8_t dv_quant_shifts[22][4] = { |
2967 | 292 { 3,3,4,4 }, |
293 { 3,3,4,4 }, | |
294 { 2,3,3,4 }, | |
723 | 295 { 2,3,3,4 }, |
2967 | 296 { 2,2,3,3 }, |
297 { 2,2,3,3 }, | |
298 { 1,2,2,3 }, | |
299 { 1,2,2,3 }, | |
300 { 1,1,2,2 }, | |
301 { 1,1,2,2 }, | |
302 { 0,1,1,2 }, | |
303 { 0,1,1,2 }, | |
723 | 304 { 0,0,1,1 }, |
2967 | 305 { 0,0,1,1 }, |
306 { 0,0,0,1 }, | |
307 { 0,0,0,0 }, | |
308 { 0,0,0,0 }, | |
309 { 0,0,0,0 }, | |
310 { 0,0,0,0 }, | |
311 { 0,0,0,0 }, | |
312 { 0,0,0,0 }, | |
723 | 313 { 0,0,0,0 }, |
314 }; | |
315 | |
1064 | 316 static const uint8_t dv_quant_offset[4] = { 6, 3, 0, 1 }; |
7536
910087e97750
Coalescing the un-weighting and de-quantization steps for faster
romansh
parents:
6763
diff
changeset
|
317 static const uint8_t dv_quant_areas[4] = { 6, 21, 43, 64 }; |
723 | 318 |
7715
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
319 /* quantization quanta by QNO for DV100 */ |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
320 static const uint8_t dv100_qstep[16] = { |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
321 1, /* QNO = 0 and 1 both have no quantization */ |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
322 1, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
323 2, 3, 4, 5, 6, 7, 8, 16, 18, 20, 22, 24, 28, 52 |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
324 }; |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
325 |
6132 | 326 /* NOTE: I prefer hardcoding the positioning of dv blocks, it is |
723 | 327 simpler :-) */ |
328 | |
1064 | 329 static const uint16_t dv_place_420[1620] = { |
723 | 330 0x0c24, 0x2412, 0x3036, 0x0000, 0x1848, |
331 0x0e24, 0x2612, 0x3236, 0x0200, 0x1a48, | |
332 0x1024, 0x2812, 0x3436, 0x0400, 0x1c48, | |
333 0x1026, 0x2814, 0x3438, 0x0402, 0x1c4a, | |
334 0x0e26, 0x2614, 0x3238, 0x0202, 0x1a4a, | |
335 0x0c26, 0x2414, 0x3038, 0x0002, 0x184a, | |
336 0x0c28, 0x2416, 0x303a, 0x0004, 0x184c, | |
337 0x0e28, 0x2616, 0x323a, 0x0204, 0x1a4c, | |
338 0x1028, 0x2816, 0x343a, 0x0404, 0x1c4c, | |
339 0x102a, 0x2818, 0x343c, 0x0406, 0x1c4e, | |
340 0x0e2a, 0x2618, 0x323c, 0x0206, 0x1a4e, | |
341 0x0c2a, 0x2418, 0x303c, 0x0006, 0x184e, | |
342 0x0c2c, 0x241a, 0x303e, 0x0008, 0x1850, | |
343 0x0e2c, 0x261a, 0x323e, 0x0208, 0x1a50, | |
344 0x102c, 0x281a, 0x343e, 0x0408, 0x1c50, | |
345 0x102e, 0x281c, 0x3440, 0x040a, 0x1c52, | |
346 0x0e2e, 0x261c, 0x3240, 0x020a, 0x1a52, | |
347 0x0c2e, 0x241c, 0x3040, 0x000a, 0x1852, | |
348 0x0c30, 0x241e, 0x3042, 0x000c, 0x1854, | |
349 0x0e30, 0x261e, 0x3242, 0x020c, 0x1a54, | |
350 0x1030, 0x281e, 0x3442, 0x040c, 0x1c54, | |
351 0x1032, 0x2820, 0x3444, 0x040e, 0x1c56, | |
352 0x0e32, 0x2620, 0x3244, 0x020e, 0x1a56, | |
353 0x0c32, 0x2420, 0x3044, 0x000e, 0x1856, | |
354 0x0c34, 0x2422, 0x3046, 0x0010, 0x1858, | |
355 0x0e34, 0x2622, 0x3246, 0x0210, 0x1a58, | |
356 0x1034, 0x2822, 0x3446, 0x0410, 0x1c58, | |
357 0x1224, 0x2a12, 0x3636, 0x0600, 0x1e48, | |
358 0x1424, 0x2c12, 0x3836, 0x0800, 0x2048, | |
359 0x1624, 0x2e12, 0x3a36, 0x0a00, 0x2248, | |
360 0x1626, 0x2e14, 0x3a38, 0x0a02, 0x224a, | |
361 0x1426, 0x2c14, 0x3838, 0x0802, 0x204a, | |
362 0x1226, 0x2a14, 0x3638, 0x0602, 0x1e4a, | |
363 0x1228, 0x2a16, 0x363a, 0x0604, 0x1e4c, | |
364 0x1428, 0x2c16, 0x383a, 0x0804, 0x204c, | |
365 0x1628, 0x2e16, 0x3a3a, 0x0a04, 0x224c, | |
366 0x162a, 0x2e18, 0x3a3c, 0x0a06, 0x224e, | |
367 0x142a, 0x2c18, 0x383c, 0x0806, 0x204e, | |
368 0x122a, 0x2a18, 0x363c, 0x0606, 0x1e4e, | |
369 0x122c, 0x2a1a, 0x363e, 0x0608, 0x1e50, | |
370 0x142c, 0x2c1a, 0x383e, 0x0808, 0x2050, | |
371 0x162c, 0x2e1a, 0x3a3e, 0x0a08, 0x2250, | |
372 0x162e, 0x2e1c, 0x3a40, 0x0a0a, 0x2252, | |
373 0x142e, 0x2c1c, 0x3840, 0x080a, 0x2052, | |
374 0x122e, 0x2a1c, 0x3640, 0x060a, 0x1e52, | |
375 0x1230, 0x2a1e, 0x3642, 0x060c, 0x1e54, | |
376 0x1430, 0x2c1e, 0x3842, 0x080c, 0x2054, | |
377 0x1630, 0x2e1e, 0x3a42, 0x0a0c, 0x2254, | |
378 0x1632, 0x2e20, 0x3a44, 0x0a0e, 0x2256, | |
379 0x1432, 0x2c20, 0x3844, 0x080e, 0x2056, | |
380 0x1232, 0x2a20, 0x3644, 0x060e, 0x1e56, | |
381 0x1234, 0x2a22, 0x3646, 0x0610, 0x1e58, | |
382 0x1434, 0x2c22, 0x3846, 0x0810, 0x2058, | |
383 0x1634, 0x2e22, 0x3a46, 0x0a10, 0x2258, | |
384 0x1824, 0x3012, 0x3c36, 0x0c00, 0x2448, | |
385 0x1a24, 0x3212, 0x3e36, 0x0e00, 0x2648, | |
386 0x1c24, 0x3412, 0x4036, 0x1000, 0x2848, | |
387 0x1c26, 0x3414, 0x4038, 0x1002, 0x284a, | |
388 0x1a26, 0x3214, 0x3e38, 0x0e02, 0x264a, | |
389 0x1826, 0x3014, 0x3c38, 0x0c02, 0x244a, | |
390 0x1828, 0x3016, 0x3c3a, 0x0c04, 0x244c, | |
391 0x1a28, 0x3216, 0x3e3a, 0x0e04, 0x264c, | |
392 0x1c28, 0x3416, 0x403a, 0x1004, 0x284c, | |
393 0x1c2a, 0x3418, 0x403c, 0x1006, 0x284e, | |
394 0x1a2a, 0x3218, 0x3e3c, 0x0e06, 0x264e, | |
395 0x182a, 0x3018, 0x3c3c, 0x0c06, 0x244e, | |
396 0x182c, 0x301a, 0x3c3e, 0x0c08, 0x2450, | |
397 0x1a2c, 0x321a, 0x3e3e, 0x0e08, 0x2650, | |
398 0x1c2c, 0x341a, 0x403e, 0x1008, 0x2850, | |
399 0x1c2e, 0x341c, 0x4040, 0x100a, 0x2852, | |
400 0x1a2e, 0x321c, 0x3e40, 0x0e0a, 0x2652, | |
401 0x182e, 0x301c, 0x3c40, 0x0c0a, 0x2452, | |
402 0x1830, 0x301e, 0x3c42, 0x0c0c, 0x2454, | |
403 0x1a30, 0x321e, 0x3e42, 0x0e0c, 0x2654, | |
404 0x1c30, 0x341e, 0x4042, 0x100c, 0x2854, | |
405 0x1c32, 0x3420, 0x4044, 0x100e, 0x2856, | |
406 0x1a32, 0x3220, 0x3e44, 0x0e0e, 0x2656, | |
407 0x1832, 0x3020, 0x3c44, 0x0c0e, 0x2456, | |
408 0x1834, 0x3022, 0x3c46, 0x0c10, 0x2458, | |
409 0x1a34, 0x3222, 0x3e46, 0x0e10, 0x2658, | |
410 0x1c34, 0x3422, 0x4046, 0x1010, 0x2858, | |
411 0x1e24, 0x3612, 0x4236, 0x1200, 0x2a48, | |
412 0x2024, 0x3812, 0x4436, 0x1400, 0x2c48, | |
413 0x2224, 0x3a12, 0x4636, 0x1600, 0x2e48, | |
414 0x2226, 0x3a14, 0x4638, 0x1602, 0x2e4a, | |
415 0x2026, 0x3814, 0x4438, 0x1402, 0x2c4a, | |
416 0x1e26, 0x3614, 0x4238, 0x1202, 0x2a4a, | |
417 0x1e28, 0x3616, 0x423a, 0x1204, 0x2a4c, | |
418 0x2028, 0x3816, 0x443a, 0x1404, 0x2c4c, | |
419 0x2228, 0x3a16, 0x463a, 0x1604, 0x2e4c, | |
420 0x222a, 0x3a18, 0x463c, 0x1606, 0x2e4e, | |
421 0x202a, 0x3818, 0x443c, 0x1406, 0x2c4e, | |
422 0x1e2a, 0x3618, 0x423c, 0x1206, 0x2a4e, | |
423 0x1e2c, 0x361a, 0x423e, 0x1208, 0x2a50, | |
424 0x202c, 0x381a, 0x443e, 0x1408, 0x2c50, | |
425 0x222c, 0x3a1a, 0x463e, 0x1608, 0x2e50, | |
426 0x222e, 0x3a1c, 0x4640, 0x160a, 0x2e52, | |
427 0x202e, 0x381c, 0x4440, 0x140a, 0x2c52, | |
428 0x1e2e, 0x361c, 0x4240, 0x120a, 0x2a52, | |
429 0x1e30, 0x361e, 0x4242, 0x120c, 0x2a54, | |
430 0x2030, 0x381e, 0x4442, 0x140c, 0x2c54, | |
431 0x2230, 0x3a1e, 0x4642, 0x160c, 0x2e54, | |
432 0x2232, 0x3a20, 0x4644, 0x160e, 0x2e56, | |
433 0x2032, 0x3820, 0x4444, 0x140e, 0x2c56, | |
434 0x1e32, 0x3620, 0x4244, 0x120e, 0x2a56, | |
435 0x1e34, 0x3622, 0x4246, 0x1210, 0x2a58, | |
436 0x2034, 0x3822, 0x4446, 0x1410, 0x2c58, | |
437 0x2234, 0x3a22, 0x4646, 0x1610, 0x2e58, | |
438 0x2424, 0x3c12, 0x0036, 0x1800, 0x3048, | |
439 0x2624, 0x3e12, 0x0236, 0x1a00, 0x3248, | |
440 0x2824, 0x4012, 0x0436, 0x1c00, 0x3448, | |
441 0x2826, 0x4014, 0x0438, 0x1c02, 0x344a, | |
442 0x2626, 0x3e14, 0x0238, 0x1a02, 0x324a, | |
443 0x2426, 0x3c14, 0x0038, 0x1802, 0x304a, | |
444 0x2428, 0x3c16, 0x003a, 0x1804, 0x304c, | |
445 0x2628, 0x3e16, 0x023a, 0x1a04, 0x324c, | |
446 0x2828, 0x4016, 0x043a, 0x1c04, 0x344c, | |
447 0x282a, 0x4018, 0x043c, 0x1c06, 0x344e, | |
448 0x262a, 0x3e18, 0x023c, 0x1a06, 0x324e, | |
449 0x242a, 0x3c18, 0x003c, 0x1806, 0x304e, | |
450 0x242c, 0x3c1a, 0x003e, 0x1808, 0x3050, | |
451 0x262c, 0x3e1a, 0x023e, 0x1a08, 0x3250, | |
452 0x282c, 0x401a, 0x043e, 0x1c08, 0x3450, | |
453 0x282e, 0x401c, 0x0440, 0x1c0a, 0x3452, | |
454 0x262e, 0x3e1c, 0x0240, 0x1a0a, 0x3252, | |
455 0x242e, 0x3c1c, 0x0040, 0x180a, 0x3052, | |
456 0x2430, 0x3c1e, 0x0042, 0x180c, 0x3054, | |
457 0x2630, 0x3e1e, 0x0242, 0x1a0c, 0x3254, | |
458 0x2830, 0x401e, 0x0442, 0x1c0c, 0x3454, | |
459 0x2832, 0x4020, 0x0444, 0x1c0e, 0x3456, | |
460 0x2632, 0x3e20, 0x0244, 0x1a0e, 0x3256, | |
461 0x2432, 0x3c20, 0x0044, 0x180e, 0x3056, | |
462 0x2434, 0x3c22, 0x0046, 0x1810, 0x3058, | |
463 0x2634, 0x3e22, 0x0246, 0x1a10, 0x3258, | |
464 0x2834, 0x4022, 0x0446, 0x1c10, 0x3458, | |
465 0x2a24, 0x4212, 0x0636, 0x1e00, 0x3648, | |
466 0x2c24, 0x4412, 0x0836, 0x2000, 0x3848, | |
467 0x2e24, 0x4612, 0x0a36, 0x2200, 0x3a48, | |
468 0x2e26, 0x4614, 0x0a38, 0x2202, 0x3a4a, | |
469 0x2c26, 0x4414, 0x0838, 0x2002, 0x384a, | |
470 0x2a26, 0x4214, 0x0638, 0x1e02, 0x364a, | |
471 0x2a28, 0x4216, 0x063a, 0x1e04, 0x364c, | |
472 0x2c28, 0x4416, 0x083a, 0x2004, 0x384c, | |
473 0x2e28, 0x4616, 0x0a3a, 0x2204, 0x3a4c, | |
474 0x2e2a, 0x4618, 0x0a3c, 0x2206, 0x3a4e, | |
475 0x2c2a, 0x4418, 0x083c, 0x2006, 0x384e, | |
476 0x2a2a, 0x4218, 0x063c, 0x1e06, 0x364e, | |
477 0x2a2c, 0x421a, 0x063e, 0x1e08, 0x3650, | |
478 0x2c2c, 0x441a, 0x083e, 0x2008, 0x3850, | |
479 0x2e2c, 0x461a, 0x0a3e, 0x2208, 0x3a50, | |
480 0x2e2e, 0x461c, 0x0a40, 0x220a, 0x3a52, | |
481 0x2c2e, 0x441c, 0x0840, 0x200a, 0x3852, | |
482 0x2a2e, 0x421c, 0x0640, 0x1e0a, 0x3652, | |
483 0x2a30, 0x421e, 0x0642, 0x1e0c, 0x3654, | |
484 0x2c30, 0x441e, 0x0842, 0x200c, 0x3854, | |
485 0x2e30, 0x461e, 0x0a42, 0x220c, 0x3a54, | |
486 0x2e32, 0x4620, 0x0a44, 0x220e, 0x3a56, | |
487 0x2c32, 0x4420, 0x0844, 0x200e, 0x3856, | |
488 0x2a32, 0x4220, 0x0644, 0x1e0e, 0x3656, | |
489 0x2a34, 0x4222, 0x0646, 0x1e10, 0x3658, | |
490 0x2c34, 0x4422, 0x0846, 0x2010, 0x3858, | |
491 0x2e34, 0x4622, 0x0a46, 0x2210, 0x3a58, | |
492 0x3024, 0x0012, 0x0c36, 0x2400, 0x3c48, | |
493 0x3224, 0x0212, 0x0e36, 0x2600, 0x3e48, | |
494 0x3424, 0x0412, 0x1036, 0x2800, 0x4048, | |
495 0x3426, 0x0414, 0x1038, 0x2802, 0x404a, | |
496 0x3226, 0x0214, 0x0e38, 0x2602, 0x3e4a, | |
497 0x3026, 0x0014, 0x0c38, 0x2402, 0x3c4a, | |
498 0x3028, 0x0016, 0x0c3a, 0x2404, 0x3c4c, | |
499 0x3228, 0x0216, 0x0e3a, 0x2604, 0x3e4c, | |
500 0x3428, 0x0416, 0x103a, 0x2804, 0x404c, | |
501 0x342a, 0x0418, 0x103c, 0x2806, 0x404e, | |
502 0x322a, 0x0218, 0x0e3c, 0x2606, 0x3e4e, | |
503 0x302a, 0x0018, 0x0c3c, 0x2406, 0x3c4e, | |
504 0x302c, 0x001a, 0x0c3e, 0x2408, 0x3c50, | |
505 0x322c, 0x021a, 0x0e3e, 0x2608, 0x3e50, | |
506 0x342c, 0x041a, 0x103e, 0x2808, 0x4050, | |
507 0x342e, 0x041c, 0x1040, 0x280a, 0x4052, | |
508 0x322e, 0x021c, 0x0e40, 0x260a, 0x3e52, | |
509 0x302e, 0x001c, 0x0c40, 0x240a, 0x3c52, | |
510 0x3030, 0x001e, 0x0c42, 0x240c, 0x3c54, | |
511 0x3230, 0x021e, 0x0e42, 0x260c, 0x3e54, | |
512 0x3430, 0x041e, 0x1042, 0x280c, 0x4054, | |
513 0x3432, 0x0420, 0x1044, 0x280e, 0x4056, | |
514 0x3232, 0x0220, 0x0e44, 0x260e, 0x3e56, | |
515 0x3032, 0x0020, 0x0c44, 0x240e, 0x3c56, | |
516 0x3034, 0x0022, 0x0c46, 0x2410, 0x3c58, | |
517 0x3234, 0x0222, 0x0e46, 0x2610, 0x3e58, | |
518 0x3434, 0x0422, 0x1046, 0x2810, 0x4058, | |
519 0x3624, 0x0612, 0x1236, 0x2a00, 0x4248, | |
520 0x3824, 0x0812, 0x1436, 0x2c00, 0x4448, | |
521 0x3a24, 0x0a12, 0x1636, 0x2e00, 0x4648, | |
522 0x3a26, 0x0a14, 0x1638, 0x2e02, 0x464a, | |
523 0x3826, 0x0814, 0x1438, 0x2c02, 0x444a, | |
524 0x3626, 0x0614, 0x1238, 0x2a02, 0x424a, | |
525 0x3628, 0x0616, 0x123a, 0x2a04, 0x424c, | |
526 0x3828, 0x0816, 0x143a, 0x2c04, 0x444c, | |
527 0x3a28, 0x0a16, 0x163a, 0x2e04, 0x464c, | |
528 0x3a2a, 0x0a18, 0x163c, 0x2e06, 0x464e, | |
529 0x382a, 0x0818, 0x143c, 0x2c06, 0x444e, | |
530 0x362a, 0x0618, 0x123c, 0x2a06, 0x424e, | |
531 0x362c, 0x061a, 0x123e, 0x2a08, 0x4250, | |
532 0x382c, 0x081a, 0x143e, 0x2c08, 0x4450, | |
533 0x3a2c, 0x0a1a, 0x163e, 0x2e08, 0x4650, | |
534 0x3a2e, 0x0a1c, 0x1640, 0x2e0a, 0x4652, | |
535 0x382e, 0x081c, 0x1440, 0x2c0a, 0x4452, | |
536 0x362e, 0x061c, 0x1240, 0x2a0a, 0x4252, | |
537 0x3630, 0x061e, 0x1242, 0x2a0c, 0x4254, | |
538 0x3830, 0x081e, 0x1442, 0x2c0c, 0x4454, | |
539 0x3a30, 0x0a1e, 0x1642, 0x2e0c, 0x4654, | |
540 0x3a32, 0x0a20, 0x1644, 0x2e0e, 0x4656, | |
541 0x3832, 0x0820, 0x1444, 0x2c0e, 0x4456, | |
542 0x3632, 0x0620, 0x1244, 0x2a0e, 0x4256, | |
543 0x3634, 0x0622, 0x1246, 0x2a10, 0x4258, | |
544 0x3834, 0x0822, 0x1446, 0x2c10, 0x4458, | |
545 0x3a34, 0x0a22, 0x1646, 0x2e10, 0x4658, | |
546 0x3c24, 0x0c12, 0x1836, 0x3000, 0x0048, | |
547 0x3e24, 0x0e12, 0x1a36, 0x3200, 0x0248, | |
548 0x4024, 0x1012, 0x1c36, 0x3400, 0x0448, | |
549 0x4026, 0x1014, 0x1c38, 0x3402, 0x044a, | |
550 0x3e26, 0x0e14, 0x1a38, 0x3202, 0x024a, | |
551 0x3c26, 0x0c14, 0x1838, 0x3002, 0x004a, | |
552 0x3c28, 0x0c16, 0x183a, 0x3004, 0x004c, | |
553 0x3e28, 0x0e16, 0x1a3a, 0x3204, 0x024c, | |
554 0x4028, 0x1016, 0x1c3a, 0x3404, 0x044c, | |
555 0x402a, 0x1018, 0x1c3c, 0x3406, 0x044e, | |
556 0x3e2a, 0x0e18, 0x1a3c, 0x3206, 0x024e, | |
557 0x3c2a, 0x0c18, 0x183c, 0x3006, 0x004e, | |
558 0x3c2c, 0x0c1a, 0x183e, 0x3008, 0x0050, | |
559 0x3e2c, 0x0e1a, 0x1a3e, 0x3208, 0x0250, | |
560 0x402c, 0x101a, 0x1c3e, 0x3408, 0x0450, | |
561 0x402e, 0x101c, 0x1c40, 0x340a, 0x0452, | |
562 0x3e2e, 0x0e1c, 0x1a40, 0x320a, 0x0252, | |
563 0x3c2e, 0x0c1c, 0x1840, 0x300a, 0x0052, | |
564 0x3c30, 0x0c1e, 0x1842, 0x300c, 0x0054, | |
565 0x3e30, 0x0e1e, 0x1a42, 0x320c, 0x0254, | |
566 0x4030, 0x101e, 0x1c42, 0x340c, 0x0454, | |
567 0x4032, 0x1020, 0x1c44, 0x340e, 0x0456, | |
568 0x3e32, 0x0e20, 0x1a44, 0x320e, 0x0256, | |
569 0x3c32, 0x0c20, 0x1844, 0x300e, 0x0056, | |
570 0x3c34, 0x0c22, 0x1846, 0x3010, 0x0058, | |
571 0x3e34, 0x0e22, 0x1a46, 0x3210, 0x0258, | |
572 0x4034, 0x1022, 0x1c46, 0x3410, 0x0458, | |
573 0x4224, 0x1212, 0x1e36, 0x3600, 0x0648, | |
574 0x4424, 0x1412, 0x2036, 0x3800, 0x0848, | |
575 0x4624, 0x1612, 0x2236, 0x3a00, 0x0a48, | |
576 0x4626, 0x1614, 0x2238, 0x3a02, 0x0a4a, | |
577 0x4426, 0x1414, 0x2038, 0x3802, 0x084a, | |
578 0x4226, 0x1214, 0x1e38, 0x3602, 0x064a, | |
579 0x4228, 0x1216, 0x1e3a, 0x3604, 0x064c, | |
580 0x4428, 0x1416, 0x203a, 0x3804, 0x084c, | |
581 0x4628, 0x1616, 0x223a, 0x3a04, 0x0a4c, | |
582 0x462a, 0x1618, 0x223c, 0x3a06, 0x0a4e, | |
583 0x442a, 0x1418, 0x203c, 0x3806, 0x084e, | |
584 0x422a, 0x1218, 0x1e3c, 0x3606, 0x064e, | |
585 0x422c, 0x121a, 0x1e3e, 0x3608, 0x0650, | |
586 0x442c, 0x141a, 0x203e, 0x3808, 0x0850, | |
587 0x462c, 0x161a, 0x223e, 0x3a08, 0x0a50, | |
588 0x462e, 0x161c, 0x2240, 0x3a0a, 0x0a52, | |
589 0x442e, 0x141c, 0x2040, 0x380a, 0x0852, | |
590 0x422e, 0x121c, 0x1e40, 0x360a, 0x0652, | |
591 0x4230, 0x121e, 0x1e42, 0x360c, 0x0654, | |
592 0x4430, 0x141e, 0x2042, 0x380c, 0x0854, | |
593 0x4630, 0x161e, 0x2242, 0x3a0c, 0x0a54, | |
594 0x4632, 0x1620, 0x2244, 0x3a0e, 0x0a56, | |
595 0x4432, 0x1420, 0x2044, 0x380e, 0x0856, | |
596 0x4232, 0x1220, 0x1e44, 0x360e, 0x0656, | |
597 0x4234, 0x1222, 0x1e46, 0x3610, 0x0658, | |
598 0x4434, 0x1422, 0x2046, 0x3810, 0x0858, | |
599 0x4634, 0x1622, 0x2246, 0x3a10, 0x0a58, | |
600 0x0024, 0x1812, 0x2436, 0x3c00, 0x0c48, | |
601 0x0224, 0x1a12, 0x2636, 0x3e00, 0x0e48, | |
602 0x0424, 0x1c12, 0x2836, 0x4000, 0x1048, | |
603 0x0426, 0x1c14, 0x2838, 0x4002, 0x104a, | |
604 0x0226, 0x1a14, 0x2638, 0x3e02, 0x0e4a, | |
605 0x0026, 0x1814, 0x2438, 0x3c02, 0x0c4a, | |
606 0x0028, 0x1816, 0x243a, 0x3c04, 0x0c4c, | |
607 0x0228, 0x1a16, 0x263a, 0x3e04, 0x0e4c, | |
608 0x0428, 0x1c16, 0x283a, 0x4004, 0x104c, | |
609 0x042a, 0x1c18, 0x283c, 0x4006, 0x104e, | |
610 0x022a, 0x1a18, 0x263c, 0x3e06, 0x0e4e, | |
611 0x002a, 0x1818, 0x243c, 0x3c06, 0x0c4e, | |
612 0x002c, 0x181a, 0x243e, 0x3c08, 0x0c50, | |
613 0x022c, 0x1a1a, 0x263e, 0x3e08, 0x0e50, | |
614 0x042c, 0x1c1a, 0x283e, 0x4008, 0x1050, | |
615 0x042e, 0x1c1c, 0x2840, 0x400a, 0x1052, | |
616 0x022e, 0x1a1c, 0x2640, 0x3e0a, 0x0e52, | |
617 0x002e, 0x181c, 0x2440, 0x3c0a, 0x0c52, | |
618 0x0030, 0x181e, 0x2442, 0x3c0c, 0x0c54, | |
619 0x0230, 0x1a1e, 0x2642, 0x3e0c, 0x0e54, | |
620 0x0430, 0x1c1e, 0x2842, 0x400c, 0x1054, | |
621 0x0432, 0x1c20, 0x2844, 0x400e, 0x1056, | |
622 0x0232, 0x1a20, 0x2644, 0x3e0e, 0x0e56, | |
623 0x0032, 0x1820, 0x2444, 0x3c0e, 0x0c56, | |
624 0x0034, 0x1822, 0x2446, 0x3c10, 0x0c58, | |
625 0x0234, 0x1a22, 0x2646, 0x3e10, 0x0e58, | |
626 0x0434, 0x1c22, 0x2846, 0x4010, 0x1058, | |
627 0x0624, 0x1e12, 0x2a36, 0x4200, 0x1248, | |
628 0x0824, 0x2012, 0x2c36, 0x4400, 0x1448, | |
629 0x0a24, 0x2212, 0x2e36, 0x4600, 0x1648, | |
630 0x0a26, 0x2214, 0x2e38, 0x4602, 0x164a, | |
631 0x0826, 0x2014, 0x2c38, 0x4402, 0x144a, | |
632 0x0626, 0x1e14, 0x2a38, 0x4202, 0x124a, | |
633 0x0628, 0x1e16, 0x2a3a, 0x4204, 0x124c, | |
634 0x0828, 0x2016, 0x2c3a, 0x4404, 0x144c, | |
635 0x0a28, 0x2216, 0x2e3a, 0x4604, 0x164c, | |
636 0x0a2a, 0x2218, 0x2e3c, 0x4606, 0x164e, | |
637 0x082a, 0x2018, 0x2c3c, 0x4406, 0x144e, | |
638 0x062a, 0x1e18, 0x2a3c, 0x4206, 0x124e, | |
639 0x062c, 0x1e1a, 0x2a3e, 0x4208, 0x1250, | |
640 0x082c, 0x201a, 0x2c3e, 0x4408, 0x1450, | |
641 0x0a2c, 0x221a, 0x2e3e, 0x4608, 0x1650, | |
642 0x0a2e, 0x221c, 0x2e40, 0x460a, 0x1652, | |
643 0x082e, 0x201c, 0x2c40, 0x440a, 0x1452, | |
644 0x062e, 0x1e1c, 0x2a40, 0x420a, 0x1252, | |
645 0x0630, 0x1e1e, 0x2a42, 0x420c, 0x1254, | |
646 0x0830, 0x201e, 0x2c42, 0x440c, 0x1454, | |
647 0x0a30, 0x221e, 0x2e42, 0x460c, 0x1654, | |
648 0x0a32, 0x2220, 0x2e44, 0x460e, 0x1656, | |
649 0x0832, 0x2020, 0x2c44, 0x440e, 0x1456, | |
650 0x0632, 0x1e20, 0x2a44, 0x420e, 0x1256, | |
651 0x0634, 0x1e22, 0x2a46, 0x4210, 0x1258, | |
652 0x0834, 0x2022, 0x2c46, 0x4410, 0x1458, | |
653 0x0a34, 0x2222, 0x2e46, 0x4610, 0x1658, | |
654 }; | |
655 | |
1087
7f10d38721ed
support for PAL 4:1:1 SMPTE 314M DV streams patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
1064
diff
changeset
|
656 static const uint16_t dv_place_411P[1620] = { |
2967 | 657 0x0c24, 0x2710, 0x3334, 0x0000, 0x1848, |
658 0x0d24, 0x2810, 0x3434, 0x0100, 0x1948, | |
659 0x0e24, 0x2910, 0x3534, 0x0200, 0x1a48, | |
660 0x0f24, 0x2914, 0x3538, 0x0300, 0x1b48, | |
661 0x1024, 0x2814, 0x3438, 0x0400, 0x1c48, | |
662 0x1124, 0x2714, 0x3338, 0x0500, 0x1d48, | |
663 0x1128, 0x2614, 0x3238, 0x0504, 0x1d4c, | |
664 0x1028, 0x2514, 0x3138, 0x0404, 0x1c4c, | |
665 0x0f28, 0x2414, 0x3038, 0x0304, 0x1b4c, | |
666 0x0e28, 0x2418, 0x303c, 0x0204, 0x1a4c, | |
667 0x0d28, 0x2518, 0x313c, 0x0104, 0x194c, | |
668 0x0c28, 0x2618, 0x323c, 0x0004, 0x184c, | |
669 0x0c2c, 0x2718, 0x333c, 0x0008, 0x1850, | |
670 0x0d2c, 0x2818, 0x343c, 0x0108, 0x1950, | |
671 0x0e2c, 0x2918, 0x353c, 0x0208, 0x1a50, | |
672 0x0f2c, 0x291c, 0x3540, 0x0308, 0x1b50, | |
673 0x102c, 0x281c, 0x3440, 0x0408, 0x1c50, | |
674 0x112c, 0x271c, 0x3340, 0x0508, 0x1d50, | |
675 0x1130, 0x261c, 0x3240, 0x050c, 0x1d54, | |
676 0x1030, 0x251c, 0x3140, 0x040c, 0x1c54, | |
677 0x0f30, 0x241c, 0x3040, 0x030c, 0x1b54, | |
678 0x0e30, 0x2420, 0x3044, 0x020c, 0x1a54, | |
679 0x0d30, 0x2520, 0x3144, 0x010c, 0x1954, | |
680 0x0c30, 0x2620, 0x3244, 0x000c, 0x1854, | |
681 0x0c34, 0x2720, 0x3344, 0x0010, 0x1858, | |
682 0x0d34, 0x2820, 0x3444, 0x0110, 0x1a58, | |
683 0x0e34, 0x2920, 0x3544, 0x0210, 0x1c58, | |
684 0x1224, 0x2d10, 0x3934, 0x0600, 0x1e48, | |
685 0x1324, 0x2e10, 0x3a34, 0x0700, 0x1f48, | |
686 0x1424, 0x2f10, 0x3b34, 0x0800, 0x2048, | |
687 0x1524, 0x2f14, 0x3b38, 0x0900, 0x2148, | |
688 0x1624, 0x2e14, 0x3a38, 0x0a00, 0x2248, | |
689 0x1724, 0x2d14, 0x3938, 0x0b00, 0x2348, | |
690 0x1728, 0x2c14, 0x3838, 0x0b04, 0x234c, | |
691 0x1628, 0x2b14, 0x3738, 0x0a04, 0x224c, | |
692 0x1528, 0x2a14, 0x3638, 0x0904, 0x214c, | |
693 0x1428, 0x2a18, 0x363c, 0x0804, 0x204c, | |
694 0x1328, 0x2b18, 0x373c, 0x0704, 0x1f4c, | |
695 0x1228, 0x2c18, 0x383c, 0x0604, 0x1e4c, | |
696 0x122c, 0x2d18, 0x393c, 0x0608, 0x1e50, | |
697 0x132c, 0x2e18, 0x3a3c, 0x0708, 0x1f50, | |
698 0x142c, 0x2f18, 0x3b3c, 0x0808, 0x2050, | |
699 0x152c, 0x2f1c, 0x3b40, 0x0908, 0x2150, | |
700 0x162c, 0x2e1c, 0x3a40, 0x0a08, 0x2250, | |
701 0x172c, 0x2d1c, 0x3940, 0x0b08, 0x2350, | |
702 0x1730, 0x2c1c, 0x3840, 0x0b0c, 0x2354, | |
703 0x1630, 0x2b1c, 0x3740, 0x0a0c, 0x2254, | |
704 0x1530, 0x2a1c, 0x3640, 0x090c, 0x2154, | |
705 0x1430, 0x2a20, 0x3644, 0x080c, 0x2054, | |
706 0x1330, 0x2b20, 0x3744, 0x070c, 0x1f54, | |
707 0x1230, 0x2c20, 0x3844, 0x060c, 0x1e54, | |
708 0x1234, 0x2d20, 0x3944, 0x0610, 0x1e58, | |
709 0x1334, 0x2e20, 0x3a44, 0x0710, 0x2058, | |
710 0x1434, 0x2f20, 0x3b44, 0x0810, 0x2258, | |
711 0x1824, 0x3310, 0x3f34, 0x0c00, 0x2448, | |
712 0x1924, 0x3410, 0x4034, 0x0d00, 0x2548, | |
713 0x1a24, 0x3510, 0x4134, 0x0e00, 0x2648, | |
714 0x1b24, 0x3514, 0x4138, 0x0f00, 0x2748, | |
715 0x1c24, 0x3414, 0x4038, 0x1000, 0x2848, | |
716 0x1d24, 0x3314, 0x3f38, 0x1100, 0x2948, | |
717 0x1d28, 0x3214, 0x3e38, 0x1104, 0x294c, | |
718 0x1c28, 0x3114, 0x3d38, 0x1004, 0x284c, | |
719 0x1b28, 0x3014, 0x3c38, 0x0f04, 0x274c, | |
720 0x1a28, 0x3018, 0x3c3c, 0x0e04, 0x264c, | |
721 0x1928, 0x3118, 0x3d3c, 0x0d04, 0x254c, | |
722 0x1828, 0x3218, 0x3e3c, 0x0c04, 0x244c, | |
723 0x182c, 0x3318, 0x3f3c, 0x0c08, 0x2450, | |
724 0x192c, 0x3418, 0x403c, 0x0d08, 0x2550, | |
725 0x1a2c, 0x3518, 0x413c, 0x0e08, 0x2650, | |
726 0x1b2c, 0x351c, 0x4140, 0x0f08, 0x2750, | |
727 0x1c2c, 0x341c, 0x4040, 0x1008, 0x2850, | |
728 0x1d2c, 0x331c, 0x3f40, 0x1108, 0x2950, | |
729 0x1d30, 0x321c, 0x3e40, 0x110c, 0x2954, | |
730 0x1c30, 0x311c, 0x3d40, 0x100c, 0x2854, | |
731 0x1b30, 0x301c, 0x3c40, 0x0f0c, 0x2754, | |
732 0x1a30, 0x3020, 0x3c44, 0x0e0c, 0x2654, | |
733 0x1930, 0x3120, 0x3d44, 0x0d0c, 0x2554, | |
734 0x1830, 0x3220, 0x3e44, 0x0c0c, 0x2454, | |
735 0x1834, 0x3320, 0x3f44, 0x0c10, 0x2458, | |
736 0x1934, 0x3420, 0x4044, 0x0d10, 0x2658, | |
737 0x1a34, 0x3520, 0x4144, 0x0e10, 0x2858, | |
738 0x1e24, 0x3910, 0x4534, 0x1200, 0x2a48, | |
739 0x1f24, 0x3a10, 0x4634, 0x1300, 0x2b48, | |
740 0x2024, 0x3b10, 0x4734, 0x1400, 0x2c48, | |
741 0x2124, 0x3b14, 0x4738, 0x1500, 0x2d48, | |
742 0x2224, 0x3a14, 0x4638, 0x1600, 0x2e48, | |
743 0x2324, 0x3914, 0x4538, 0x1700, 0x2f48, | |
744 0x2328, 0x3814, 0x4438, 0x1704, 0x2f4c, | |
745 0x2228, 0x3714, 0x4338, 0x1604, 0x2e4c, | |
746 0x2128, 0x3614, 0x4238, 0x1504, 0x2d4c, | |
747 0x2028, 0x3618, 0x423c, 0x1404, 0x2c4c, | |
748 0x1f28, 0x3718, 0x433c, 0x1304, 0x2b4c, | |
749 0x1e28, 0x3818, 0x443c, 0x1204, 0x2a4c, | |
750 0x1e2c, 0x3918, 0x453c, 0x1208, 0x2a50, | |
751 0x1f2c, 0x3a18, 0x463c, 0x1308, 0x2b50, | |
752 0x202c, 0x3b18, 0x473c, 0x1408, 0x2c50, | |
753 0x212c, 0x3b1c, 0x4740, 0x1508, 0x2d50, | |
754 0x222c, 0x3a1c, 0x4640, 0x1608, 0x2e50, | |
755 0x232c, 0x391c, 0x4540, 0x1708, 0x2f50, | |
756 0x2330, 0x381c, 0x4440, 0x170c, 0x2f54, | |
757 0x2230, 0x371c, 0x4340, 0x160c, 0x2e54, | |
758 0x2130, 0x361c, 0x4240, 0x150c, 0x2d54, | |
759 0x2030, 0x3620, 0x4244, 0x140c, 0x2c54, | |
760 0x1f30, 0x3720, 0x4344, 0x130c, 0x2b54, | |
761 0x1e30, 0x3820, 0x4444, 0x120c, 0x2a54, | |
762 0x1e34, 0x3920, 0x4544, 0x1210, 0x2a58, | |
763 0x1f34, 0x3a20, 0x4644, 0x1310, 0x2c58, | |
764 0x2034, 0x3b20, 0x4744, 0x1410, 0x2e58, | |
765 0x2424, 0x3f10, 0x0334, 0x1800, 0x3048, | |
766 0x2524, 0x4010, 0x0434, 0x1900, 0x3148, | |
767 0x2624, 0x4110, 0x0534, 0x1a00, 0x3248, | |
768 0x2724, 0x4114, 0x0538, 0x1b00, 0x3348, | |
769 0x2824, 0x4014, 0x0438, 0x1c00, 0x3448, | |
770 0x2924, 0x3f14, 0x0338, 0x1d00, 0x3548, | |
771 0x2928, 0x3e14, 0x0238, 0x1d04, 0x354c, | |
772 0x2828, 0x3d14, 0x0138, 0x1c04, 0x344c, | |
773 0x2728, 0x3c14, 0x0038, 0x1b04, 0x334c, | |
774 0x2628, 0x3c18, 0x003c, 0x1a04, 0x324c, | |
775 0x2528, 0x3d18, 0x013c, 0x1904, 0x314c, | |
776 0x2428, 0x3e18, 0x023c, 0x1804, 0x304c, | |
777 0x242c, 0x3f18, 0x033c, 0x1808, 0x3050, | |
778 0x252c, 0x4018, 0x043c, 0x1908, 0x3150, | |
779 0x262c, 0x4118, 0x053c, 0x1a08, 0x3250, | |
780 0x272c, 0x411c, 0x0540, 0x1b08, 0x3350, | |
781 0x282c, 0x401c, 0x0440, 0x1c08, 0x3450, | |
782 0x292c, 0x3f1c, 0x0340, 0x1d08, 0x3550, | |
783 0x2930, 0x3e1c, 0x0240, 0x1d0c, 0x3554, | |
784 0x2830, 0x3d1c, 0x0140, 0x1c0c, 0x3454, | |
785 0x2730, 0x3c1c, 0x0040, 0x1b0c, 0x3354, | |
786 0x2630, 0x3c20, 0x0044, 0x1a0c, 0x3254, | |
787 0x2530, 0x3d20, 0x0144, 0x190c, 0x3154, | |
788 0x2430, 0x3e20, 0x0244, 0x180c, 0x3054, | |
789 0x2434, 0x3f20, 0x0344, 0x1810, 0x3058, | |
790 0x2534, 0x4020, 0x0444, 0x1910, 0x3258, | |
791 0x2634, 0x4120, 0x0544, 0x1a10, 0x3458, | |
792 0x2a24, 0x4510, 0x0934, 0x1e00, 0x3648, | |
793 0x2b24, 0x4610, 0x0a34, 0x1f00, 0x3748, | |
794 0x2c24, 0x4710, 0x0b34, 0x2000, 0x3848, | |
795 0x2d24, 0x4714, 0x0b38, 0x2100, 0x3948, | |
796 0x2e24, 0x4614, 0x0a38, 0x2200, 0x3a48, | |
797 0x2f24, 0x4514, 0x0938, 0x2300, 0x3b48, | |
798 0x2f28, 0x4414, 0x0838, 0x2304, 0x3b4c, | |
799 0x2e28, 0x4314, 0x0738, 0x2204, 0x3a4c, | |
800 0x2d28, 0x4214, 0x0638, 0x2104, 0x394c, | |
801 0x2c28, 0x4218, 0x063c, 0x2004, 0x384c, | |
802 0x2b28, 0x4318, 0x073c, 0x1f04, 0x374c, | |
803 0x2a28, 0x4418, 0x083c, 0x1e04, 0x364c, | |
804 0x2a2c, 0x4518, 0x093c, 0x1e08, 0x3650, | |
805 0x2b2c, 0x4618, 0x0a3c, 0x1f08, 0x3750, | |
806 0x2c2c, 0x4718, 0x0b3c, 0x2008, 0x3850, | |
807 0x2d2c, 0x471c, 0x0b40, 0x2108, 0x3950, | |
808 0x2e2c, 0x461c, 0x0a40, 0x2208, 0x3a50, | |
809 0x2f2c, 0x451c, 0x0940, 0x2308, 0x3b50, | |
810 0x2f30, 0x441c, 0x0840, 0x230c, 0x3b54, | |
811 0x2e30, 0x431c, 0x0740, 0x220c, 0x3a54, | |
812 0x2d30, 0x421c, 0x0640, 0x210c, 0x3954, | |
813 0x2c30, 0x4220, 0x0644, 0x200c, 0x3854, | |
814 0x2b30, 0x4320, 0x0744, 0x1f0c, 0x3754, | |
815 0x2a30, 0x4420, 0x0844, 0x1e0c, 0x3654, | |
816 0x2a34, 0x4520, 0x0944, 0x1e10, 0x3658, | |
817 0x2b34, 0x4620, 0x0a44, 0x1f10, 0x3858, | |
818 0x2c34, 0x4720, 0x0b44, 0x2010, 0x3a58, | |
819 0x3024, 0x0310, 0x0f34, 0x2400, 0x3c48, | |
820 0x3124, 0x0410, 0x1034, 0x2500, 0x3d48, | |
821 0x3224, 0x0510, 0x1134, 0x2600, 0x3e48, | |
822 0x3324, 0x0514, 0x1138, 0x2700, 0x3f48, | |
823 0x3424, 0x0414, 0x1038, 0x2800, 0x4048, | |
824 0x3524, 0x0314, 0x0f38, 0x2900, 0x4148, | |
825 0x3528, 0x0214, 0x0e38, 0x2904, 0x414c, | |
826 0x3428, 0x0114, 0x0d38, 0x2804, 0x404c, | |
827 0x3328, 0x0014, 0x0c38, 0x2704, 0x3f4c, | |
828 0x3228, 0x0018, 0x0c3c, 0x2604, 0x3e4c, | |
829 0x3128, 0x0118, 0x0d3c, 0x2504, 0x3d4c, | |
830 0x3028, 0x0218, 0x0e3c, 0x2404, 0x3c4c, | |
831 0x302c, 0x0318, 0x0f3c, 0x2408, 0x3c50, | |
832 0x312c, 0x0418, 0x103c, 0x2508, 0x3d50, | |
833 0x322c, 0x0518, 0x113c, 0x2608, 0x3e50, | |
834 0x332c, 0x051c, 0x1140, 0x2708, 0x3f50, | |
835 0x342c, 0x041c, 0x1040, 0x2808, 0x4050, | |
836 0x352c, 0x031c, 0x0f40, 0x2908, 0x4150, | |
837 0x3530, 0x021c, 0x0e40, 0x290c, 0x4154, | |
838 0x3430, 0x011c, 0x0d40, 0x280c, 0x4054, | |
839 0x3330, 0x001c, 0x0c40, 0x270c, 0x3f54, | |
840 0x3230, 0x0020, 0x0c44, 0x260c, 0x3e54, | |
841 0x3130, 0x0120, 0x0d44, 0x250c, 0x3d54, | |
842 0x3030, 0x0220, 0x0e44, 0x240c, 0x3c54, | |
843 0x3034, 0x0320, 0x0f44, 0x2410, 0x3c58, | |
844 0x3134, 0x0420, 0x1044, 0x2510, 0x3e58, | |
845 0x3234, 0x0520, 0x1144, 0x2610, 0x4058, | |
846 0x3624, 0x0910, 0x1534, 0x2a00, 0x4248, | |
847 0x3724, 0x0a10, 0x1634, 0x2b00, 0x4348, | |
848 0x3824, 0x0b10, 0x1734, 0x2c00, 0x4448, | |
849 0x3924, 0x0b14, 0x1738, 0x2d00, 0x4548, | |
850 0x3a24, 0x0a14, 0x1638, 0x2e00, 0x4648, | |
851 0x3b24, 0x0914, 0x1538, 0x2f00, 0x4748, | |
852 0x3b28, 0x0814, 0x1438, 0x2f04, 0x474c, | |
853 0x3a28, 0x0714, 0x1338, 0x2e04, 0x464c, | |
854 0x3928, 0x0614, 0x1238, 0x2d04, 0x454c, | |
855 0x3828, 0x0618, 0x123c, 0x2c04, 0x444c, | |
856 0x3728, 0x0718, 0x133c, 0x2b04, 0x434c, | |
857 0x3628, 0x0818, 0x143c, 0x2a04, 0x424c, | |
858 0x362c, 0x0918, 0x153c, 0x2a08, 0x4250, | |
859 0x372c, 0x0a18, 0x163c, 0x2b08, 0x4350, | |
860 0x382c, 0x0b18, 0x173c, 0x2c08, 0x4450, | |
861 0x392c, 0x0b1c, 0x1740, 0x2d08, 0x4550, | |
862 0x3a2c, 0x0a1c, 0x1640, 0x2e08, 0x4650, | |
863 0x3b2c, 0x091c, 0x1540, 0x2f08, 0x4750, | |
864 0x3b30, 0x081c, 0x1440, 0x2f0c, 0x4754, | |
865 0x3a30, 0x071c, 0x1340, 0x2e0c, 0x4654, | |
866 0x3930, 0x061c, 0x1240, 0x2d0c, 0x4554, | |
867 0x3830, 0x0620, 0x1244, 0x2c0c, 0x4454, | |
868 0x3730, 0x0720, 0x1344, 0x2b0c, 0x4354, | |
869 0x3630, 0x0820, 0x1444, 0x2a0c, 0x4254, | |
870 0x3634, 0x0920, 0x1544, 0x2a10, 0x4258, | |
871 0x3734, 0x0a20, 0x1644, 0x2b10, 0x4458, | |
872 0x3834, 0x0b20, 0x1744, 0x2c10, 0x4658, | |
873 0x3c24, 0x0f10, 0x1b34, 0x3000, 0x0048, | |
874 0x3d24, 0x1010, 0x1c34, 0x3100, 0x0148, | |
875 0x3e24, 0x1110, 0x1d34, 0x3200, 0x0248, | |
876 0x3f24, 0x1114, 0x1d38, 0x3300, 0x0348, | |
877 0x4024, 0x1014, 0x1c38, 0x3400, 0x0448, | |
878 0x4124, 0x0f14, 0x1b38, 0x3500, 0x0548, | |
879 0x4128, 0x0e14, 0x1a38, 0x3504, 0x054c, | |
880 0x4028, 0x0d14, 0x1938, 0x3404, 0x044c, | |
881 0x3f28, 0x0c14, 0x1838, 0x3304, 0x034c, | |
882 0x3e28, 0x0c18, 0x183c, 0x3204, 0x024c, | |
883 0x3d28, 0x0d18, 0x193c, 0x3104, 0x014c, | |
884 0x3c28, 0x0e18, 0x1a3c, 0x3004, 0x004c, | |
885 0x3c2c, 0x0f18, 0x1b3c, 0x3008, 0x0050, | |
886 0x3d2c, 0x1018, 0x1c3c, 0x3108, 0x0150, | |
887 0x3e2c, 0x1118, 0x1d3c, 0x3208, 0x0250, | |
888 0x3f2c, 0x111c, 0x1d40, 0x3308, 0x0350, | |
889 0x402c, 0x101c, 0x1c40, 0x3408, 0x0450, | |
890 0x412c, 0x0f1c, 0x1b40, 0x3508, 0x0550, | |
891 0x4130, 0x0e1c, 0x1a40, 0x350c, 0x0554, | |
892 0x4030, 0x0d1c, 0x1940, 0x340c, 0x0454, | |
893 0x3f30, 0x0c1c, 0x1840, 0x330c, 0x0354, | |
894 0x3e30, 0x0c20, 0x1844, 0x320c, 0x0254, | |
895 0x3d30, 0x0d20, 0x1944, 0x310c, 0x0154, | |
896 0x3c30, 0x0e20, 0x1a44, 0x300c, 0x0054, | |
897 0x3c34, 0x0f20, 0x1b44, 0x3010, 0x0058, | |
898 0x3d34, 0x1020, 0x1c44, 0x3110, 0x0258, | |
899 0x3e34, 0x1120, 0x1d44, 0x3210, 0x0458, | |
900 0x4224, 0x1510, 0x2134, 0x3600, 0x0648, | |
901 0x4324, 0x1610, 0x2234, 0x3700, 0x0748, | |
902 0x4424, 0x1710, 0x2334, 0x3800, 0x0848, | |
903 0x4524, 0x1714, 0x2338, 0x3900, 0x0948, | |
904 0x4624, 0x1614, 0x2238, 0x3a00, 0x0a48, | |
905 0x4724, 0x1514, 0x2138, 0x3b00, 0x0b48, | |
906 0x4728, 0x1414, 0x2038, 0x3b04, 0x0b4c, | |
907 0x4628, 0x1314, 0x1f38, 0x3a04, 0x0a4c, | |
908 0x4528, 0x1214, 0x1e38, 0x3904, 0x094c, | |
909 0x4428, 0x1218, 0x1e3c, 0x3804, 0x084c, | |
910 0x4328, 0x1318, 0x1f3c, 0x3704, 0x074c, | |
911 0x4228, 0x1418, 0x203c, 0x3604, 0x064c, | |
912 0x422c, 0x1518, 0x213c, 0x3608, 0x0650, | |
913 0x432c, 0x1618, 0x223c, 0x3708, 0x0750, | |
914 0x442c, 0x1718, 0x233c, 0x3808, 0x0850, | |
915 0x452c, 0x171c, 0x2340, 0x3908, 0x0950, | |
916 0x462c, 0x161c, 0x2240, 0x3a08, 0x0a50, | |
917 0x472c, 0x151c, 0x2140, 0x3b08, 0x0b50, | |
918 0x4730, 0x141c, 0x2040, 0x3b0c, 0x0b54, | |
919 0x4630, 0x131c, 0x1f40, 0x3a0c, 0x0a54, | |
920 0x4530, 0x121c, 0x1e40, 0x390c, 0x0954, | |
921 0x4430, 0x1220, 0x1e44, 0x380c, 0x0854, | |
922 0x4330, 0x1320, 0x1f44, 0x370c, 0x0754, | |
923 0x4230, 0x1420, 0x2044, 0x360c, 0x0654, | |
924 0x4234, 0x1520, 0x2144, 0x3610, 0x0658, | |
925 0x4334, 0x1620, 0x2244, 0x3710, 0x0858, | |
926 0x4434, 0x1720, 0x2344, 0x3810, 0x0a58, | |
927 0x0024, 0x1b10, 0x2734, 0x3c00, 0x0c48, | |
928 0x0124, 0x1c10, 0x2834, 0x3d00, 0x0d48, | |
929 0x0224, 0x1d10, 0x2934, 0x3e00, 0x0e48, | |
930 0x0324, 0x1d14, 0x2938, 0x3f00, 0x0f48, | |
931 0x0424, 0x1c14, 0x2838, 0x4000, 0x1048, | |
932 0x0524, 0x1b14, 0x2738, 0x4100, 0x1148, | |
933 0x0528, 0x1a14, 0x2638, 0x4104, 0x114c, | |
934 0x0428, 0x1914, 0x2538, 0x4004, 0x104c, | |
935 0x0328, 0x1814, 0x2438, 0x3f04, 0x0f4c, | |
936 0x0228, 0x1818, 0x243c, 0x3e04, 0x0e4c, | |
937 0x0128, 0x1918, 0x253c, 0x3d04, 0x0d4c, | |
938 0x0028, 0x1a18, 0x263c, 0x3c04, 0x0c4c, | |
939 0x002c, 0x1b18, 0x273c, 0x3c08, 0x0c50, | |
940 0x012c, 0x1c18, 0x283c, 0x3d08, 0x0d50, | |
941 0x022c, 0x1d18, 0x293c, 0x3e08, 0x0e50, | |
942 0x032c, 0x1d1c, 0x2940, 0x3f08, 0x0f50, | |
943 0x042c, 0x1c1c, 0x2840, 0x4008, 0x1050, | |
944 0x052c, 0x1b1c, 0x2740, 0x4108, 0x1150, | |
945 0x0530, 0x1a1c, 0x2640, 0x410c, 0x1154, | |
946 0x0430, 0x191c, 0x2540, 0x400c, 0x1054, | |
947 0x0330, 0x181c, 0x2440, 0x3f0c, 0x0f54, | |
948 0x0230, 0x1820, 0x2444, 0x3e0c, 0x0e54, | |
949 0x0130, 0x1920, 0x2544, 0x3d0c, 0x0d54, | |
950 0x0030, 0x1a20, 0x2644, 0x3c0c, 0x0c54, | |
951 0x0034, 0x1b20, 0x2744, 0x3c10, 0x0c58, | |
952 0x0134, 0x1c20, 0x2844, 0x3d10, 0x0e58, | |
953 0x0234, 0x1d20, 0x2944, 0x3e10, 0x1058, | |
954 0x0624, 0x2110, 0x2d34, 0x4200, 0x1248, | |
955 0x0724, 0x2210, 0x2e34, 0x4300, 0x1348, | |
956 0x0824, 0x2310, 0x2f34, 0x4400, 0x1448, | |
957 0x0924, 0x2314, 0x2f38, 0x4500, 0x1548, | |
958 0x0a24, 0x2214, 0x2e38, 0x4600, 0x1648, | |
959 0x0b24, 0x2114, 0x2d38, 0x4700, 0x1748, | |
960 0x0b28, 0x2014, 0x2c38, 0x4704, 0x174c, | |
961 0x0a28, 0x1f14, 0x2b38, 0x4604, 0x164c, | |
962 0x0928, 0x1e14, 0x2a38, 0x4504, 0x154c, | |
963 0x0828, 0x1e18, 0x2a3c, 0x4404, 0x144c, | |
964 0x0728, 0x1f18, 0x2b3c, 0x4304, 0x134c, | |
965 0x0628, 0x2018, 0x2c3c, 0x4204, 0x124c, | |
966 0x062c, 0x2118, 0x2d3c, 0x4208, 0x1250, | |
967 0x072c, 0x2218, 0x2e3c, 0x4308, 0x1350, | |
968 0x082c, 0x2318, 0x2f3c, 0x4408, 0x1450, | |
969 0x092c, 0x231c, 0x2f40, 0x4508, 0x1550, | |
970 0x0a2c, 0x221c, 0x2e40, 0x4608, 0x1650, | |
971 0x0b2c, 0x211c, 0x2d40, 0x4708, 0x1750, | |
972 0x0b30, 0x201c, 0x2c40, 0x470c, 0x1754, | |
973 0x0a30, 0x1f1c, 0x2b40, 0x460c, 0x1654, | |
974 0x0930, 0x1e1c, 0x2a40, 0x450c, 0x1554, | |
975 0x0830, 0x1e20, 0x2a44, 0x440c, 0x1454, | |
976 0x0730, 0x1f20, 0x2b44, 0x430c, 0x1354, | |
977 0x0630, 0x2020, 0x2c44, 0x420c, 0x1254, | |
978 0x0634, 0x2120, 0x2d44, 0x4210, 0x1258, | |
979 0x0734, 0x2220, 0x2e44, 0x4310, 0x1458, | |
1087
7f10d38721ed
support for PAL 4:1:1 SMPTE 314M DV streams patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
1064
diff
changeset
|
980 0x0834, 0x2320, 0x2f44, 0x4410, 0x1658, |
7f10d38721ed
support for PAL 4:1:1 SMPTE 314M DV streams patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
1064
diff
changeset
|
981 }; |
7f10d38721ed
support for PAL 4:1:1 SMPTE 314M DV streams patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
1064
diff
changeset
|
982 |
1064 | 983 static const uint16_t dv_place_411[1350] = { |
723 | 984 0x0c24, 0x2710, 0x3334, 0x0000, 0x1848, |
985 0x0d24, 0x2810, 0x3434, 0x0100, 0x1948, | |
986 0x0e24, 0x2910, 0x3534, 0x0200, 0x1a48, | |
987 0x0f24, 0x2914, 0x3538, 0x0300, 0x1b48, | |
988 0x1024, 0x2814, 0x3438, 0x0400, 0x1c48, | |
989 0x1124, 0x2714, 0x3338, 0x0500, 0x1d48, | |
990 0x1128, 0x2614, 0x3238, 0x0504, 0x1d4c, | |
991 0x1028, 0x2514, 0x3138, 0x0404, 0x1c4c, | |
992 0x0f28, 0x2414, 0x3038, 0x0304, 0x1b4c, | |
993 0x0e28, 0x2418, 0x303c, 0x0204, 0x1a4c, | |
994 0x0d28, 0x2518, 0x313c, 0x0104, 0x194c, | |
995 0x0c28, 0x2618, 0x323c, 0x0004, 0x184c, | |
996 0x0c2c, 0x2718, 0x333c, 0x0008, 0x1850, | |
997 0x0d2c, 0x2818, 0x343c, 0x0108, 0x1950, | |
998 0x0e2c, 0x2918, 0x353c, 0x0208, 0x1a50, | |
999 0x0f2c, 0x291c, 0x3540, 0x0308, 0x1b50, | |
1000 0x102c, 0x281c, 0x3440, 0x0408, 0x1c50, | |
1001 0x112c, 0x271c, 0x3340, 0x0508, 0x1d50, | |
1002 0x1130, 0x261c, 0x3240, 0x050c, 0x1d54, | |
1003 0x1030, 0x251c, 0x3140, 0x040c, 0x1c54, | |
1004 0x0f30, 0x241c, 0x3040, 0x030c, 0x1b54, | |
1005 0x0e30, 0x2420, 0x3044, 0x020c, 0x1a54, | |
1006 0x0d30, 0x2520, 0x3144, 0x010c, 0x1954, | |
1007 0x0c30, 0x2620, 0x3244, 0x000c, 0x1854, | |
1008 0x0c34, 0x2720, 0x3344, 0x0010, 0x1858, | |
1009 0x0d34, 0x2820, 0x3444, 0x0110, 0x1a58, | |
1010 0x0e34, 0x2920, 0x3544, 0x0210, 0x1c58, | |
1011 0x1224, 0x2d10, 0x3934, 0x0600, 0x1e48, | |
1012 0x1324, 0x2e10, 0x3a34, 0x0700, 0x1f48, | |
1013 0x1424, 0x2f10, 0x3b34, 0x0800, 0x2048, | |
1014 0x1524, 0x2f14, 0x3b38, 0x0900, 0x2148, | |
1015 0x1624, 0x2e14, 0x3a38, 0x0a00, 0x2248, | |
1016 0x1724, 0x2d14, 0x3938, 0x0b00, 0x2348, | |
1017 0x1728, 0x2c14, 0x3838, 0x0b04, 0x234c, | |
1018 0x1628, 0x2b14, 0x3738, 0x0a04, 0x224c, | |
1019 0x1528, 0x2a14, 0x3638, 0x0904, 0x214c, | |
1020 0x1428, 0x2a18, 0x363c, 0x0804, 0x204c, | |
1021 0x1328, 0x2b18, 0x373c, 0x0704, 0x1f4c, | |
1022 0x1228, 0x2c18, 0x383c, 0x0604, 0x1e4c, | |
1023 0x122c, 0x2d18, 0x393c, 0x0608, 0x1e50, | |
1024 0x132c, 0x2e18, 0x3a3c, 0x0708, 0x1f50, | |
1025 0x142c, 0x2f18, 0x3b3c, 0x0808, 0x2050, | |
1026 0x152c, 0x2f1c, 0x3b40, 0x0908, 0x2150, | |
1027 0x162c, 0x2e1c, 0x3a40, 0x0a08, 0x2250, | |
1028 0x172c, 0x2d1c, 0x3940, 0x0b08, 0x2350, | |
1029 0x1730, 0x2c1c, 0x3840, 0x0b0c, 0x2354, | |
1030 0x1630, 0x2b1c, 0x3740, 0x0a0c, 0x2254, | |
1031 0x1530, 0x2a1c, 0x3640, 0x090c, 0x2154, | |
1032 0x1430, 0x2a20, 0x3644, 0x080c, 0x2054, | |
1033 0x1330, 0x2b20, 0x3744, 0x070c, 0x1f54, | |
1034 0x1230, 0x2c20, 0x3844, 0x060c, 0x1e54, | |
1035 0x1234, 0x2d20, 0x3944, 0x0610, 0x1e58, | |
1036 0x1334, 0x2e20, 0x3a44, 0x0710, 0x2058, | |
1037 0x1434, 0x2f20, 0x3b44, 0x0810, 0x2258, | |
1038 0x1824, 0x3310, 0x0334, 0x0c00, 0x2448, | |
1039 0x1924, 0x3410, 0x0434, 0x0d00, 0x2548, | |
1040 0x1a24, 0x3510, 0x0534, 0x0e00, 0x2648, | |
1041 0x1b24, 0x3514, 0x0538, 0x0f00, 0x2748, | |
1042 0x1c24, 0x3414, 0x0438, 0x1000, 0x2848, | |
1043 0x1d24, 0x3314, 0x0338, 0x1100, 0x2948, | |
1044 0x1d28, 0x3214, 0x0238, 0x1104, 0x294c, | |
1045 0x1c28, 0x3114, 0x0138, 0x1004, 0x284c, | |
1046 0x1b28, 0x3014, 0x0038, 0x0f04, 0x274c, | |
1047 0x1a28, 0x3018, 0x003c, 0x0e04, 0x264c, | |
1048 0x1928, 0x3118, 0x013c, 0x0d04, 0x254c, | |
1049 0x1828, 0x3218, 0x023c, 0x0c04, 0x244c, | |
1050 0x182c, 0x3318, 0x033c, 0x0c08, 0x2450, | |
1051 0x192c, 0x3418, 0x043c, 0x0d08, 0x2550, | |
1052 0x1a2c, 0x3518, 0x053c, 0x0e08, 0x2650, | |
1053 0x1b2c, 0x351c, 0x0540, 0x0f08, 0x2750, | |
1054 0x1c2c, 0x341c, 0x0440, 0x1008, 0x2850, | |
1055 0x1d2c, 0x331c, 0x0340, 0x1108, 0x2950, | |
1056 0x1d30, 0x321c, 0x0240, 0x110c, 0x2954, | |
1057 0x1c30, 0x311c, 0x0140, 0x100c, 0x2854, | |
1058 0x1b30, 0x301c, 0x0040, 0x0f0c, 0x2754, | |
1059 0x1a30, 0x3020, 0x0044, 0x0e0c, 0x2654, | |
1060 0x1930, 0x3120, 0x0144, 0x0d0c, 0x2554, | |
1061 0x1830, 0x3220, 0x0244, 0x0c0c, 0x2454, | |
1062 0x1834, 0x3320, 0x0344, 0x0c10, 0x2458, | |
1063 0x1934, 0x3420, 0x0444, 0x0d10, 0x2658, | |
1064 0x1a34, 0x3520, 0x0544, 0x0e10, 0x2858, | |
1065 0x1e24, 0x3910, 0x0934, 0x1200, 0x2a48, | |
1066 0x1f24, 0x3a10, 0x0a34, 0x1300, 0x2b48, | |
1067 0x2024, 0x3b10, 0x0b34, 0x1400, 0x2c48, | |
1068 0x2124, 0x3b14, 0x0b38, 0x1500, 0x2d48, | |
1069 0x2224, 0x3a14, 0x0a38, 0x1600, 0x2e48, | |
1070 0x2324, 0x3914, 0x0938, 0x1700, 0x2f48, | |
1071 0x2328, 0x3814, 0x0838, 0x1704, 0x2f4c, | |
1072 0x2228, 0x3714, 0x0738, 0x1604, 0x2e4c, | |
1073 0x2128, 0x3614, 0x0638, 0x1504, 0x2d4c, | |
1074 0x2028, 0x3618, 0x063c, 0x1404, 0x2c4c, | |
1075 0x1f28, 0x3718, 0x073c, 0x1304, 0x2b4c, | |
1076 0x1e28, 0x3818, 0x083c, 0x1204, 0x2a4c, | |
1077 0x1e2c, 0x3918, 0x093c, 0x1208, 0x2a50, | |
1078 0x1f2c, 0x3a18, 0x0a3c, 0x1308, 0x2b50, | |
1079 0x202c, 0x3b18, 0x0b3c, 0x1408, 0x2c50, | |
1080 0x212c, 0x3b1c, 0x0b40, 0x1508, 0x2d50, | |
1081 0x222c, 0x3a1c, 0x0a40, 0x1608, 0x2e50, | |
1082 0x232c, 0x391c, 0x0940, 0x1708, 0x2f50, | |
1083 0x2330, 0x381c, 0x0840, 0x170c, 0x2f54, | |
1084 0x2230, 0x371c, 0x0740, 0x160c, 0x2e54, | |
1085 0x2130, 0x361c, 0x0640, 0x150c, 0x2d54, | |
1086 0x2030, 0x3620, 0x0644, 0x140c, 0x2c54, | |
1087 0x1f30, 0x3720, 0x0744, 0x130c, 0x2b54, | |
1088 0x1e30, 0x3820, 0x0844, 0x120c, 0x2a54, | |
1089 0x1e34, 0x3920, 0x0944, 0x1210, 0x2a58, | |
1090 0x1f34, 0x3a20, 0x0a44, 0x1310, 0x2c58, | |
1091 0x2034, 0x3b20, 0x0b44, 0x1410, 0x2e58, | |
1092 0x2424, 0x0310, 0x0f34, 0x1800, 0x3048, | |
1093 0x2524, 0x0410, 0x1034, 0x1900, 0x3148, | |
1094 0x2624, 0x0510, 0x1134, 0x1a00, 0x3248, | |
1095 0x2724, 0x0514, 0x1138, 0x1b00, 0x3348, | |
1096 0x2824, 0x0414, 0x1038, 0x1c00, 0x3448, | |
1097 0x2924, 0x0314, 0x0f38, 0x1d00, 0x3548, | |
1098 0x2928, 0x0214, 0x0e38, 0x1d04, 0x354c, | |
1099 0x2828, 0x0114, 0x0d38, 0x1c04, 0x344c, | |
1100 0x2728, 0x0014, 0x0c38, 0x1b04, 0x334c, | |
1101 0x2628, 0x0018, 0x0c3c, 0x1a04, 0x324c, | |
1102 0x2528, 0x0118, 0x0d3c, 0x1904, 0x314c, | |
1103 0x2428, 0x0218, 0x0e3c, 0x1804, 0x304c, | |
1104 0x242c, 0x0318, 0x0f3c, 0x1808, 0x3050, | |
1105 0x252c, 0x0418, 0x103c, 0x1908, 0x3150, | |
1106 0x262c, 0x0518, 0x113c, 0x1a08, 0x3250, | |
1107 0x272c, 0x051c, 0x1140, 0x1b08, 0x3350, | |
1108 0x282c, 0x041c, 0x1040, 0x1c08, 0x3450, | |
1109 0x292c, 0x031c, 0x0f40, 0x1d08, 0x3550, | |
1110 0x2930, 0x021c, 0x0e40, 0x1d0c, 0x3554, | |
1111 0x2830, 0x011c, 0x0d40, 0x1c0c, 0x3454, | |
1112 0x2730, 0x001c, 0x0c40, 0x1b0c, 0x3354, | |
1113 0x2630, 0x0020, 0x0c44, 0x1a0c, 0x3254, | |
1114 0x2530, 0x0120, 0x0d44, 0x190c, 0x3154, | |
1115 0x2430, 0x0220, 0x0e44, 0x180c, 0x3054, | |
1116 0x2434, 0x0320, 0x0f44, 0x1810, 0x3058, | |
1117 0x2534, 0x0420, 0x1044, 0x1910, 0x3258, | |
1118 0x2634, 0x0520, 0x1144, 0x1a10, 0x3458, | |
1119 0x2a24, 0x0910, 0x1534, 0x1e00, 0x3648, | |
1120 0x2b24, 0x0a10, 0x1634, 0x1f00, 0x3748, | |
1121 0x2c24, 0x0b10, 0x1734, 0x2000, 0x3848, | |
1122 0x2d24, 0x0b14, 0x1738, 0x2100, 0x3948, | |
1123 0x2e24, 0x0a14, 0x1638, 0x2200, 0x3a48, | |
1124 0x2f24, 0x0914, 0x1538, 0x2300, 0x3b48, | |
1125 0x2f28, 0x0814, 0x1438, 0x2304, 0x3b4c, | |
1126 0x2e28, 0x0714, 0x1338, 0x2204, 0x3a4c, | |
1127 0x2d28, 0x0614, 0x1238, 0x2104, 0x394c, | |
1128 0x2c28, 0x0618, 0x123c, 0x2004, 0x384c, | |
1129 0x2b28, 0x0718, 0x133c, 0x1f04, 0x374c, | |
1130 0x2a28, 0x0818, 0x143c, 0x1e04, 0x364c, | |
1131 0x2a2c, 0x0918, 0x153c, 0x1e08, 0x3650, | |
1132 0x2b2c, 0x0a18, 0x163c, 0x1f08, 0x3750, | |
1133 0x2c2c, 0x0b18, 0x173c, 0x2008, 0x3850, | |
1134 0x2d2c, 0x0b1c, 0x1740, 0x2108, 0x3950, | |
1135 0x2e2c, 0x0a1c, 0x1640, 0x2208, 0x3a50, | |
1136 0x2f2c, 0x091c, 0x1540, 0x2308, 0x3b50, | |
1137 0x2f30, 0x081c, 0x1440, 0x230c, 0x3b54, | |
1138 0x2e30, 0x071c, 0x1340, 0x220c, 0x3a54, | |
1139 0x2d30, 0x061c, 0x1240, 0x210c, 0x3954, | |
1140 0x2c30, 0x0620, 0x1244, 0x200c, 0x3854, | |
1141 0x2b30, 0x0720, 0x1344, 0x1f0c, 0x3754, | |
1142 0x2a30, 0x0820, 0x1444, 0x1e0c, 0x3654, | |
1143 0x2a34, 0x0920, 0x1544, 0x1e10, 0x3658, | |
1144 0x2b34, 0x0a20, 0x1644, 0x1f10, 0x3858, | |
1145 0x2c34, 0x0b20, 0x1744, 0x2010, 0x3a58, | |
1146 0x3024, 0x0f10, 0x1b34, 0x2400, 0x0048, | |
1147 0x3124, 0x1010, 0x1c34, 0x2500, 0x0148, | |
1148 0x3224, 0x1110, 0x1d34, 0x2600, 0x0248, | |
1149 0x3324, 0x1114, 0x1d38, 0x2700, 0x0348, | |
1150 0x3424, 0x1014, 0x1c38, 0x2800, 0x0448, | |
1151 0x3524, 0x0f14, 0x1b38, 0x2900, 0x0548, | |
1152 0x3528, 0x0e14, 0x1a38, 0x2904, 0x054c, | |
1153 0x3428, 0x0d14, 0x1938, 0x2804, 0x044c, | |
1154 0x3328, 0x0c14, 0x1838, 0x2704, 0x034c, | |
1155 0x3228, 0x0c18, 0x183c, 0x2604, 0x024c, | |
1156 0x3128, 0x0d18, 0x193c, 0x2504, 0x014c, | |
1157 0x3028, 0x0e18, 0x1a3c, 0x2404, 0x004c, | |
1158 0x302c, 0x0f18, 0x1b3c, 0x2408, 0x0050, | |
1159 0x312c, 0x1018, 0x1c3c, 0x2508, 0x0150, | |
1160 0x322c, 0x1118, 0x1d3c, 0x2608, 0x0250, | |
1161 0x332c, 0x111c, 0x1d40, 0x2708, 0x0350, | |
1162 0x342c, 0x101c, 0x1c40, 0x2808, 0x0450, | |
1163 0x352c, 0x0f1c, 0x1b40, 0x2908, 0x0550, | |
1164 0x3530, 0x0e1c, 0x1a40, 0x290c, 0x0554, | |
1165 0x3430, 0x0d1c, 0x1940, 0x280c, 0x0454, | |
1166 0x3330, 0x0c1c, 0x1840, 0x270c, 0x0354, | |
1167 0x3230, 0x0c20, 0x1844, 0x260c, 0x0254, | |
1168 0x3130, 0x0d20, 0x1944, 0x250c, 0x0154, | |
1169 0x3030, 0x0e20, 0x1a44, 0x240c, 0x0054, | |
1170 0x3034, 0x0f20, 0x1b44, 0x2410, 0x0058, | |
1171 0x3134, 0x1020, 0x1c44, 0x2510, 0x0258, | |
1172 0x3234, 0x1120, 0x1d44, 0x2610, 0x0458, | |
1173 0x3624, 0x1510, 0x2134, 0x2a00, 0x0648, | |
1174 0x3724, 0x1610, 0x2234, 0x2b00, 0x0748, | |
1175 0x3824, 0x1710, 0x2334, 0x2c00, 0x0848, | |
1176 0x3924, 0x1714, 0x2338, 0x2d00, 0x0948, | |
1177 0x3a24, 0x1614, 0x2238, 0x2e00, 0x0a48, | |
1178 0x3b24, 0x1514, 0x2138, 0x2f00, 0x0b48, | |
1179 0x3b28, 0x1414, 0x2038, 0x2f04, 0x0b4c, | |
1180 0x3a28, 0x1314, 0x1f38, 0x2e04, 0x0a4c, | |
1181 0x3928, 0x1214, 0x1e38, 0x2d04, 0x094c, | |
1182 0x3828, 0x1218, 0x1e3c, 0x2c04, 0x084c, | |
1183 0x3728, 0x1318, 0x1f3c, 0x2b04, 0x074c, | |
1184 0x3628, 0x1418, 0x203c, 0x2a04, 0x064c, | |
1185 0x362c, 0x1518, 0x213c, 0x2a08, 0x0650, | |
1186 0x372c, 0x1618, 0x223c, 0x2b08, 0x0750, | |
1187 0x382c, 0x1718, 0x233c, 0x2c08, 0x0850, | |
1188 0x392c, 0x171c, 0x2340, 0x2d08, 0x0950, | |
1189 0x3a2c, 0x161c, 0x2240, 0x2e08, 0x0a50, | |
1190 0x3b2c, 0x151c, 0x2140, 0x2f08, 0x0b50, | |
1191 0x3b30, 0x141c, 0x2040, 0x2f0c, 0x0b54, | |
1192 0x3a30, 0x131c, 0x1f40, 0x2e0c, 0x0a54, | |
1193 0x3930, 0x121c, 0x1e40, 0x2d0c, 0x0954, | |
1194 0x3830, 0x1220, 0x1e44, 0x2c0c, 0x0854, | |
1195 0x3730, 0x1320, 0x1f44, 0x2b0c, 0x0754, | |
1196 0x3630, 0x1420, 0x2044, 0x2a0c, 0x0654, | |
1197 0x3634, 0x1520, 0x2144, 0x2a10, 0x0658, | |
1198 0x3734, 0x1620, 0x2244, 0x2b10, 0x0858, | |
1199 0x3834, 0x1720, 0x2344, 0x2c10, 0x0a58, | |
1200 0x0024, 0x1b10, 0x2734, 0x3000, 0x0c48, | |
1201 0x0124, 0x1c10, 0x2834, 0x3100, 0x0d48, | |
1202 0x0224, 0x1d10, 0x2934, 0x3200, 0x0e48, | |
1203 0x0324, 0x1d14, 0x2938, 0x3300, 0x0f48, | |
1204 0x0424, 0x1c14, 0x2838, 0x3400, 0x1048, | |
1205 0x0524, 0x1b14, 0x2738, 0x3500, 0x1148, | |
1206 0x0528, 0x1a14, 0x2638, 0x3504, 0x114c, | |
1207 0x0428, 0x1914, 0x2538, 0x3404, 0x104c, | |
1208 0x0328, 0x1814, 0x2438, 0x3304, 0x0f4c, | |
1209 0x0228, 0x1818, 0x243c, 0x3204, 0x0e4c, | |
1210 0x0128, 0x1918, 0x253c, 0x3104, 0x0d4c, | |
1211 0x0028, 0x1a18, 0x263c, 0x3004, 0x0c4c, | |
1212 0x002c, 0x1b18, 0x273c, 0x3008, 0x0c50, | |
1213 0x012c, 0x1c18, 0x283c, 0x3108, 0x0d50, | |
1214 0x022c, 0x1d18, 0x293c, 0x3208, 0x0e50, | |
1215 0x032c, 0x1d1c, 0x2940, 0x3308, 0x0f50, | |
1216 0x042c, 0x1c1c, 0x2840, 0x3408, 0x1050, | |
1217 0x052c, 0x1b1c, 0x2740, 0x3508, 0x1150, | |
1218 0x0530, 0x1a1c, 0x2640, 0x350c, 0x1154, | |
1219 0x0430, 0x191c, 0x2540, 0x340c, 0x1054, | |
1220 0x0330, 0x181c, 0x2440, 0x330c, 0x0f54, | |
1221 0x0230, 0x1820, 0x2444, 0x320c, 0x0e54, | |
1222 0x0130, 0x1920, 0x2544, 0x310c, 0x0d54, | |
1223 0x0030, 0x1a20, 0x2644, 0x300c, 0x0c54, | |
1224 0x0034, 0x1b20, 0x2744, 0x3010, 0x0c58, | |
1225 0x0134, 0x1c20, 0x2844, 0x3110, 0x0e58, | |
1226 0x0234, 0x1d20, 0x2944, 0x3210, 0x1058, | |
1227 0x0624, 0x2110, 0x2d34, 0x3600, 0x1248, | |
1228 0x0724, 0x2210, 0x2e34, 0x3700, 0x1348, | |
1229 0x0824, 0x2310, 0x2f34, 0x3800, 0x1448, | |
1230 0x0924, 0x2314, 0x2f38, 0x3900, 0x1548, | |
1231 0x0a24, 0x2214, 0x2e38, 0x3a00, 0x1648, | |
1232 0x0b24, 0x2114, 0x2d38, 0x3b00, 0x1748, | |
1233 0x0b28, 0x2014, 0x2c38, 0x3b04, 0x174c, | |
1234 0x0a28, 0x1f14, 0x2b38, 0x3a04, 0x164c, | |
1235 0x0928, 0x1e14, 0x2a38, 0x3904, 0x154c, | |
1236 0x0828, 0x1e18, 0x2a3c, 0x3804, 0x144c, | |
1237 0x0728, 0x1f18, 0x2b3c, 0x3704, 0x134c, | |
1238 0x0628, 0x2018, 0x2c3c, 0x3604, 0x124c, | |
1239 0x062c, 0x2118, 0x2d3c, 0x3608, 0x1250, | |
1240 0x072c, 0x2218, 0x2e3c, 0x3708, 0x1350, | |
1241 0x082c, 0x2318, 0x2f3c, 0x3808, 0x1450, | |
1242 0x092c, 0x231c, 0x2f40, 0x3908, 0x1550, | |
1243 0x0a2c, 0x221c, 0x2e40, 0x3a08, 0x1650, | |
1244 0x0b2c, 0x211c, 0x2d40, 0x3b08, 0x1750, | |
1245 0x0b30, 0x201c, 0x2c40, 0x3b0c, 0x1754, | |
1246 0x0a30, 0x1f1c, 0x2b40, 0x3a0c, 0x1654, | |
1247 0x0930, 0x1e1c, 0x2a40, 0x390c, 0x1554, | |
1248 0x0830, 0x1e20, 0x2a44, 0x380c, 0x1454, | |
1249 0x0730, 0x1f20, 0x2b44, 0x370c, 0x1354, | |
1250 0x0630, 0x2020, 0x2c44, 0x360c, 0x1254, | |
1251 0x0634, 0x2120, 0x2d44, 0x3610, 0x1258, | |
1252 0x0734, 0x2220, 0x2e44, 0x3710, 0x1458, | |
1253 0x0834, 0x2320, 0x2f44, 0x3810, 0x1658, | |
1254 }; | |
1255 | |
3167 | 1256 /* 2 channels per frame, 10 DIF sequences per channel, |
1257 27 video segments per DIF sequence, 5 macroblocks per video segment */ | |
1258 static const uint16_t dv_place_422_525[2*10*27*5] = { | |
7538
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1259 0x0c24, 0x2412, 0x3036, 0x0000, 0x1848, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1260 0x0d24, 0x2512, 0x3136, 0x0100, 0x1948, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1261 0x0e24, 0x2612, 0x3236, 0x0200, 0x1a48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1262 0x0e26, 0x2614, 0x3238, 0x0202, 0x1a4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1263 0x0d26, 0x2514, 0x3138, 0x0102, 0x194a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1264 0x0c26, 0x2414, 0x3038, 0x0002, 0x184a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1265 0x0c28, 0x2416, 0x303a, 0x0004, 0x184c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1266 0x0d28, 0x2516, 0x313a, 0x0104, 0x194c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1267 0x0e28, 0x2616, 0x323a, 0x0204, 0x1a4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1268 0x0e2a, 0x2618, 0x323c, 0x0206, 0x1a4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1269 0x0d2a, 0x2518, 0x313c, 0x0106, 0x194e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1270 0x0c2a, 0x2418, 0x303c, 0x0006, 0x184e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1271 0x0c2c, 0x241a, 0x303e, 0x0008, 0x1850, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1272 0x0d2c, 0x251a, 0x313e, 0x0108, 0x1950, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1273 0x0e2c, 0x261a, 0x323e, 0x0208, 0x1a50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1274 0x0e2e, 0x261c, 0x3240, 0x020a, 0x1a52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1275 0x0d2e, 0x251c, 0x3140, 0x010a, 0x1952, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1276 0x0c2e, 0x241c, 0x3040, 0x000a, 0x1852, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1277 0x0c30, 0x241e, 0x3042, 0x000c, 0x1854, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1278 0x0d30, 0x251e, 0x3142, 0x010c, 0x1954, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1279 0x0e30, 0x261e, 0x3242, 0x020c, 0x1a54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1280 0x0e32, 0x2620, 0x3244, 0x020e, 0x1a56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1281 0x0d32, 0x2520, 0x3144, 0x010e, 0x1956, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1282 0x0c32, 0x2420, 0x3044, 0x000e, 0x1856, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1283 0x0c34, 0x2422, 0x3046, 0x0010, 0x1858, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1284 0x0d34, 0x2522, 0x3146, 0x0110, 0x1958, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1285 0x0e34, 0x2622, 0x3246, 0x0210, 0x1a58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1286 0x1224, 0x2a12, 0x3636, 0x0600, 0x1e48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1287 0x1324, 0x2b12, 0x3736, 0x0700, 0x1f48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1288 0x1424, 0x2c12, 0x3836, 0x0800, 0x2048, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1289 0x1426, 0x2c14, 0x3838, 0x0802, 0x204a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1290 0x1326, 0x2b14, 0x3738, 0x0702, 0x1f4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1291 0x1226, 0x2a14, 0x3638, 0x0602, 0x1e4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1292 0x1228, 0x2a16, 0x363a, 0x0604, 0x1e4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1293 0x1328, 0x2b16, 0x373a, 0x0704, 0x1f4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1294 0x1428, 0x2c16, 0x383a, 0x0804, 0x204c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1295 0x142a, 0x2c18, 0x383c, 0x0806, 0x204e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1296 0x132a, 0x2b18, 0x373c, 0x0706, 0x1f4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1297 0x122a, 0x2a18, 0x363c, 0x0606, 0x1e4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1298 0x122c, 0x2a1a, 0x363e, 0x0608, 0x1e50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1299 0x132c, 0x2b1a, 0x373e, 0x0708, 0x1f50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1300 0x142c, 0x2c1a, 0x383e, 0x0808, 0x2050, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1301 0x142e, 0x2c1c, 0x3840, 0x080a, 0x2052, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1302 0x132e, 0x2b1c, 0x3740, 0x070a, 0x1f52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1303 0x122e, 0x2a1c, 0x3640, 0x060a, 0x1e52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1304 0x1230, 0x2a1e, 0x3642, 0x060c, 0x1e54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1305 0x1330, 0x2b1e, 0x3742, 0x070c, 0x1f54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1306 0x1430, 0x2c1e, 0x3842, 0x080c, 0x2054, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1307 0x1432, 0x2c20, 0x3844, 0x080e, 0x2056, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1308 0x1332, 0x2b20, 0x3744, 0x070e, 0x1f56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1309 0x1232, 0x2a20, 0x3644, 0x060e, 0x1e56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1310 0x1234, 0x2a22, 0x3646, 0x0610, 0x1e58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1311 0x1334, 0x2b22, 0x3746, 0x0710, 0x1f58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1312 0x1434, 0x2c22, 0x3846, 0x0810, 0x2058, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1313 0x1824, 0x3012, 0x0036, 0x0c00, 0x2448, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1314 0x1924, 0x3112, 0x0136, 0x0d00, 0x2548, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1315 0x1a24, 0x3212, 0x0236, 0x0e00, 0x2648, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1316 0x1a26, 0x3214, 0x0238, 0x0e02, 0x264a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1317 0x1926, 0x3114, 0x0138, 0x0d02, 0x254a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1318 0x1826, 0x3014, 0x0038, 0x0c02, 0x244a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1319 0x1828, 0x3016, 0x003a, 0x0c04, 0x244c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1320 0x1928, 0x3116, 0x013a, 0x0d04, 0x254c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1321 0x1a28, 0x3216, 0x023a, 0x0e04, 0x264c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1322 0x1a2a, 0x3218, 0x023c, 0x0e06, 0x264e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1323 0x192a, 0x3118, 0x013c, 0x0d06, 0x254e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1324 0x182a, 0x3018, 0x003c, 0x0c06, 0x244e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1325 0x182c, 0x301a, 0x003e, 0x0c08, 0x2450, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1326 0x192c, 0x311a, 0x013e, 0x0d08, 0x2550, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1327 0x1a2c, 0x321a, 0x023e, 0x0e08, 0x2650, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1328 0x1a2e, 0x321c, 0x0240, 0x0e0a, 0x2652, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1329 0x192e, 0x311c, 0x0140, 0x0d0a, 0x2552, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1330 0x182e, 0x301c, 0x0040, 0x0c0a, 0x2452, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1331 0x1830, 0x301e, 0x0042, 0x0c0c, 0x2454, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1332 0x1930, 0x311e, 0x0142, 0x0d0c, 0x2554, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1333 0x1a30, 0x321e, 0x0242, 0x0e0c, 0x2654, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1334 0x1a32, 0x3220, 0x0244, 0x0e0e, 0x2656, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1335 0x1932, 0x3120, 0x0144, 0x0d0e, 0x2556, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1336 0x1832, 0x3020, 0x0044, 0x0c0e, 0x2456, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1337 0x1834, 0x3022, 0x0046, 0x0c10, 0x2458, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1338 0x1934, 0x3122, 0x0146, 0x0d10, 0x2558, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1339 0x1a34, 0x3222, 0x0246, 0x0e10, 0x2658, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1340 0x1e24, 0x3612, 0x0636, 0x1200, 0x2a48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1341 0x1f24, 0x3712, 0x0736, 0x1300, 0x2b48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1342 0x2024, 0x3812, 0x0836, 0x1400, 0x2c48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1343 0x2026, 0x3814, 0x0838, 0x1402, 0x2c4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1344 0x1f26, 0x3714, 0x0738, 0x1302, 0x2b4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1345 0x1e26, 0x3614, 0x0638, 0x1202, 0x2a4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1346 0x1e28, 0x3616, 0x063a, 0x1204, 0x2a4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1347 0x1f28, 0x3716, 0x073a, 0x1304, 0x2b4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1348 0x2028, 0x3816, 0x083a, 0x1404, 0x2c4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1349 0x202a, 0x3818, 0x083c, 0x1406, 0x2c4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1350 0x1f2a, 0x3718, 0x073c, 0x1306, 0x2b4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1351 0x1e2a, 0x3618, 0x063c, 0x1206, 0x2a4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1352 0x1e2c, 0x361a, 0x063e, 0x1208, 0x2a50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1353 0x1f2c, 0x371a, 0x073e, 0x1308, 0x2b50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1354 0x202c, 0x381a, 0x083e, 0x1408, 0x2c50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1355 0x202e, 0x381c, 0x0840, 0x140a, 0x2c52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1356 0x1f2e, 0x371c, 0x0740, 0x130a, 0x2b52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1357 0x1e2e, 0x361c, 0x0640, 0x120a, 0x2a52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1358 0x1e30, 0x361e, 0x0642, 0x120c, 0x2a54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1359 0x1f30, 0x371e, 0x0742, 0x130c, 0x2b54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1360 0x2030, 0x381e, 0x0842, 0x140c, 0x2c54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1361 0x2032, 0x3820, 0x0844, 0x140e, 0x2c56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1362 0x1f32, 0x3720, 0x0744, 0x130e, 0x2b56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1363 0x1e32, 0x3620, 0x0644, 0x120e, 0x2a56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1364 0x1e34, 0x3622, 0x0646, 0x1210, 0x2a58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1365 0x1f34, 0x3722, 0x0746, 0x1310, 0x2b58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1366 0x2034, 0x3822, 0x0846, 0x1410, 0x2c58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1367 0x2424, 0x0012, 0x0c36, 0x1800, 0x3048, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1368 0x2524, 0x0112, 0x0d36, 0x1900, 0x3148, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1369 0x2624, 0x0212, 0x0e36, 0x1a00, 0x3248, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1370 0x2626, 0x0214, 0x0e38, 0x1a02, 0x324a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1371 0x2526, 0x0114, 0x0d38, 0x1902, 0x314a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1372 0x2426, 0x0014, 0x0c38, 0x1802, 0x304a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1373 0x2428, 0x0016, 0x0c3a, 0x1804, 0x304c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1374 0x2528, 0x0116, 0x0d3a, 0x1904, 0x314c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1375 0x2628, 0x0216, 0x0e3a, 0x1a04, 0x324c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1376 0x262a, 0x0218, 0x0e3c, 0x1a06, 0x324e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1377 0x252a, 0x0118, 0x0d3c, 0x1906, 0x314e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1378 0x242a, 0x0018, 0x0c3c, 0x1806, 0x304e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1379 0x242c, 0x001a, 0x0c3e, 0x1808, 0x3050, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1380 0x252c, 0x011a, 0x0d3e, 0x1908, 0x3150, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1381 0x262c, 0x021a, 0x0e3e, 0x1a08, 0x3250, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1382 0x262e, 0x021c, 0x0e40, 0x1a0a, 0x3252, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1383 0x252e, 0x011c, 0x0d40, 0x190a, 0x3152, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1384 0x242e, 0x001c, 0x0c40, 0x180a, 0x3052, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1385 0x2430, 0x001e, 0x0c42, 0x180c, 0x3054, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1386 0x2530, 0x011e, 0x0d42, 0x190c, 0x3154, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1387 0x2630, 0x021e, 0x0e42, 0x1a0c, 0x3254, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1388 0x2632, 0x0220, 0x0e44, 0x1a0e, 0x3256, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1389 0x2532, 0x0120, 0x0d44, 0x190e, 0x3156, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1390 0x2432, 0x0020, 0x0c44, 0x180e, 0x3056, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1391 0x2434, 0x0022, 0x0c46, 0x1810, 0x3058, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1392 0x2534, 0x0122, 0x0d46, 0x1910, 0x3158, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1393 0x2634, 0x0222, 0x0e46, 0x1a10, 0x3258, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1394 0x2a24, 0x0612, 0x1236, 0x1e00, 0x3648, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1395 0x2b24, 0x0712, 0x1336, 0x1f00, 0x3748, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1396 0x2c24, 0x0812, 0x1436, 0x2000, 0x3848, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1397 0x2c26, 0x0814, 0x1438, 0x2002, 0x384a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1398 0x2b26, 0x0714, 0x1338, 0x1f02, 0x374a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1399 0x2a26, 0x0614, 0x1238, 0x1e02, 0x364a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1400 0x2a28, 0x0616, 0x123a, 0x1e04, 0x364c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1401 0x2b28, 0x0716, 0x133a, 0x1f04, 0x374c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1402 0x2c28, 0x0816, 0x143a, 0x2004, 0x384c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1403 0x2c2a, 0x0818, 0x143c, 0x2006, 0x384e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1404 0x2b2a, 0x0718, 0x133c, 0x1f06, 0x374e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1405 0x2a2a, 0x0618, 0x123c, 0x1e06, 0x364e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1406 0x2a2c, 0x061a, 0x123e, 0x1e08, 0x3650, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1407 0x2b2c, 0x071a, 0x133e, 0x1f08, 0x3750, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1408 0x2c2c, 0x081a, 0x143e, 0x2008, 0x3850, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1409 0x2c2e, 0x081c, 0x1440, 0x200a, 0x3852, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1410 0x2b2e, 0x071c, 0x1340, 0x1f0a, 0x3752, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1411 0x2a2e, 0x061c, 0x1240, 0x1e0a, 0x3652, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1412 0x2a30, 0x061e, 0x1242, 0x1e0c, 0x3654, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1413 0x2b30, 0x071e, 0x1342, 0x1f0c, 0x3754, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1414 0x2c30, 0x081e, 0x1442, 0x200c, 0x3854, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1415 0x2c32, 0x0820, 0x1444, 0x200e, 0x3856, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1416 0x2b32, 0x0720, 0x1344, 0x1f0e, 0x3756, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1417 0x2a32, 0x0620, 0x1244, 0x1e0e, 0x3656, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1418 0x2a34, 0x0622, 0x1246, 0x1e10, 0x3658, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1419 0x2b34, 0x0722, 0x1346, 0x1f10, 0x3758, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1420 0x2c34, 0x0822, 0x1446, 0x2010, 0x3858, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1421 0x3024, 0x0c12, 0x1836, 0x2400, 0x0048, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1422 0x3124, 0x0d12, 0x1936, 0x2500, 0x0148, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1423 0x3224, 0x0e12, 0x1a36, 0x2600, 0x0248, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1424 0x3226, 0x0e14, 0x1a38, 0x2602, 0x024a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1425 0x3126, 0x0d14, 0x1938, 0x2502, 0x014a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1426 0x3026, 0x0c14, 0x1838, 0x2402, 0x004a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1427 0x3028, 0x0c16, 0x183a, 0x2404, 0x004c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1428 0x3128, 0x0d16, 0x193a, 0x2504, 0x014c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1429 0x3228, 0x0e16, 0x1a3a, 0x2604, 0x024c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1430 0x322a, 0x0e18, 0x1a3c, 0x2606, 0x024e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1431 0x312a, 0x0d18, 0x193c, 0x2506, 0x014e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1432 0x302a, 0x0c18, 0x183c, 0x2406, 0x004e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1433 0x302c, 0x0c1a, 0x183e, 0x2408, 0x0050, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1434 0x312c, 0x0d1a, 0x193e, 0x2508, 0x0150, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1435 0x322c, 0x0e1a, 0x1a3e, 0x2608, 0x0250, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1436 0x322e, 0x0e1c, 0x1a40, 0x260a, 0x0252, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1437 0x312e, 0x0d1c, 0x1940, 0x250a, 0x0152, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1438 0x302e, 0x0c1c, 0x1840, 0x240a, 0x0052, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1439 0x3030, 0x0c1e, 0x1842, 0x240c, 0x0054, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1440 0x3130, 0x0d1e, 0x1942, 0x250c, 0x0154, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1441 0x3230, 0x0e1e, 0x1a42, 0x260c, 0x0254, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1442 0x3232, 0x0e20, 0x1a44, 0x260e, 0x0256, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1443 0x3132, 0x0d20, 0x1944, 0x250e, 0x0156, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1444 0x3032, 0x0c20, 0x1844, 0x240e, 0x0056, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1445 0x3034, 0x0c22, 0x1846, 0x2410, 0x0058, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1446 0x3134, 0x0d22, 0x1946, 0x2510, 0x0158, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1447 0x3234, 0x0e22, 0x1a46, 0x2610, 0x0258, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1448 0x3624, 0x1212, 0x1e36, 0x2a00, 0x0648, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1449 0x3724, 0x1312, 0x1f36, 0x2b00, 0x0748, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1450 0x3824, 0x1412, 0x2036, 0x2c00, 0x0848, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1451 0x3826, 0x1414, 0x2038, 0x2c02, 0x084a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1452 0x3726, 0x1314, 0x1f38, 0x2b02, 0x074a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1453 0x3626, 0x1214, 0x1e38, 0x2a02, 0x064a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1454 0x3628, 0x1216, 0x1e3a, 0x2a04, 0x064c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1455 0x3728, 0x1316, 0x1f3a, 0x2b04, 0x074c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1456 0x3828, 0x1416, 0x203a, 0x2c04, 0x084c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1457 0x382a, 0x1418, 0x203c, 0x2c06, 0x084e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1458 0x372a, 0x1318, 0x1f3c, 0x2b06, 0x074e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1459 0x362a, 0x1218, 0x1e3c, 0x2a06, 0x064e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1460 0x362c, 0x121a, 0x1e3e, 0x2a08, 0x0650, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1461 0x372c, 0x131a, 0x1f3e, 0x2b08, 0x0750, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1462 0x382c, 0x141a, 0x203e, 0x2c08, 0x0850, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1463 0x382e, 0x141c, 0x2040, 0x2c0a, 0x0852, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1464 0x372e, 0x131c, 0x1f40, 0x2b0a, 0x0752, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1465 0x362e, 0x121c, 0x1e40, 0x2a0a, 0x0652, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1466 0x3630, 0x121e, 0x1e42, 0x2a0c, 0x0654, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1467 0x3730, 0x131e, 0x1f42, 0x2b0c, 0x0754, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1468 0x3830, 0x141e, 0x2042, 0x2c0c, 0x0854, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1469 0x3832, 0x1420, 0x2044, 0x2c0e, 0x0856, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1470 0x3732, 0x1320, 0x1f44, 0x2b0e, 0x0756, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1471 0x3632, 0x1220, 0x1e44, 0x2a0e, 0x0656, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1472 0x3634, 0x1222, 0x1e46, 0x2a10, 0x0658, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1473 0x3734, 0x1322, 0x1f46, 0x2b10, 0x0758, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1474 0x3834, 0x1422, 0x2046, 0x2c10, 0x0858, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1475 0x0024, 0x1812, 0x2436, 0x3000, 0x0c48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1476 0x0124, 0x1912, 0x2536, 0x3100, 0x0d48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1477 0x0224, 0x1a12, 0x2636, 0x3200, 0x0e48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1478 0x0226, 0x1a14, 0x2638, 0x3202, 0x0e4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1479 0x0126, 0x1914, 0x2538, 0x3102, 0x0d4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1480 0x0026, 0x1814, 0x2438, 0x3002, 0x0c4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1481 0x0028, 0x1816, 0x243a, 0x3004, 0x0c4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1482 0x0128, 0x1916, 0x253a, 0x3104, 0x0d4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1483 0x0228, 0x1a16, 0x263a, 0x3204, 0x0e4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1484 0x022a, 0x1a18, 0x263c, 0x3206, 0x0e4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1485 0x012a, 0x1918, 0x253c, 0x3106, 0x0d4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1486 0x002a, 0x1818, 0x243c, 0x3006, 0x0c4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1487 0x002c, 0x181a, 0x243e, 0x3008, 0x0c50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1488 0x012c, 0x191a, 0x253e, 0x3108, 0x0d50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1489 0x022c, 0x1a1a, 0x263e, 0x3208, 0x0e50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1490 0x022e, 0x1a1c, 0x2640, 0x320a, 0x0e52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1491 0x012e, 0x191c, 0x2540, 0x310a, 0x0d52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1492 0x002e, 0x181c, 0x2440, 0x300a, 0x0c52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1493 0x0030, 0x181e, 0x2442, 0x300c, 0x0c54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1494 0x0130, 0x191e, 0x2542, 0x310c, 0x0d54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1495 0x0230, 0x1a1e, 0x2642, 0x320c, 0x0e54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1496 0x0232, 0x1a20, 0x2644, 0x320e, 0x0e56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1497 0x0132, 0x1920, 0x2544, 0x310e, 0x0d56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1498 0x0032, 0x1820, 0x2444, 0x300e, 0x0c56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1499 0x0034, 0x1822, 0x2446, 0x3010, 0x0c58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1500 0x0134, 0x1922, 0x2546, 0x3110, 0x0d58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1501 0x0234, 0x1a22, 0x2646, 0x3210, 0x0e58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1502 0x0624, 0x1e12, 0x2a36, 0x3600, 0x1248, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1503 0x0724, 0x1f12, 0x2b36, 0x3700, 0x1348, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1504 0x0824, 0x2012, 0x2c36, 0x3800, 0x1448, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1505 0x0826, 0x2014, 0x2c38, 0x3802, 0x144a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1506 0x0726, 0x1f14, 0x2b38, 0x3702, 0x134a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1507 0x0626, 0x1e14, 0x2a38, 0x3602, 0x124a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1508 0x0628, 0x1e16, 0x2a3a, 0x3604, 0x124c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1509 0x0728, 0x1f16, 0x2b3a, 0x3704, 0x134c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1510 0x0828, 0x2016, 0x2c3a, 0x3804, 0x144c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1511 0x082a, 0x2018, 0x2c3c, 0x3806, 0x144e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1512 0x072a, 0x1f18, 0x2b3c, 0x3706, 0x134e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1513 0x062a, 0x1e18, 0x2a3c, 0x3606, 0x124e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1514 0x062c, 0x1e1a, 0x2a3e, 0x3608, 0x1250, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1515 0x072c, 0x1f1a, 0x2b3e, 0x3708, 0x1350, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1516 0x082c, 0x201a, 0x2c3e, 0x3808, 0x1450, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1517 0x082e, 0x201c, 0x2c40, 0x380a, 0x1452, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1518 0x072e, 0x1f1c, 0x2b40, 0x370a, 0x1352, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1519 0x062e, 0x1e1c, 0x2a40, 0x360a, 0x1252, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1520 0x0630, 0x1e1e, 0x2a42, 0x360c, 0x1254, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1521 0x0730, 0x1f1e, 0x2b42, 0x370c, 0x1354, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1522 0x0830, 0x201e, 0x2c42, 0x380c, 0x1454, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1523 0x0832, 0x2020, 0x2c44, 0x380e, 0x1456, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1524 0x0732, 0x1f20, 0x2b44, 0x370e, 0x1356, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1525 0x0632, 0x1e20, 0x2a44, 0x360e, 0x1256, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1526 0x0634, 0x1e22, 0x2a46, 0x3610, 0x1258, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1527 0x0734, 0x1f22, 0x2b46, 0x3710, 0x1358, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1528 0x0834, 0x2022, 0x2c46, 0x3810, 0x1458, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1529 0x0f24, 0x2712, 0x3336, 0x0300, 0x1b48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1530 0x1024, 0x2812, 0x3436, 0x0400, 0x1c48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1531 0x1124, 0x2912, 0x3536, 0x0500, 0x1d48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1532 0x1126, 0x2914, 0x3538, 0x0502, 0x1d4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1533 0x1026, 0x2814, 0x3438, 0x0402, 0x1c4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1534 0x0f26, 0x2714, 0x3338, 0x0302, 0x1b4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1535 0x0f28, 0x2716, 0x333a, 0x0304, 0x1b4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1536 0x1028, 0x2816, 0x343a, 0x0404, 0x1c4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1537 0x1128, 0x2916, 0x353a, 0x0504, 0x1d4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1538 0x112a, 0x2918, 0x353c, 0x0506, 0x1d4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1539 0x102a, 0x2818, 0x343c, 0x0406, 0x1c4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1540 0x0f2a, 0x2718, 0x333c, 0x0306, 0x1b4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1541 0x0f2c, 0x271a, 0x333e, 0x0308, 0x1b50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1542 0x102c, 0x281a, 0x343e, 0x0408, 0x1c50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1543 0x112c, 0x291a, 0x353e, 0x0508, 0x1d50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1544 0x112e, 0x291c, 0x3540, 0x050a, 0x1d52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1545 0x102e, 0x281c, 0x3440, 0x040a, 0x1c52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1546 0x0f2e, 0x271c, 0x3340, 0x030a, 0x1b52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1547 0x0f30, 0x271e, 0x3342, 0x030c, 0x1b54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1548 0x1030, 0x281e, 0x3442, 0x040c, 0x1c54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1549 0x1130, 0x291e, 0x3542, 0x050c, 0x1d54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1550 0x1132, 0x2920, 0x3544, 0x050e, 0x1d56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1551 0x1032, 0x2820, 0x3444, 0x040e, 0x1c56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1552 0x0f32, 0x2720, 0x3344, 0x030e, 0x1b56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1553 0x0f34, 0x2722, 0x3346, 0x0310, 0x1b58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1554 0x1034, 0x2822, 0x3446, 0x0410, 0x1c58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1555 0x1134, 0x2922, 0x3546, 0x0510, 0x1d58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1556 0x1524, 0x2d12, 0x3936, 0x0900, 0x2148, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1557 0x1624, 0x2e12, 0x3a36, 0x0a00, 0x2248, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1558 0x1724, 0x2f12, 0x3b36, 0x0b00, 0x2348, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1559 0x1726, 0x2f14, 0x3b38, 0x0b02, 0x234a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1560 0x1626, 0x2e14, 0x3a38, 0x0a02, 0x224a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1561 0x1526, 0x2d14, 0x3938, 0x0902, 0x214a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1562 0x1528, 0x2d16, 0x393a, 0x0904, 0x214c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1563 0x1628, 0x2e16, 0x3a3a, 0x0a04, 0x224c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1564 0x1728, 0x2f16, 0x3b3a, 0x0b04, 0x234c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1565 0x172a, 0x2f18, 0x3b3c, 0x0b06, 0x234e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1566 0x162a, 0x2e18, 0x3a3c, 0x0a06, 0x224e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1567 0x152a, 0x2d18, 0x393c, 0x0906, 0x214e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1568 0x152c, 0x2d1a, 0x393e, 0x0908, 0x2150, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1569 0x162c, 0x2e1a, 0x3a3e, 0x0a08, 0x2250, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1570 0x172c, 0x2f1a, 0x3b3e, 0x0b08, 0x2350, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1571 0x172e, 0x2f1c, 0x3b40, 0x0b0a, 0x2352, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1572 0x162e, 0x2e1c, 0x3a40, 0x0a0a, 0x2252, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1573 0x152e, 0x2d1c, 0x3940, 0x090a, 0x2152, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1574 0x1530, 0x2d1e, 0x3942, 0x090c, 0x2154, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1575 0x1630, 0x2e1e, 0x3a42, 0x0a0c, 0x2254, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1576 0x1730, 0x2f1e, 0x3b42, 0x0b0c, 0x2354, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1577 0x1732, 0x2f20, 0x3b44, 0x0b0e, 0x2356, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1578 0x1632, 0x2e20, 0x3a44, 0x0a0e, 0x2256, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1579 0x1532, 0x2d20, 0x3944, 0x090e, 0x2156, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1580 0x1534, 0x2d22, 0x3946, 0x0910, 0x2158, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1581 0x1634, 0x2e22, 0x3a46, 0x0a10, 0x2258, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1582 0x1734, 0x2f22, 0x3b46, 0x0b10, 0x2358, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1583 0x1b24, 0x3312, 0x0336, 0x0f00, 0x2748, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1584 0x1c24, 0x3412, 0x0436, 0x1000, 0x2848, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1585 0x1d24, 0x3512, 0x0536, 0x1100, 0x2948, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1586 0x1d26, 0x3514, 0x0538, 0x1102, 0x294a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1587 0x1c26, 0x3414, 0x0438, 0x1002, 0x284a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1588 0x1b26, 0x3314, 0x0338, 0x0f02, 0x274a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1589 0x1b28, 0x3316, 0x033a, 0x0f04, 0x274c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1590 0x1c28, 0x3416, 0x043a, 0x1004, 0x284c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1591 0x1d28, 0x3516, 0x053a, 0x1104, 0x294c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1592 0x1d2a, 0x3518, 0x053c, 0x1106, 0x294e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1593 0x1c2a, 0x3418, 0x043c, 0x1006, 0x284e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1594 0x1b2a, 0x3318, 0x033c, 0x0f06, 0x274e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1595 0x1b2c, 0x331a, 0x033e, 0x0f08, 0x2750, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1596 0x1c2c, 0x341a, 0x043e, 0x1008, 0x2850, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1597 0x1d2c, 0x351a, 0x053e, 0x1108, 0x2950, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1598 0x1d2e, 0x351c, 0x0540, 0x110a, 0x2952, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1599 0x1c2e, 0x341c, 0x0440, 0x100a, 0x2852, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1600 0x1b2e, 0x331c, 0x0340, 0x0f0a, 0x2752, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1601 0x1b30, 0x331e, 0x0342, 0x0f0c, 0x2754, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1602 0x1c30, 0x341e, 0x0442, 0x100c, 0x2854, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1603 0x1d30, 0x351e, 0x0542, 0x110c, 0x2954, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1604 0x1d32, 0x3520, 0x0544, 0x110e, 0x2956, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1605 0x1c32, 0x3420, 0x0444, 0x100e, 0x2856, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1606 0x1b32, 0x3320, 0x0344, 0x0f0e, 0x2756, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1607 0x1b34, 0x3322, 0x0346, 0x0f10, 0x2758, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1608 0x1c34, 0x3422, 0x0446, 0x1010, 0x2858, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1609 0x1d34, 0x3522, 0x0546, 0x1110, 0x2958, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1610 0x2124, 0x3912, 0x0936, 0x1500, 0x2d48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1611 0x2224, 0x3a12, 0x0a36, 0x1600, 0x2e48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1612 0x2324, 0x3b12, 0x0b36, 0x1700, 0x2f48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1613 0x2326, 0x3b14, 0x0b38, 0x1702, 0x2f4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1614 0x2226, 0x3a14, 0x0a38, 0x1602, 0x2e4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1615 0x2126, 0x3914, 0x0938, 0x1502, 0x2d4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1616 0x2128, 0x3916, 0x093a, 0x1504, 0x2d4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1617 0x2228, 0x3a16, 0x0a3a, 0x1604, 0x2e4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1618 0x2328, 0x3b16, 0x0b3a, 0x1704, 0x2f4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1619 0x232a, 0x3b18, 0x0b3c, 0x1706, 0x2f4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1620 0x222a, 0x3a18, 0x0a3c, 0x1606, 0x2e4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1621 0x212a, 0x3918, 0x093c, 0x1506, 0x2d4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1622 0x212c, 0x391a, 0x093e, 0x1508, 0x2d50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1623 0x222c, 0x3a1a, 0x0a3e, 0x1608, 0x2e50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1624 0x232c, 0x3b1a, 0x0b3e, 0x1708, 0x2f50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1625 0x232e, 0x3b1c, 0x0b40, 0x170a, 0x2f52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1626 0x222e, 0x3a1c, 0x0a40, 0x160a, 0x2e52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1627 0x212e, 0x391c, 0x0940, 0x150a, 0x2d52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1628 0x2130, 0x391e, 0x0942, 0x150c, 0x2d54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1629 0x2230, 0x3a1e, 0x0a42, 0x160c, 0x2e54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1630 0x2330, 0x3b1e, 0x0b42, 0x170c, 0x2f54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1631 0x2332, 0x3b20, 0x0b44, 0x170e, 0x2f56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1632 0x2232, 0x3a20, 0x0a44, 0x160e, 0x2e56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1633 0x2132, 0x3920, 0x0944, 0x150e, 0x2d56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1634 0x2134, 0x3922, 0x0946, 0x1510, 0x2d58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1635 0x2234, 0x3a22, 0x0a46, 0x1610, 0x2e58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1636 0x2334, 0x3b22, 0x0b46, 0x1710, 0x2f58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1637 0x2724, 0x0312, 0x0f36, 0x1b00, 0x3348, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1638 0x2824, 0x0412, 0x1036, 0x1c00, 0x3448, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1639 0x2924, 0x0512, 0x1136, 0x1d00, 0x3548, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1640 0x2926, 0x0514, 0x1138, 0x1d02, 0x354a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1641 0x2826, 0x0414, 0x1038, 0x1c02, 0x344a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1642 0x2726, 0x0314, 0x0f38, 0x1b02, 0x334a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1643 0x2728, 0x0316, 0x0f3a, 0x1b04, 0x334c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1644 0x2828, 0x0416, 0x103a, 0x1c04, 0x344c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1645 0x2928, 0x0516, 0x113a, 0x1d04, 0x354c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1646 0x292a, 0x0518, 0x113c, 0x1d06, 0x354e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1647 0x282a, 0x0418, 0x103c, 0x1c06, 0x344e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1648 0x272a, 0x0318, 0x0f3c, 0x1b06, 0x334e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1649 0x272c, 0x031a, 0x0f3e, 0x1b08, 0x3350, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1650 0x282c, 0x041a, 0x103e, 0x1c08, 0x3450, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1651 0x292c, 0x051a, 0x113e, 0x1d08, 0x3550, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1652 0x292e, 0x051c, 0x1140, 0x1d0a, 0x3552, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1653 0x282e, 0x041c, 0x1040, 0x1c0a, 0x3452, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1654 0x272e, 0x031c, 0x0f40, 0x1b0a, 0x3352, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1655 0x2730, 0x031e, 0x0f42, 0x1b0c, 0x3354, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1656 0x2830, 0x041e, 0x1042, 0x1c0c, 0x3454, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1657 0x2930, 0x051e, 0x1142, 0x1d0c, 0x3554, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1658 0x2932, 0x0520, 0x1144, 0x1d0e, 0x3556, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1659 0x2832, 0x0420, 0x1044, 0x1c0e, 0x3456, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1660 0x2732, 0x0320, 0x0f44, 0x1b0e, 0x3356, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1661 0x2734, 0x0322, 0x0f46, 0x1b10, 0x3358, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1662 0x2834, 0x0422, 0x1046, 0x1c10, 0x3458, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1663 0x2934, 0x0522, 0x1146, 0x1d10, 0x3558, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1664 0x2d24, 0x0912, 0x1536, 0x2100, 0x3948, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1665 0x2e24, 0x0a12, 0x1636, 0x2200, 0x3a48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1666 0x2f24, 0x0b12, 0x1736, 0x2300, 0x3b48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1667 0x2f26, 0x0b14, 0x1738, 0x2302, 0x3b4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1668 0x2e26, 0x0a14, 0x1638, 0x2202, 0x3a4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1669 0x2d26, 0x0914, 0x1538, 0x2102, 0x394a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1670 0x2d28, 0x0916, 0x153a, 0x2104, 0x394c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1671 0x2e28, 0x0a16, 0x163a, 0x2204, 0x3a4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1672 0x2f28, 0x0b16, 0x173a, 0x2304, 0x3b4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1673 0x2f2a, 0x0b18, 0x173c, 0x2306, 0x3b4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1674 0x2e2a, 0x0a18, 0x163c, 0x2206, 0x3a4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1675 0x2d2a, 0x0918, 0x153c, 0x2106, 0x394e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1676 0x2d2c, 0x091a, 0x153e, 0x2108, 0x3950, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1677 0x2e2c, 0x0a1a, 0x163e, 0x2208, 0x3a50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1678 0x2f2c, 0x0b1a, 0x173e, 0x2308, 0x3b50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1679 0x2f2e, 0x0b1c, 0x1740, 0x230a, 0x3b52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1680 0x2e2e, 0x0a1c, 0x1640, 0x220a, 0x3a52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1681 0x2d2e, 0x091c, 0x1540, 0x210a, 0x3952, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1682 0x2d30, 0x091e, 0x1542, 0x210c, 0x3954, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1683 0x2e30, 0x0a1e, 0x1642, 0x220c, 0x3a54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1684 0x2f30, 0x0b1e, 0x1742, 0x230c, 0x3b54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1685 0x2f32, 0x0b20, 0x1744, 0x230e, 0x3b56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1686 0x2e32, 0x0a20, 0x1644, 0x220e, 0x3a56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1687 0x2d32, 0x0920, 0x1544, 0x210e, 0x3956, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1688 0x2d34, 0x0922, 0x1546, 0x2110, 0x3958, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1689 0x2e34, 0x0a22, 0x1646, 0x2210, 0x3a58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1690 0x2f34, 0x0b22, 0x1746, 0x2310, 0x3b58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1691 0x3324, 0x0f12, 0x1b36, 0x2700, 0x0348, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1692 0x3424, 0x1012, 0x1c36, 0x2800, 0x0448, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1693 0x3524, 0x1112, 0x1d36, 0x2900, 0x0548, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1694 0x3526, 0x1114, 0x1d38, 0x2902, 0x054a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1695 0x3426, 0x1014, 0x1c38, 0x2802, 0x044a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1696 0x3326, 0x0f14, 0x1b38, 0x2702, 0x034a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1697 0x3328, 0x0f16, 0x1b3a, 0x2704, 0x034c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1698 0x3428, 0x1016, 0x1c3a, 0x2804, 0x044c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1699 0x3528, 0x1116, 0x1d3a, 0x2904, 0x054c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1700 0x352a, 0x1118, 0x1d3c, 0x2906, 0x054e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1701 0x342a, 0x1018, 0x1c3c, 0x2806, 0x044e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1702 0x332a, 0x0f18, 0x1b3c, 0x2706, 0x034e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1703 0x332c, 0x0f1a, 0x1b3e, 0x2708, 0x0350, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1704 0x342c, 0x101a, 0x1c3e, 0x2808, 0x0450, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1705 0x352c, 0x111a, 0x1d3e, 0x2908, 0x0550, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1706 0x352e, 0x111c, 0x1d40, 0x290a, 0x0552, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1707 0x342e, 0x101c, 0x1c40, 0x280a, 0x0452, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1708 0x332e, 0x0f1c, 0x1b40, 0x270a, 0x0352, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1709 0x3330, 0x0f1e, 0x1b42, 0x270c, 0x0354, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1710 0x3430, 0x101e, 0x1c42, 0x280c, 0x0454, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1711 0x3530, 0x111e, 0x1d42, 0x290c, 0x0554, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1712 0x3532, 0x1120, 0x1d44, 0x290e, 0x0556, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1713 0x3432, 0x1020, 0x1c44, 0x280e, 0x0456, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1714 0x3332, 0x0f20, 0x1b44, 0x270e, 0x0356, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1715 0x3334, 0x0f22, 0x1b46, 0x2710, 0x0358, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1716 0x3434, 0x1022, 0x1c46, 0x2810, 0x0458, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1717 0x3534, 0x1122, 0x1d46, 0x2910, 0x0558, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1718 0x3924, 0x1512, 0x2136, 0x2d00, 0x0948, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1719 0x3a24, 0x1612, 0x2236, 0x2e00, 0x0a48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1720 0x3b24, 0x1712, 0x2336, 0x2f00, 0x0b48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1721 0x3b26, 0x1714, 0x2338, 0x2f02, 0x0b4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1722 0x3a26, 0x1614, 0x2238, 0x2e02, 0x0a4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1723 0x3926, 0x1514, 0x2138, 0x2d02, 0x094a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1724 0x3928, 0x1516, 0x213a, 0x2d04, 0x094c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1725 0x3a28, 0x1616, 0x223a, 0x2e04, 0x0a4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1726 0x3b28, 0x1716, 0x233a, 0x2f04, 0x0b4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1727 0x3b2a, 0x1718, 0x233c, 0x2f06, 0x0b4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1728 0x3a2a, 0x1618, 0x223c, 0x2e06, 0x0a4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1729 0x392a, 0x1518, 0x213c, 0x2d06, 0x094e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1730 0x392c, 0x151a, 0x213e, 0x2d08, 0x0950, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1731 0x3a2c, 0x161a, 0x223e, 0x2e08, 0x0a50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1732 0x3b2c, 0x171a, 0x233e, 0x2f08, 0x0b50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1733 0x3b2e, 0x171c, 0x2340, 0x2f0a, 0x0b52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1734 0x3a2e, 0x161c, 0x2240, 0x2e0a, 0x0a52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1735 0x392e, 0x151c, 0x2140, 0x2d0a, 0x0952, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1736 0x3930, 0x151e, 0x2142, 0x2d0c, 0x0954, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1737 0x3a30, 0x161e, 0x2242, 0x2e0c, 0x0a54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1738 0x3b30, 0x171e, 0x2342, 0x2f0c, 0x0b54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1739 0x3b32, 0x1720, 0x2344, 0x2f0e, 0x0b56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1740 0x3a32, 0x1620, 0x2244, 0x2e0e, 0x0a56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1741 0x3932, 0x1520, 0x2144, 0x2d0e, 0x0956, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1742 0x3934, 0x1522, 0x2146, 0x2d10, 0x0958, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1743 0x3a34, 0x1622, 0x2246, 0x2e10, 0x0a58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1744 0x3b34, 0x1722, 0x2346, 0x2f10, 0x0b58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1745 0x0324, 0x1b12, 0x2736, 0x3300, 0x0f48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1746 0x0424, 0x1c12, 0x2836, 0x3400, 0x1048, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1747 0x0524, 0x1d12, 0x2936, 0x3500, 0x1148, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1748 0x0526, 0x1d14, 0x2938, 0x3502, 0x114a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1749 0x0426, 0x1c14, 0x2838, 0x3402, 0x104a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1750 0x0326, 0x1b14, 0x2738, 0x3302, 0x0f4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1751 0x0328, 0x1b16, 0x273a, 0x3304, 0x0f4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1752 0x0428, 0x1c16, 0x283a, 0x3404, 0x104c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1753 0x0528, 0x1d16, 0x293a, 0x3504, 0x114c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1754 0x052a, 0x1d18, 0x293c, 0x3506, 0x114e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1755 0x042a, 0x1c18, 0x283c, 0x3406, 0x104e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1756 0x032a, 0x1b18, 0x273c, 0x3306, 0x0f4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1757 0x032c, 0x1b1a, 0x273e, 0x3308, 0x0f50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1758 0x042c, 0x1c1a, 0x283e, 0x3408, 0x1050, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1759 0x052c, 0x1d1a, 0x293e, 0x3508, 0x1150, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1760 0x052e, 0x1d1c, 0x2940, 0x350a, 0x1152, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1761 0x042e, 0x1c1c, 0x2840, 0x340a, 0x1052, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1762 0x032e, 0x1b1c, 0x2740, 0x330a, 0x0f52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1763 0x0330, 0x1b1e, 0x2742, 0x330c, 0x0f54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1764 0x0430, 0x1c1e, 0x2842, 0x340c, 0x1054, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1765 0x0530, 0x1d1e, 0x2942, 0x350c, 0x1154, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1766 0x0532, 0x1d20, 0x2944, 0x350e, 0x1156, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1767 0x0432, 0x1c20, 0x2844, 0x340e, 0x1056, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1768 0x0332, 0x1b20, 0x2744, 0x330e, 0x0f56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1769 0x0334, 0x1b22, 0x2746, 0x3310, 0x0f58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1770 0x0434, 0x1c22, 0x2846, 0x3410, 0x1058, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1771 0x0534, 0x1d22, 0x2946, 0x3510, 0x1158, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1772 0x0924, 0x2112, 0x2d36, 0x3900, 0x1548, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1773 0x0a24, 0x2212, 0x2e36, 0x3a00, 0x1648, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1774 0x0b24, 0x2312, 0x2f36, 0x3b00, 0x1748, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1775 0x0b26, 0x2314, 0x2f38, 0x3b02, 0x174a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1776 0x0a26, 0x2214, 0x2e38, 0x3a02, 0x164a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1777 0x0926, 0x2114, 0x2d38, 0x3902, 0x154a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1778 0x0928, 0x2116, 0x2d3a, 0x3904, 0x154c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1779 0x0a28, 0x2216, 0x2e3a, 0x3a04, 0x164c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1780 0x0b28, 0x2316, 0x2f3a, 0x3b04, 0x174c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1781 0x0b2a, 0x2318, 0x2f3c, 0x3b06, 0x174e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1782 0x0a2a, 0x2218, 0x2e3c, 0x3a06, 0x164e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1783 0x092a, 0x2118, 0x2d3c, 0x3906, 0x154e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1784 0x092c, 0x211a, 0x2d3e, 0x3908, 0x1550, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1785 0x0a2c, 0x221a, 0x2e3e, 0x3a08, 0x1650, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1786 0x0b2c, 0x231a, 0x2f3e, 0x3b08, 0x1750, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1787 0x0b2e, 0x231c, 0x2f40, 0x3b0a, 0x1752, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1788 0x0a2e, 0x221c, 0x2e40, 0x3a0a, 0x1652, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1789 0x092e, 0x211c, 0x2d40, 0x390a, 0x1552, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1790 0x0930, 0x211e, 0x2d42, 0x390c, 0x1554, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1791 0x0a30, 0x221e, 0x2e42, 0x3a0c, 0x1654, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1792 0x0b30, 0x231e, 0x2f42, 0x3b0c, 0x1754, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1793 0x0b32, 0x2320, 0x2f44, 0x3b0e, 0x1756, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1794 0x0a32, 0x2220, 0x2e44, 0x3a0e, 0x1656, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1795 0x0932, 0x2120, 0x2d44, 0x390e, 0x1556, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1796 0x0934, 0x2122, 0x2d46, 0x3910, 0x1558, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1797 0x0a34, 0x2222, 0x2e46, 0x3a10, 0x1658, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1798 0x0b34, 0x2322, 0x2f46, 0x3b10, 0x1758, |
3167 | 1799 }; |
1800 | |
1801 /* 2 channels per frame, 12 DIF sequences per channel, | |
1802 27 video segments per DIF sequence, 5 macroblocks per video segment */ | |
1803 static const uint16_t dv_place_422_625[2*12*27*5] = { | |
7538
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1804 0x0c24, 0x2412, 0x3036, 0x0000, 0x1848, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1805 0x0d24, 0x2512, 0x3136, 0x0100, 0x1948, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1806 0x0e24, 0x2612, 0x3236, 0x0200, 0x1a48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1807 0x0e26, 0x2614, 0x3238, 0x0202, 0x1a4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1808 0x0d26, 0x2514, 0x3138, 0x0102, 0x194a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1809 0x0c26, 0x2414, 0x3038, 0x0002, 0x184a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1810 0x0c28, 0x2416, 0x303a, 0x0004, 0x184c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1811 0x0d28, 0x2516, 0x313a, 0x0104, 0x194c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1812 0x0e28, 0x2616, 0x323a, 0x0204, 0x1a4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1813 0x0e2a, 0x2618, 0x323c, 0x0206, 0x1a4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1814 0x0d2a, 0x2518, 0x313c, 0x0106, 0x194e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1815 0x0c2a, 0x2418, 0x303c, 0x0006, 0x184e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1816 0x0c2c, 0x241a, 0x303e, 0x0008, 0x1850, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1817 0x0d2c, 0x251a, 0x313e, 0x0108, 0x1950, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1818 0x0e2c, 0x261a, 0x323e, 0x0208, 0x1a50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1819 0x0e2e, 0x261c, 0x3240, 0x020a, 0x1a52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1820 0x0d2e, 0x251c, 0x3140, 0x010a, 0x1952, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1821 0x0c2e, 0x241c, 0x3040, 0x000a, 0x1852, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1822 0x0c30, 0x241e, 0x3042, 0x000c, 0x1854, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1823 0x0d30, 0x251e, 0x3142, 0x010c, 0x1954, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1824 0x0e30, 0x261e, 0x3242, 0x020c, 0x1a54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1825 0x0e32, 0x2620, 0x3244, 0x020e, 0x1a56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1826 0x0d32, 0x2520, 0x3144, 0x010e, 0x1956, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1827 0x0c32, 0x2420, 0x3044, 0x000e, 0x1856, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1828 0x0c34, 0x2422, 0x3046, 0x0010, 0x1858, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1829 0x0d34, 0x2522, 0x3146, 0x0110, 0x1958, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1830 0x0e34, 0x2622, 0x3246, 0x0210, 0x1a58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1831 0x1224, 0x2a12, 0x3636, 0x0600, 0x1e48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1832 0x1324, 0x2b12, 0x3736, 0x0700, 0x1f48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1833 0x1424, 0x2c12, 0x3836, 0x0800, 0x2048, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1834 0x1426, 0x2c14, 0x3838, 0x0802, 0x204a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1835 0x1326, 0x2b14, 0x3738, 0x0702, 0x1f4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1836 0x1226, 0x2a14, 0x3638, 0x0602, 0x1e4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1837 0x1228, 0x2a16, 0x363a, 0x0604, 0x1e4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1838 0x1328, 0x2b16, 0x373a, 0x0704, 0x1f4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1839 0x1428, 0x2c16, 0x383a, 0x0804, 0x204c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1840 0x142a, 0x2c18, 0x383c, 0x0806, 0x204e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1841 0x132a, 0x2b18, 0x373c, 0x0706, 0x1f4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1842 0x122a, 0x2a18, 0x363c, 0x0606, 0x1e4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1843 0x122c, 0x2a1a, 0x363e, 0x0608, 0x1e50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1844 0x132c, 0x2b1a, 0x373e, 0x0708, 0x1f50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1845 0x142c, 0x2c1a, 0x383e, 0x0808, 0x2050, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1846 0x142e, 0x2c1c, 0x3840, 0x080a, 0x2052, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1847 0x132e, 0x2b1c, 0x3740, 0x070a, 0x1f52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1848 0x122e, 0x2a1c, 0x3640, 0x060a, 0x1e52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1849 0x1230, 0x2a1e, 0x3642, 0x060c, 0x1e54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1850 0x1330, 0x2b1e, 0x3742, 0x070c, 0x1f54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1851 0x1430, 0x2c1e, 0x3842, 0x080c, 0x2054, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1852 0x1432, 0x2c20, 0x3844, 0x080e, 0x2056, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1853 0x1332, 0x2b20, 0x3744, 0x070e, 0x1f56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1854 0x1232, 0x2a20, 0x3644, 0x060e, 0x1e56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1855 0x1234, 0x2a22, 0x3646, 0x0610, 0x1e58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1856 0x1334, 0x2b22, 0x3746, 0x0710, 0x1f58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1857 0x1434, 0x2c22, 0x3846, 0x0810, 0x2058, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1858 0x1824, 0x3012, 0x3c36, 0x0c00, 0x2448, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1859 0x1924, 0x3112, 0x3d36, 0x0d00, 0x2548, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1860 0x1a24, 0x3212, 0x3e36, 0x0e00, 0x2648, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1861 0x1a26, 0x3214, 0x3e38, 0x0e02, 0x264a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1862 0x1926, 0x3114, 0x3d38, 0x0d02, 0x254a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1863 0x1826, 0x3014, 0x3c38, 0x0c02, 0x244a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1864 0x1828, 0x3016, 0x3c3a, 0x0c04, 0x244c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1865 0x1928, 0x3116, 0x3d3a, 0x0d04, 0x254c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1866 0x1a28, 0x3216, 0x3e3a, 0x0e04, 0x264c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1867 0x1a2a, 0x3218, 0x3e3c, 0x0e06, 0x264e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1868 0x192a, 0x3118, 0x3d3c, 0x0d06, 0x254e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1869 0x182a, 0x3018, 0x3c3c, 0x0c06, 0x244e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1870 0x182c, 0x301a, 0x3c3e, 0x0c08, 0x2450, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1871 0x192c, 0x311a, 0x3d3e, 0x0d08, 0x2550, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1872 0x1a2c, 0x321a, 0x3e3e, 0x0e08, 0x2650, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1873 0x1a2e, 0x321c, 0x3e40, 0x0e0a, 0x2652, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1874 0x192e, 0x311c, 0x3d40, 0x0d0a, 0x2552, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1875 0x182e, 0x301c, 0x3c40, 0x0c0a, 0x2452, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1876 0x1830, 0x301e, 0x3c42, 0x0c0c, 0x2454, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1877 0x1930, 0x311e, 0x3d42, 0x0d0c, 0x2554, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1878 0x1a30, 0x321e, 0x3e42, 0x0e0c, 0x2654, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1879 0x1a32, 0x3220, 0x3e44, 0x0e0e, 0x2656, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1880 0x1932, 0x3120, 0x3d44, 0x0d0e, 0x2556, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1881 0x1832, 0x3020, 0x3c44, 0x0c0e, 0x2456, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1882 0x1834, 0x3022, 0x3c46, 0x0c10, 0x2458, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1883 0x1934, 0x3122, 0x3d46, 0x0d10, 0x2558, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1884 0x1a34, 0x3222, 0x3e46, 0x0e10, 0x2658, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1885 0x1e24, 0x3612, 0x4236, 0x1200, 0x2a48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1886 0x1f24, 0x3712, 0x4336, 0x1300, 0x2b48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1887 0x2024, 0x3812, 0x4436, 0x1400, 0x2c48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1888 0x2026, 0x3814, 0x4438, 0x1402, 0x2c4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1889 0x1f26, 0x3714, 0x4338, 0x1302, 0x2b4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1890 0x1e26, 0x3614, 0x4238, 0x1202, 0x2a4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1891 0x1e28, 0x3616, 0x423a, 0x1204, 0x2a4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1892 0x1f28, 0x3716, 0x433a, 0x1304, 0x2b4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1893 0x2028, 0x3816, 0x443a, 0x1404, 0x2c4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1894 0x202a, 0x3818, 0x443c, 0x1406, 0x2c4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1895 0x1f2a, 0x3718, 0x433c, 0x1306, 0x2b4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1896 0x1e2a, 0x3618, 0x423c, 0x1206, 0x2a4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1897 0x1e2c, 0x361a, 0x423e, 0x1208, 0x2a50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1898 0x1f2c, 0x371a, 0x433e, 0x1308, 0x2b50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1899 0x202c, 0x381a, 0x443e, 0x1408, 0x2c50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1900 0x202e, 0x381c, 0x4440, 0x140a, 0x2c52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1901 0x1f2e, 0x371c, 0x4340, 0x130a, 0x2b52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1902 0x1e2e, 0x361c, 0x4240, 0x120a, 0x2a52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1903 0x1e30, 0x361e, 0x4242, 0x120c, 0x2a54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1904 0x1f30, 0x371e, 0x4342, 0x130c, 0x2b54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1905 0x2030, 0x381e, 0x4442, 0x140c, 0x2c54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1906 0x2032, 0x3820, 0x4444, 0x140e, 0x2c56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1907 0x1f32, 0x3720, 0x4344, 0x130e, 0x2b56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1908 0x1e32, 0x3620, 0x4244, 0x120e, 0x2a56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1909 0x1e34, 0x3622, 0x4246, 0x1210, 0x2a58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1910 0x1f34, 0x3722, 0x4346, 0x1310, 0x2b58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1911 0x2034, 0x3822, 0x4446, 0x1410, 0x2c58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1912 0x2424, 0x3c12, 0x0036, 0x1800, 0x3048, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1913 0x2524, 0x3d12, 0x0136, 0x1900, 0x3148, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1914 0x2624, 0x3e12, 0x0236, 0x1a00, 0x3248, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1915 0x2626, 0x3e14, 0x0238, 0x1a02, 0x324a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1916 0x2526, 0x3d14, 0x0138, 0x1902, 0x314a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1917 0x2426, 0x3c14, 0x0038, 0x1802, 0x304a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1918 0x2428, 0x3c16, 0x003a, 0x1804, 0x304c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1919 0x2528, 0x3d16, 0x013a, 0x1904, 0x314c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1920 0x2628, 0x3e16, 0x023a, 0x1a04, 0x324c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1921 0x262a, 0x3e18, 0x023c, 0x1a06, 0x324e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1922 0x252a, 0x3d18, 0x013c, 0x1906, 0x314e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1923 0x242a, 0x3c18, 0x003c, 0x1806, 0x304e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1924 0x242c, 0x3c1a, 0x003e, 0x1808, 0x3050, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1925 0x252c, 0x3d1a, 0x013e, 0x1908, 0x3150, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1926 0x262c, 0x3e1a, 0x023e, 0x1a08, 0x3250, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1927 0x262e, 0x3e1c, 0x0240, 0x1a0a, 0x3252, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1928 0x252e, 0x3d1c, 0x0140, 0x190a, 0x3152, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1929 0x242e, 0x3c1c, 0x0040, 0x180a, 0x3052, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1930 0x2430, 0x3c1e, 0x0042, 0x180c, 0x3054, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1931 0x2530, 0x3d1e, 0x0142, 0x190c, 0x3154, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1932 0x2630, 0x3e1e, 0x0242, 0x1a0c, 0x3254, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1933 0x2632, 0x3e20, 0x0244, 0x1a0e, 0x3256, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1934 0x2532, 0x3d20, 0x0144, 0x190e, 0x3156, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1935 0x2432, 0x3c20, 0x0044, 0x180e, 0x3056, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1936 0x2434, 0x3c22, 0x0046, 0x1810, 0x3058, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1937 0x2534, 0x3d22, 0x0146, 0x1910, 0x3158, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1938 0x2634, 0x3e22, 0x0246, 0x1a10, 0x3258, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1939 0x2a24, 0x4212, 0x0636, 0x1e00, 0x3648, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1940 0x2b24, 0x4312, 0x0736, 0x1f00, 0x3748, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1941 0x2c24, 0x4412, 0x0836, 0x2000, 0x3848, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1942 0x2c26, 0x4414, 0x0838, 0x2002, 0x384a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1943 0x2b26, 0x4314, 0x0738, 0x1f02, 0x374a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1944 0x2a26, 0x4214, 0x0638, 0x1e02, 0x364a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1945 0x2a28, 0x4216, 0x063a, 0x1e04, 0x364c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1946 0x2b28, 0x4316, 0x073a, 0x1f04, 0x374c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1947 0x2c28, 0x4416, 0x083a, 0x2004, 0x384c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1948 0x2c2a, 0x4418, 0x083c, 0x2006, 0x384e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1949 0x2b2a, 0x4318, 0x073c, 0x1f06, 0x374e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1950 0x2a2a, 0x4218, 0x063c, 0x1e06, 0x364e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1951 0x2a2c, 0x421a, 0x063e, 0x1e08, 0x3650, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1952 0x2b2c, 0x431a, 0x073e, 0x1f08, 0x3750, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1953 0x2c2c, 0x441a, 0x083e, 0x2008, 0x3850, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1954 0x2c2e, 0x441c, 0x0840, 0x200a, 0x3852, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1955 0x2b2e, 0x431c, 0x0740, 0x1f0a, 0x3752, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1956 0x2a2e, 0x421c, 0x0640, 0x1e0a, 0x3652, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1957 0x2a30, 0x421e, 0x0642, 0x1e0c, 0x3654, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1958 0x2b30, 0x431e, 0x0742, 0x1f0c, 0x3754, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1959 0x2c30, 0x441e, 0x0842, 0x200c, 0x3854, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1960 0x2c32, 0x4420, 0x0844, 0x200e, 0x3856, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1961 0x2b32, 0x4320, 0x0744, 0x1f0e, 0x3756, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1962 0x2a32, 0x4220, 0x0644, 0x1e0e, 0x3656, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1963 0x2a34, 0x4222, 0x0646, 0x1e10, 0x3658, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1964 0x2b34, 0x4322, 0x0746, 0x1f10, 0x3758, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1965 0x2c34, 0x4422, 0x0846, 0x2010, 0x3858, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1966 0x3024, 0x0012, 0x0c36, 0x2400, 0x3c48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1967 0x3124, 0x0112, 0x0d36, 0x2500, 0x3d48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1968 0x3224, 0x0212, 0x0e36, 0x2600, 0x3e48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1969 0x3226, 0x0214, 0x0e38, 0x2602, 0x3e4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1970 0x3126, 0x0114, 0x0d38, 0x2502, 0x3d4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1971 0x3026, 0x0014, 0x0c38, 0x2402, 0x3c4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1972 0x3028, 0x0016, 0x0c3a, 0x2404, 0x3c4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1973 0x3128, 0x0116, 0x0d3a, 0x2504, 0x3d4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1974 0x3228, 0x0216, 0x0e3a, 0x2604, 0x3e4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1975 0x322a, 0x0218, 0x0e3c, 0x2606, 0x3e4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1976 0x312a, 0x0118, 0x0d3c, 0x2506, 0x3d4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1977 0x302a, 0x0018, 0x0c3c, 0x2406, 0x3c4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1978 0x302c, 0x001a, 0x0c3e, 0x2408, 0x3c50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1979 0x312c, 0x011a, 0x0d3e, 0x2508, 0x3d50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1980 0x322c, 0x021a, 0x0e3e, 0x2608, 0x3e50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1981 0x322e, 0x021c, 0x0e40, 0x260a, 0x3e52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1982 0x312e, 0x011c, 0x0d40, 0x250a, 0x3d52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1983 0x302e, 0x001c, 0x0c40, 0x240a, 0x3c52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1984 0x3030, 0x001e, 0x0c42, 0x240c, 0x3c54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1985 0x3130, 0x011e, 0x0d42, 0x250c, 0x3d54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1986 0x3230, 0x021e, 0x0e42, 0x260c, 0x3e54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1987 0x3232, 0x0220, 0x0e44, 0x260e, 0x3e56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1988 0x3132, 0x0120, 0x0d44, 0x250e, 0x3d56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1989 0x3032, 0x0020, 0x0c44, 0x240e, 0x3c56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1990 0x3034, 0x0022, 0x0c46, 0x2410, 0x3c58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1991 0x3134, 0x0122, 0x0d46, 0x2510, 0x3d58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1992 0x3234, 0x0222, 0x0e46, 0x2610, 0x3e58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1993 0x3624, 0x0612, 0x1236, 0x2a00, 0x4248, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1994 0x3724, 0x0712, 0x1336, 0x2b00, 0x4348, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1995 0x3824, 0x0812, 0x1436, 0x2c00, 0x4448, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1996 0x3826, 0x0814, 0x1438, 0x2c02, 0x444a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1997 0x3726, 0x0714, 0x1338, 0x2b02, 0x434a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1998 0x3626, 0x0614, 0x1238, 0x2a02, 0x424a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
1999 0x3628, 0x0616, 0x123a, 0x2a04, 0x424c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2000 0x3728, 0x0716, 0x133a, 0x2b04, 0x434c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2001 0x3828, 0x0816, 0x143a, 0x2c04, 0x444c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2002 0x382a, 0x0818, 0x143c, 0x2c06, 0x444e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2003 0x372a, 0x0718, 0x133c, 0x2b06, 0x434e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2004 0x362a, 0x0618, 0x123c, 0x2a06, 0x424e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2005 0x362c, 0x061a, 0x123e, 0x2a08, 0x4250, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2006 0x372c, 0x071a, 0x133e, 0x2b08, 0x4350, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2007 0x382c, 0x081a, 0x143e, 0x2c08, 0x4450, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2008 0x382e, 0x081c, 0x1440, 0x2c0a, 0x4452, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2009 0x372e, 0x071c, 0x1340, 0x2b0a, 0x4352, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2010 0x362e, 0x061c, 0x1240, 0x2a0a, 0x4252, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2011 0x3630, 0x061e, 0x1242, 0x2a0c, 0x4254, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2012 0x3730, 0x071e, 0x1342, 0x2b0c, 0x4354, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2013 0x3830, 0x081e, 0x1442, 0x2c0c, 0x4454, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2014 0x3832, 0x0820, 0x1444, 0x2c0e, 0x4456, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2015 0x3732, 0x0720, 0x1344, 0x2b0e, 0x4356, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2016 0x3632, 0x0620, 0x1244, 0x2a0e, 0x4256, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2017 0x3634, 0x0622, 0x1246, 0x2a10, 0x4258, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2018 0x3734, 0x0722, 0x1346, 0x2b10, 0x4358, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2019 0x3834, 0x0822, 0x1446, 0x2c10, 0x4458, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2020 0x3c24, 0x0c12, 0x1836, 0x3000, 0x0048, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2021 0x3d24, 0x0d12, 0x1936, 0x3100, 0x0148, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2022 0x3e24, 0x0e12, 0x1a36, 0x3200, 0x0248, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2023 0x3e26, 0x0e14, 0x1a38, 0x3202, 0x024a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2024 0x3d26, 0x0d14, 0x1938, 0x3102, 0x014a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2025 0x3c26, 0x0c14, 0x1838, 0x3002, 0x004a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2026 0x3c28, 0x0c16, 0x183a, 0x3004, 0x004c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2027 0x3d28, 0x0d16, 0x193a, 0x3104, 0x014c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2028 0x3e28, 0x0e16, 0x1a3a, 0x3204, 0x024c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2029 0x3e2a, 0x0e18, 0x1a3c, 0x3206, 0x024e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2030 0x3d2a, 0x0d18, 0x193c, 0x3106, 0x014e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2031 0x3c2a, 0x0c18, 0x183c, 0x3006, 0x004e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2032 0x3c2c, 0x0c1a, 0x183e, 0x3008, 0x0050, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2033 0x3d2c, 0x0d1a, 0x193e, 0x3108, 0x0150, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2034 0x3e2c, 0x0e1a, 0x1a3e, 0x3208, 0x0250, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2035 0x3e2e, 0x0e1c, 0x1a40, 0x320a, 0x0252, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2036 0x3d2e, 0x0d1c, 0x1940, 0x310a, 0x0152, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2037 0x3c2e, 0x0c1c, 0x1840, 0x300a, 0x0052, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2038 0x3c30, 0x0c1e, 0x1842, 0x300c, 0x0054, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2039 0x3d30, 0x0d1e, 0x1942, 0x310c, 0x0154, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2040 0x3e30, 0x0e1e, 0x1a42, 0x320c, 0x0254, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2041 0x3e32, 0x0e20, 0x1a44, 0x320e, 0x0256, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2042 0x3d32, 0x0d20, 0x1944, 0x310e, 0x0156, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2043 0x3c32, 0x0c20, 0x1844, 0x300e, 0x0056, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2044 0x3c34, 0x0c22, 0x1846, 0x3010, 0x0058, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2045 0x3d34, 0x0d22, 0x1946, 0x3110, 0x0158, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2046 0x3e34, 0x0e22, 0x1a46, 0x3210, 0x0258, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2047 0x4224, 0x1212, 0x1e36, 0x3600, 0x0648, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2048 0x4324, 0x1312, 0x1f36, 0x3700, 0x0748, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2049 0x4424, 0x1412, 0x2036, 0x3800, 0x0848, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2050 0x4426, 0x1414, 0x2038, 0x3802, 0x084a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2051 0x4326, 0x1314, 0x1f38, 0x3702, 0x074a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2052 0x4226, 0x1214, 0x1e38, 0x3602, 0x064a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2053 0x4228, 0x1216, 0x1e3a, 0x3604, 0x064c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2054 0x4328, 0x1316, 0x1f3a, 0x3704, 0x074c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2055 0x4428, 0x1416, 0x203a, 0x3804, 0x084c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2056 0x442a, 0x1418, 0x203c, 0x3806, 0x084e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2057 0x432a, 0x1318, 0x1f3c, 0x3706, 0x074e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2058 0x422a, 0x1218, 0x1e3c, 0x3606, 0x064e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2059 0x422c, 0x121a, 0x1e3e, 0x3608, 0x0650, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2060 0x432c, 0x131a, 0x1f3e, 0x3708, 0x0750, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2061 0x442c, 0x141a, 0x203e, 0x3808, 0x0850, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2062 0x442e, 0x141c, 0x2040, 0x380a, 0x0852, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2063 0x432e, 0x131c, 0x1f40, 0x370a, 0x0752, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2064 0x422e, 0x121c, 0x1e40, 0x360a, 0x0652, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2065 0x4230, 0x121e, 0x1e42, 0x360c, 0x0654, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2066 0x4330, 0x131e, 0x1f42, 0x370c, 0x0754, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2067 0x4430, 0x141e, 0x2042, 0x380c, 0x0854, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2068 0x4432, 0x1420, 0x2044, 0x380e, 0x0856, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2069 0x4332, 0x1320, 0x1f44, 0x370e, 0x0756, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2070 0x4232, 0x1220, 0x1e44, 0x360e, 0x0656, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2071 0x4234, 0x1222, 0x1e46, 0x3610, 0x0658, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2072 0x4334, 0x1322, 0x1f46, 0x3710, 0x0758, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2073 0x4434, 0x1422, 0x2046, 0x3810, 0x0858, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2074 0x0024, 0x1812, 0x2436, 0x3c00, 0x0c48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2075 0x0124, 0x1912, 0x2536, 0x3d00, 0x0d48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2076 0x0224, 0x1a12, 0x2636, 0x3e00, 0x0e48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2077 0x0226, 0x1a14, 0x2638, 0x3e02, 0x0e4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2078 0x0126, 0x1914, 0x2538, 0x3d02, 0x0d4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2079 0x0026, 0x1814, 0x2438, 0x3c02, 0x0c4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2080 0x0028, 0x1816, 0x243a, 0x3c04, 0x0c4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2081 0x0128, 0x1916, 0x253a, 0x3d04, 0x0d4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2082 0x0228, 0x1a16, 0x263a, 0x3e04, 0x0e4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2083 0x022a, 0x1a18, 0x263c, 0x3e06, 0x0e4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2084 0x012a, 0x1918, 0x253c, 0x3d06, 0x0d4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2085 0x002a, 0x1818, 0x243c, 0x3c06, 0x0c4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2086 0x002c, 0x181a, 0x243e, 0x3c08, 0x0c50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2087 0x012c, 0x191a, 0x253e, 0x3d08, 0x0d50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2088 0x022c, 0x1a1a, 0x263e, 0x3e08, 0x0e50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2089 0x022e, 0x1a1c, 0x2640, 0x3e0a, 0x0e52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2090 0x012e, 0x191c, 0x2540, 0x3d0a, 0x0d52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2091 0x002e, 0x181c, 0x2440, 0x3c0a, 0x0c52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2092 0x0030, 0x181e, 0x2442, 0x3c0c, 0x0c54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2093 0x0130, 0x191e, 0x2542, 0x3d0c, 0x0d54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2094 0x0230, 0x1a1e, 0x2642, 0x3e0c, 0x0e54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2095 0x0232, 0x1a20, 0x2644, 0x3e0e, 0x0e56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2096 0x0132, 0x1920, 0x2544, 0x3d0e, 0x0d56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2097 0x0032, 0x1820, 0x2444, 0x3c0e, 0x0c56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2098 0x0034, 0x1822, 0x2446, 0x3c10, 0x0c58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2099 0x0134, 0x1922, 0x2546, 0x3d10, 0x0d58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2100 0x0234, 0x1a22, 0x2646, 0x3e10, 0x0e58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2101 0x0624, 0x1e12, 0x2a36, 0x4200, 0x1248, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2102 0x0724, 0x1f12, 0x2b36, 0x4300, 0x1348, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2103 0x0824, 0x2012, 0x2c36, 0x4400, 0x1448, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2104 0x0826, 0x2014, 0x2c38, 0x4402, 0x144a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2105 0x0726, 0x1f14, 0x2b38, 0x4302, 0x134a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2106 0x0626, 0x1e14, 0x2a38, 0x4202, 0x124a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2107 0x0628, 0x1e16, 0x2a3a, 0x4204, 0x124c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2108 0x0728, 0x1f16, 0x2b3a, 0x4304, 0x134c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2109 0x0828, 0x2016, 0x2c3a, 0x4404, 0x144c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2110 0x082a, 0x2018, 0x2c3c, 0x4406, 0x144e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2111 0x072a, 0x1f18, 0x2b3c, 0x4306, 0x134e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2112 0x062a, 0x1e18, 0x2a3c, 0x4206, 0x124e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2113 0x062c, 0x1e1a, 0x2a3e, 0x4208, 0x1250, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2114 0x072c, 0x1f1a, 0x2b3e, 0x4308, 0x1350, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2115 0x082c, 0x201a, 0x2c3e, 0x4408, 0x1450, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2116 0x082e, 0x201c, 0x2c40, 0x440a, 0x1452, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2117 0x072e, 0x1f1c, 0x2b40, 0x430a, 0x1352, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2118 0x062e, 0x1e1c, 0x2a40, 0x420a, 0x1252, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2119 0x0630, 0x1e1e, 0x2a42, 0x420c, 0x1254, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2120 0x0730, 0x1f1e, 0x2b42, 0x430c, 0x1354, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2121 0x0830, 0x201e, 0x2c42, 0x440c, 0x1454, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2122 0x0832, 0x2020, 0x2c44, 0x440e, 0x1456, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2123 0x0732, 0x1f20, 0x2b44, 0x430e, 0x1356, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2124 0x0632, 0x1e20, 0x2a44, 0x420e, 0x1256, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2125 0x0634, 0x1e22, 0x2a46, 0x4210, 0x1258, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2126 0x0734, 0x1f22, 0x2b46, 0x4310, 0x1358, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2127 0x0834, 0x2022, 0x2c46, 0x4410, 0x1458, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2128 0x0f24, 0x2712, 0x3336, 0x0300, 0x1b48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2129 0x1024, 0x2812, 0x3436, 0x0400, 0x1c48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2130 0x1124, 0x2912, 0x3536, 0x0500, 0x1d48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2131 0x1126, 0x2914, 0x3538, 0x0502, 0x1d4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2132 0x1026, 0x2814, 0x3438, 0x0402, 0x1c4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2133 0x0f26, 0x2714, 0x3338, 0x0302, 0x1b4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2134 0x0f28, 0x2716, 0x333a, 0x0304, 0x1b4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2135 0x1028, 0x2816, 0x343a, 0x0404, 0x1c4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2136 0x1128, 0x2916, 0x353a, 0x0504, 0x1d4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2137 0x112a, 0x2918, 0x353c, 0x0506, 0x1d4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2138 0x102a, 0x2818, 0x343c, 0x0406, 0x1c4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2139 0x0f2a, 0x2718, 0x333c, 0x0306, 0x1b4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2140 0x0f2c, 0x271a, 0x333e, 0x0308, 0x1b50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2141 0x102c, 0x281a, 0x343e, 0x0408, 0x1c50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2142 0x112c, 0x291a, 0x353e, 0x0508, 0x1d50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2143 0x112e, 0x291c, 0x3540, 0x050a, 0x1d52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2144 0x102e, 0x281c, 0x3440, 0x040a, 0x1c52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2145 0x0f2e, 0x271c, 0x3340, 0x030a, 0x1b52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2146 0x0f30, 0x271e, 0x3342, 0x030c, 0x1b54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2147 0x1030, 0x281e, 0x3442, 0x040c, 0x1c54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2148 0x1130, 0x291e, 0x3542, 0x050c, 0x1d54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2149 0x1132, 0x2920, 0x3544, 0x050e, 0x1d56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2150 0x1032, 0x2820, 0x3444, 0x040e, 0x1c56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2151 0x0f32, 0x2720, 0x3344, 0x030e, 0x1b56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2152 0x0f34, 0x2722, 0x3346, 0x0310, 0x1b58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2153 0x1034, 0x2822, 0x3446, 0x0410, 0x1c58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2154 0x1134, 0x2922, 0x3546, 0x0510, 0x1d58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2155 0x1524, 0x2d12, 0x3936, 0x0900, 0x2148, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2156 0x1624, 0x2e12, 0x3a36, 0x0a00, 0x2248, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2157 0x1724, 0x2f12, 0x3b36, 0x0b00, 0x2348, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2158 0x1726, 0x2f14, 0x3b38, 0x0b02, 0x234a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2159 0x1626, 0x2e14, 0x3a38, 0x0a02, 0x224a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2160 0x1526, 0x2d14, 0x3938, 0x0902, 0x214a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2161 0x1528, 0x2d16, 0x393a, 0x0904, 0x214c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2162 0x1628, 0x2e16, 0x3a3a, 0x0a04, 0x224c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2163 0x1728, 0x2f16, 0x3b3a, 0x0b04, 0x234c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2164 0x172a, 0x2f18, 0x3b3c, 0x0b06, 0x234e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2165 0x162a, 0x2e18, 0x3a3c, 0x0a06, 0x224e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2166 0x152a, 0x2d18, 0x393c, 0x0906, 0x214e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2167 0x152c, 0x2d1a, 0x393e, 0x0908, 0x2150, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2168 0x162c, 0x2e1a, 0x3a3e, 0x0a08, 0x2250, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2169 0x172c, 0x2f1a, 0x3b3e, 0x0b08, 0x2350, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2170 0x172e, 0x2f1c, 0x3b40, 0x0b0a, 0x2352, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2171 0x162e, 0x2e1c, 0x3a40, 0x0a0a, 0x2252, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2172 0x152e, 0x2d1c, 0x3940, 0x090a, 0x2152, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2173 0x1530, 0x2d1e, 0x3942, 0x090c, 0x2154, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2174 0x1630, 0x2e1e, 0x3a42, 0x0a0c, 0x2254, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2175 0x1730, 0x2f1e, 0x3b42, 0x0b0c, 0x2354, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2176 0x1732, 0x2f20, 0x3b44, 0x0b0e, 0x2356, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2177 0x1632, 0x2e20, 0x3a44, 0x0a0e, 0x2256, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2178 0x1532, 0x2d20, 0x3944, 0x090e, 0x2156, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2179 0x1534, 0x2d22, 0x3946, 0x0910, 0x2158, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2180 0x1634, 0x2e22, 0x3a46, 0x0a10, 0x2258, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2181 0x1734, 0x2f22, 0x3b46, 0x0b10, 0x2358, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2182 0x1b24, 0x3312, 0x3f36, 0x0f00, 0x2748, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2183 0x1c24, 0x3412, 0x4036, 0x1000, 0x2848, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2184 0x1d24, 0x3512, 0x4136, 0x1100, 0x2948, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2185 0x1d26, 0x3514, 0x4138, 0x1102, 0x294a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2186 0x1c26, 0x3414, 0x4038, 0x1002, 0x284a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2187 0x1b26, 0x3314, 0x3f38, 0x0f02, 0x274a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2188 0x1b28, 0x3316, 0x3f3a, 0x0f04, 0x274c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2189 0x1c28, 0x3416, 0x403a, 0x1004, 0x284c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2190 0x1d28, 0x3516, 0x413a, 0x1104, 0x294c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2191 0x1d2a, 0x3518, 0x413c, 0x1106, 0x294e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2192 0x1c2a, 0x3418, 0x403c, 0x1006, 0x284e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2193 0x1b2a, 0x3318, 0x3f3c, 0x0f06, 0x274e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2194 0x1b2c, 0x331a, 0x3f3e, 0x0f08, 0x2750, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2195 0x1c2c, 0x341a, 0x403e, 0x1008, 0x2850, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2196 0x1d2c, 0x351a, 0x413e, 0x1108, 0x2950, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2197 0x1d2e, 0x351c, 0x4140, 0x110a, 0x2952, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2198 0x1c2e, 0x341c, 0x4040, 0x100a, 0x2852, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2199 0x1b2e, 0x331c, 0x3f40, 0x0f0a, 0x2752, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2200 0x1b30, 0x331e, 0x3f42, 0x0f0c, 0x2754, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2201 0x1c30, 0x341e, 0x4042, 0x100c, 0x2854, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2202 0x1d30, 0x351e, 0x4142, 0x110c, 0x2954, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2203 0x1d32, 0x3520, 0x4144, 0x110e, 0x2956, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2204 0x1c32, 0x3420, 0x4044, 0x100e, 0x2856, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2205 0x1b32, 0x3320, 0x3f44, 0x0f0e, 0x2756, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2206 0x1b34, 0x3322, 0x3f46, 0x0f10, 0x2758, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2207 0x1c34, 0x3422, 0x4046, 0x1010, 0x2858, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2208 0x1d34, 0x3522, 0x4146, 0x1110, 0x2958, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2209 0x2124, 0x3912, 0x4536, 0x1500, 0x2d48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2210 0x2224, 0x3a12, 0x4636, 0x1600, 0x2e48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2211 0x2324, 0x3b12, 0x4736, 0x1700, 0x2f48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2212 0x2326, 0x3b14, 0x4738, 0x1702, 0x2f4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2213 0x2226, 0x3a14, 0x4638, 0x1602, 0x2e4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2214 0x2126, 0x3914, 0x4538, 0x1502, 0x2d4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2215 0x2128, 0x3916, 0x453a, 0x1504, 0x2d4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2216 0x2228, 0x3a16, 0x463a, 0x1604, 0x2e4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2217 0x2328, 0x3b16, 0x473a, 0x1704, 0x2f4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2218 0x232a, 0x3b18, 0x473c, 0x1706, 0x2f4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2219 0x222a, 0x3a18, 0x463c, 0x1606, 0x2e4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2220 0x212a, 0x3918, 0x453c, 0x1506, 0x2d4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2221 0x212c, 0x391a, 0x453e, 0x1508, 0x2d50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2222 0x222c, 0x3a1a, 0x463e, 0x1608, 0x2e50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2223 0x232c, 0x3b1a, 0x473e, 0x1708, 0x2f50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2224 0x232e, 0x3b1c, 0x4740, 0x170a, 0x2f52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2225 0x222e, 0x3a1c, 0x4640, 0x160a, 0x2e52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2226 0x212e, 0x391c, 0x4540, 0x150a, 0x2d52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2227 0x2130, 0x391e, 0x4542, 0x150c, 0x2d54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2228 0x2230, 0x3a1e, 0x4642, 0x160c, 0x2e54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2229 0x2330, 0x3b1e, 0x4742, 0x170c, 0x2f54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2230 0x2332, 0x3b20, 0x4744, 0x170e, 0x2f56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2231 0x2232, 0x3a20, 0x4644, 0x160e, 0x2e56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2232 0x2132, 0x3920, 0x4544, 0x150e, 0x2d56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2233 0x2134, 0x3922, 0x4546, 0x1510, 0x2d58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2234 0x2234, 0x3a22, 0x4646, 0x1610, 0x2e58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2235 0x2334, 0x3b22, 0x4746, 0x1710, 0x2f58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2236 0x2724, 0x3f12, 0x0336, 0x1b00, 0x3348, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2237 0x2824, 0x4012, 0x0436, 0x1c00, 0x3448, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2238 0x2924, 0x4112, 0x0536, 0x1d00, 0x3548, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2239 0x2926, 0x4114, 0x0538, 0x1d02, 0x354a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2240 0x2826, 0x4014, 0x0438, 0x1c02, 0x344a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2241 0x2726, 0x3f14, 0x0338, 0x1b02, 0x334a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2242 0x2728, 0x3f16, 0x033a, 0x1b04, 0x334c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2243 0x2828, 0x4016, 0x043a, 0x1c04, 0x344c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2244 0x2928, 0x4116, 0x053a, 0x1d04, 0x354c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2245 0x292a, 0x4118, 0x053c, 0x1d06, 0x354e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2246 0x282a, 0x4018, 0x043c, 0x1c06, 0x344e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2247 0x272a, 0x3f18, 0x033c, 0x1b06, 0x334e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2248 0x272c, 0x3f1a, 0x033e, 0x1b08, 0x3350, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2249 0x282c, 0x401a, 0x043e, 0x1c08, 0x3450, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2250 0x292c, 0x411a, 0x053e, 0x1d08, 0x3550, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2251 0x292e, 0x411c, 0x0540, 0x1d0a, 0x3552, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2252 0x282e, 0x401c, 0x0440, 0x1c0a, 0x3452, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2253 0x272e, 0x3f1c, 0x0340, 0x1b0a, 0x3352, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2254 0x2730, 0x3f1e, 0x0342, 0x1b0c, 0x3354, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2255 0x2830, 0x401e, 0x0442, 0x1c0c, 0x3454, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2256 0x2930, 0x411e, 0x0542, 0x1d0c, 0x3554, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2257 0x2932, 0x4120, 0x0544, 0x1d0e, 0x3556, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2258 0x2832, 0x4020, 0x0444, 0x1c0e, 0x3456, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2259 0x2732, 0x3f20, 0x0344, 0x1b0e, 0x3356, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2260 0x2734, 0x3f22, 0x0346, 0x1b10, 0x3358, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2261 0x2834, 0x4022, 0x0446, 0x1c10, 0x3458, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2262 0x2934, 0x4122, 0x0546, 0x1d10, 0x3558, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2263 0x2d24, 0x4512, 0x0936, 0x2100, 0x3948, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2264 0x2e24, 0x4612, 0x0a36, 0x2200, 0x3a48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2265 0x2f24, 0x4712, 0x0b36, 0x2300, 0x3b48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2266 0x2f26, 0x4714, 0x0b38, 0x2302, 0x3b4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2267 0x2e26, 0x4614, 0x0a38, 0x2202, 0x3a4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2268 0x2d26, 0x4514, 0x0938, 0x2102, 0x394a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2269 0x2d28, 0x4516, 0x093a, 0x2104, 0x394c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2270 0x2e28, 0x4616, 0x0a3a, 0x2204, 0x3a4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2271 0x2f28, 0x4716, 0x0b3a, 0x2304, 0x3b4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2272 0x2f2a, 0x4718, 0x0b3c, 0x2306, 0x3b4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2273 0x2e2a, 0x4618, 0x0a3c, 0x2206, 0x3a4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2274 0x2d2a, 0x4518, 0x093c, 0x2106, 0x394e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2275 0x2d2c, 0x451a, 0x093e, 0x2108, 0x3950, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2276 0x2e2c, 0x461a, 0x0a3e, 0x2208, 0x3a50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2277 0x2f2c, 0x471a, 0x0b3e, 0x2308, 0x3b50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2278 0x2f2e, 0x471c, 0x0b40, 0x230a, 0x3b52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2279 0x2e2e, 0x461c, 0x0a40, 0x220a, 0x3a52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2280 0x2d2e, 0x451c, 0x0940, 0x210a, 0x3952, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2281 0x2d30, 0x451e, 0x0942, 0x210c, 0x3954, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2282 0x2e30, 0x461e, 0x0a42, 0x220c, 0x3a54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2283 0x2f30, 0x471e, 0x0b42, 0x230c, 0x3b54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2284 0x2f32, 0x4720, 0x0b44, 0x230e, 0x3b56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2285 0x2e32, 0x4620, 0x0a44, 0x220e, 0x3a56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2286 0x2d32, 0x4520, 0x0944, 0x210e, 0x3956, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2287 0x2d34, 0x4522, 0x0946, 0x2110, 0x3958, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2288 0x2e34, 0x4622, 0x0a46, 0x2210, 0x3a58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2289 0x2f34, 0x4722, 0x0b46, 0x2310, 0x3b58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2290 0x3324, 0x0312, 0x0f36, 0x2700, 0x3f48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2291 0x3424, 0x0412, 0x1036, 0x2800, 0x4048, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2292 0x3524, 0x0512, 0x1136, 0x2900, 0x4148, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2293 0x3526, 0x0514, 0x1138, 0x2902, 0x414a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2294 0x3426, 0x0414, 0x1038, 0x2802, 0x404a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2295 0x3326, 0x0314, 0x0f38, 0x2702, 0x3f4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2296 0x3328, 0x0316, 0x0f3a, 0x2704, 0x3f4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2297 0x3428, 0x0416, 0x103a, 0x2804, 0x404c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2298 0x3528, 0x0516, 0x113a, 0x2904, 0x414c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2299 0x352a, 0x0518, 0x113c, 0x2906, 0x414e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2300 0x342a, 0x0418, 0x103c, 0x2806, 0x404e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2301 0x332a, 0x0318, 0x0f3c, 0x2706, 0x3f4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2302 0x332c, 0x031a, 0x0f3e, 0x2708, 0x3f50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2303 0x342c, 0x041a, 0x103e, 0x2808, 0x4050, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2304 0x352c, 0x051a, 0x113e, 0x2908, 0x4150, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2305 0x352e, 0x051c, 0x1140, 0x290a, 0x4152, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2306 0x342e, 0x041c, 0x1040, 0x280a, 0x4052, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2307 0x332e, 0x031c, 0x0f40, 0x270a, 0x3f52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2308 0x3330, 0x031e, 0x0f42, 0x270c, 0x3f54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2309 0x3430, 0x041e, 0x1042, 0x280c, 0x4054, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2310 0x3530, 0x051e, 0x1142, 0x290c, 0x4154, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2311 0x3532, 0x0520, 0x1144, 0x290e, 0x4156, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2312 0x3432, 0x0420, 0x1044, 0x280e, 0x4056, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2313 0x3332, 0x0320, 0x0f44, 0x270e, 0x3f56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2314 0x3334, 0x0322, 0x0f46, 0x2710, 0x3f58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2315 0x3434, 0x0422, 0x1046, 0x2810, 0x4058, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2316 0x3534, 0x0522, 0x1146, 0x2910, 0x4158, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2317 0x3924, 0x0912, 0x1536, 0x2d00, 0x4548, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2318 0x3a24, 0x0a12, 0x1636, 0x2e00, 0x4648, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2319 0x3b24, 0x0b12, 0x1736, 0x2f00, 0x4748, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2320 0x3b26, 0x0b14, 0x1738, 0x2f02, 0x474a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2321 0x3a26, 0x0a14, 0x1638, 0x2e02, 0x464a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2322 0x3926, 0x0914, 0x1538, 0x2d02, 0x454a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2323 0x3928, 0x0916, 0x153a, 0x2d04, 0x454c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2324 0x3a28, 0x0a16, 0x163a, 0x2e04, 0x464c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2325 0x3b28, 0x0b16, 0x173a, 0x2f04, 0x474c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2326 0x3b2a, 0x0b18, 0x173c, 0x2f06, 0x474e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2327 0x3a2a, 0x0a18, 0x163c, 0x2e06, 0x464e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2328 0x392a, 0x0918, 0x153c, 0x2d06, 0x454e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2329 0x392c, 0x091a, 0x153e, 0x2d08, 0x4550, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2330 0x3a2c, 0x0a1a, 0x163e, 0x2e08, 0x4650, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2331 0x3b2c, 0x0b1a, 0x173e, 0x2f08, 0x4750, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2332 0x3b2e, 0x0b1c, 0x1740, 0x2f0a, 0x4752, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2333 0x3a2e, 0x0a1c, 0x1640, 0x2e0a, 0x4652, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2334 0x392e, 0x091c, 0x1540, 0x2d0a, 0x4552, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2335 0x3930, 0x091e, 0x1542, 0x2d0c, 0x4554, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2336 0x3a30, 0x0a1e, 0x1642, 0x2e0c, 0x4654, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2337 0x3b30, 0x0b1e, 0x1742, 0x2f0c, 0x4754, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2338 0x3b32, 0x0b20, 0x1744, 0x2f0e, 0x4756, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2339 0x3a32, 0x0a20, 0x1644, 0x2e0e, 0x4656, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2340 0x3932, 0x0920, 0x1544, 0x2d0e, 0x4556, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2341 0x3934, 0x0922, 0x1546, 0x2d10, 0x4558, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2342 0x3a34, 0x0a22, 0x1646, 0x2e10, 0x4658, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2343 0x3b34, 0x0b22, 0x1746, 0x2f10, 0x4758, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2344 0x3f24, 0x0f12, 0x1b36, 0x3300, 0x0348, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2345 0x4024, 0x1012, 0x1c36, 0x3400, 0x0448, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2346 0x4124, 0x1112, 0x1d36, 0x3500, 0x0548, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2347 0x4126, 0x1114, 0x1d38, 0x3502, 0x054a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2348 0x4026, 0x1014, 0x1c38, 0x3402, 0x044a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2349 0x3f26, 0x0f14, 0x1b38, 0x3302, 0x034a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2350 0x3f28, 0x0f16, 0x1b3a, 0x3304, 0x034c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2351 0x4028, 0x1016, 0x1c3a, 0x3404, 0x044c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2352 0x4128, 0x1116, 0x1d3a, 0x3504, 0x054c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2353 0x412a, 0x1118, 0x1d3c, 0x3506, 0x054e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2354 0x402a, 0x1018, 0x1c3c, 0x3406, 0x044e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2355 0x3f2a, 0x0f18, 0x1b3c, 0x3306, 0x034e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2356 0x3f2c, 0x0f1a, 0x1b3e, 0x3308, 0x0350, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2357 0x402c, 0x101a, 0x1c3e, 0x3408, 0x0450, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2358 0x412c, 0x111a, 0x1d3e, 0x3508, 0x0550, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2359 0x412e, 0x111c, 0x1d40, 0x350a, 0x0552, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2360 0x402e, 0x101c, 0x1c40, 0x340a, 0x0452, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2361 0x3f2e, 0x0f1c, 0x1b40, 0x330a, 0x0352, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2362 0x3f30, 0x0f1e, 0x1b42, 0x330c, 0x0354, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2363 0x4030, 0x101e, 0x1c42, 0x340c, 0x0454, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2364 0x4130, 0x111e, 0x1d42, 0x350c, 0x0554, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2365 0x4132, 0x1120, 0x1d44, 0x350e, 0x0556, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2366 0x4032, 0x1020, 0x1c44, 0x340e, 0x0456, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2367 0x3f32, 0x0f20, 0x1b44, 0x330e, 0x0356, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2368 0x3f34, 0x0f22, 0x1b46, 0x3310, 0x0358, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2369 0x4034, 0x1022, 0x1c46, 0x3410, 0x0458, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2370 0x4134, 0x1122, 0x1d46, 0x3510, 0x0558, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2371 0x4524, 0x1512, 0x2136, 0x3900, 0x0948, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2372 0x4624, 0x1612, 0x2236, 0x3a00, 0x0a48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2373 0x4724, 0x1712, 0x2336, 0x3b00, 0x0b48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2374 0x4726, 0x1714, 0x2338, 0x3b02, 0x0b4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2375 0x4626, 0x1614, 0x2238, 0x3a02, 0x0a4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2376 0x4526, 0x1514, 0x2138, 0x3902, 0x094a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2377 0x4528, 0x1516, 0x213a, 0x3904, 0x094c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2378 0x4628, 0x1616, 0x223a, 0x3a04, 0x0a4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2379 0x4728, 0x1716, 0x233a, 0x3b04, 0x0b4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2380 0x472a, 0x1718, 0x233c, 0x3b06, 0x0b4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2381 0x462a, 0x1618, 0x223c, 0x3a06, 0x0a4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2382 0x452a, 0x1518, 0x213c, 0x3906, 0x094e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2383 0x452c, 0x151a, 0x213e, 0x3908, 0x0950, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2384 0x462c, 0x161a, 0x223e, 0x3a08, 0x0a50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2385 0x472c, 0x171a, 0x233e, 0x3b08, 0x0b50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2386 0x472e, 0x171c, 0x2340, 0x3b0a, 0x0b52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2387 0x462e, 0x161c, 0x2240, 0x3a0a, 0x0a52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2388 0x452e, 0x151c, 0x2140, 0x390a, 0x0952, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2389 0x4530, 0x151e, 0x2142, 0x390c, 0x0954, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2390 0x4630, 0x161e, 0x2242, 0x3a0c, 0x0a54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2391 0x4730, 0x171e, 0x2342, 0x3b0c, 0x0b54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2392 0x4732, 0x1720, 0x2344, 0x3b0e, 0x0b56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2393 0x4632, 0x1620, 0x2244, 0x3a0e, 0x0a56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2394 0x4532, 0x1520, 0x2144, 0x390e, 0x0956, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2395 0x4534, 0x1522, 0x2146, 0x3910, 0x0958, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2396 0x4634, 0x1622, 0x2246, 0x3a10, 0x0a58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2397 0x4734, 0x1722, 0x2346, 0x3b10, 0x0b58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2398 0x0324, 0x1b12, 0x2736, 0x3f00, 0x0f48, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2399 0x0424, 0x1c12, 0x2836, 0x4000, 0x1048, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2400 0x0524, 0x1d12, 0x2936, 0x4100, 0x1148, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2401 0x0526, 0x1d14, 0x2938, 0x4102, 0x114a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2402 0x0426, 0x1c14, 0x2838, 0x4002, 0x104a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2403 0x0326, 0x1b14, 0x2738, 0x3f02, 0x0f4a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2404 0x0328, 0x1b16, 0x273a, 0x3f04, 0x0f4c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2405 0x0428, 0x1c16, 0x283a, 0x4004, 0x104c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2406 0x0528, 0x1d16, 0x293a, 0x4104, 0x114c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2407 0x052a, 0x1d18, 0x293c, 0x4106, 0x114e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2408 0x042a, 0x1c18, 0x283c, 0x4006, 0x104e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2409 0x032a, 0x1b18, 0x273c, 0x3f06, 0x0f4e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2410 0x032c, 0x1b1a, 0x273e, 0x3f08, 0x0f50, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2411 0x042c, 0x1c1a, 0x283e, 0x4008, 0x1050, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2412 0x052c, 0x1d1a, 0x293e, 0x4108, 0x1150, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2413 0x052e, 0x1d1c, 0x2940, 0x410a, 0x1152, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2414 0x042e, 0x1c1c, 0x2840, 0x400a, 0x1052, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2415 0x032e, 0x1b1c, 0x2740, 0x3f0a, 0x0f52, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2416 0x0330, 0x1b1e, 0x2742, 0x3f0c, 0x0f54, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2417 0x0430, 0x1c1e, 0x2842, 0x400c, 0x1054, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2418 0x0530, 0x1d1e, 0x2942, 0x410c, 0x1154, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2419 0x0532, 0x1d20, 0x2944, 0x410e, 0x1156, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2420 0x0432, 0x1c20, 0x2844, 0x400e, 0x1056, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2421 0x0332, 0x1b20, 0x2744, 0x3f0e, 0x0f56, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2422 0x0334, 0x1b22, 0x2746, 0x3f10, 0x0f58, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2423 0x0434, 0x1c22, 0x2846, 0x4010, 0x1058, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2424 0x0534, 0x1d22, 0x2946, 0x4110, 0x1158, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2425 0x0924, 0x2112, 0x2d36, 0x4500, 0x1548, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2426 0x0a24, 0x2212, 0x2e36, 0x4600, 0x1648, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2427 0x0b24, 0x2312, 0x2f36, 0x4700, 0x1748, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2428 0x0b26, 0x2314, 0x2f38, 0x4702, 0x174a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2429 0x0a26, 0x2214, 0x2e38, 0x4602, 0x164a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2430 0x0926, 0x2114, 0x2d38, 0x4502, 0x154a, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2431 0x0928, 0x2116, 0x2d3a, 0x4504, 0x154c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2432 0x0a28, 0x2216, 0x2e3a, 0x4604, 0x164c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2433 0x0b28, 0x2316, 0x2f3a, 0x4704, 0x174c, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2434 0x0b2a, 0x2318, 0x2f3c, 0x4706, 0x174e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2435 0x0a2a, 0x2218, 0x2e3c, 0x4606, 0x164e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2436 0x092a, 0x2118, 0x2d3c, 0x4506, 0x154e, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2437 0x092c, 0x211a, 0x2d3e, 0x4508, 0x1550, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2438 0x0a2c, 0x221a, 0x2e3e, 0x4608, 0x1650, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2439 0x0b2c, 0x231a, 0x2f3e, 0x4708, 0x1750, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2440 0x0b2e, 0x231c, 0x2f40, 0x470a, 0x1752, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2441 0x0a2e, 0x221c, 0x2e40, 0x460a, 0x1652, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2442 0x092e, 0x211c, 0x2d40, 0x450a, 0x1552, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2443 0x0930, 0x211e, 0x2d42, 0x450c, 0x1554, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2444 0x0a30, 0x221e, 0x2e42, 0x460c, 0x1654, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2445 0x0b30, 0x231e, 0x2f42, 0x470c, 0x1754, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2446 0x0b32, 0x2320, 0x2f44, 0x470e, 0x1756, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2447 0x0a32, 0x2220, 0x2e44, 0x460e, 0x1656, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2448 0x0932, 0x2120, 0x2d44, 0x450e, 0x1556, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2449 0x0934, 0x2122, 0x2d46, 0x4510, 0x1558, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2450 0x0a34, 0x2222, 0x2e46, 0x4610, 0x1658, |
06c291f42d5f
Fixing the units in DV50 tables (both coordinates are
romansh
parents:
7536
diff
changeset
|
2451 0x0b34, 0x2322, 0x2f46, 0x4710, 0x1758, |
3167 | 2452 }; |
2453 | |
7715
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2454 static const uint16_t dv_place_1080i60[4*10*27*5] = { |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2455 0x2048, 0x5024, 0x686c, 0x0800, 0x3890, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2456 0x3848, 0x6824, 0x086c, 0x2000, 0x5090, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2457 0x5048, 0x0824, 0x206c, 0x3800, 0x6890, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2458 0x6848, 0x2024, 0x386c, 0x5000, 0x0890, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2459 0x0848, 0x3824, 0x506c, 0x6800, 0x2090, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2460 0x204a, 0x5026, 0x686e, 0x0802, 0x3892, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2461 0x384a, 0x6826, 0x086e, 0x2002, 0x5092, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2462 0x504a, 0x0826, 0x206e, 0x3802, 0x6892, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2463 0x684a, 0x2026, 0x386e, 0x5002, 0x0892, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2464 0x084a, 0x3826, 0x506e, 0x6802, 0x2092, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2465 0x204c, 0x5028, 0x6870, 0x0804, 0x3894, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2466 0x384c, 0x6828, 0x0870, 0x2004, 0x5094, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2467 0x504c, 0x0828, 0x2070, 0x3804, 0x6894, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2468 0x684c, 0x2028, 0x3870, 0x5004, 0x0894, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2469 0x084c, 0x3828, 0x5070, 0x6804, 0x2094, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2470 0x204e, 0x502a, 0x6872, 0x0806, 0x3896, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2471 0x384e, 0x682a, 0x0872, 0x2006, 0x5096, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2472 0x504e, 0x082a, 0x2072, 0x3806, 0x6896, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2473 0x684e, 0x202a, 0x3872, 0x5006, 0x0896, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2474 0x084e, 0x382a, 0x5072, 0x6806, 0x2096, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2475 0x2050, 0x502c, 0x6874, 0x0808, 0x3898, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2476 0x3850, 0x682c, 0x0874, 0x2008, 0x5098, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2477 0x5050, 0x082c, 0x2074, 0x3808, 0x6898, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2478 0x6850, 0x202c, 0x3874, 0x5008, 0x0898, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2479 0x0850, 0x382c, 0x5074, 0x6808, 0x2098, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2480 0x2052, 0x502e, 0x6876, 0x080a, 0x389a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2481 0x3852, 0x682e, 0x0876, 0x200a, 0x509a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2482 0x5052, 0x082e, 0x2076, 0x380a, 0x689a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2483 0x6852, 0x202e, 0x3876, 0x500a, 0x089a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2484 0x0852, 0x382e, 0x5076, 0x680a, 0x209a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2485 0x2054, 0x5030, 0x6878, 0x080c, 0x389c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2486 0x3854, 0x6830, 0x0878, 0x200c, 0x509c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2487 0x5054, 0x0830, 0x2078, 0x380c, 0x689c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2488 0x6854, 0x2030, 0x3878, 0x500c, 0x089c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2489 0x0854, 0x3830, 0x5078, 0x680c, 0x209c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2490 0x2056, 0x5032, 0x687a, 0x080e, 0x389e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2491 0x3856, 0x6832, 0x087a, 0x200e, 0x509e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2492 0x5056, 0x0832, 0x207a, 0x380e, 0x689e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2493 0x6856, 0x2032, 0x387a, 0x500e, 0x089e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2494 0x0856, 0x3832, 0x507a, 0x680e, 0x209e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2495 0x2058, 0x5034, 0x687c, 0x0810, 0x0078, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2496 0x3858, 0x6834, 0x087c, 0x2010, 0x8214, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2497 0x5058, 0x0834, 0x207c, 0x3810, 0x8264, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2498 0x6858, 0x2034, 0x387c, 0x5010, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2499 0x0858, 0x3834, 0x507c, 0x6810, 0x003c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2500 0x2448, 0x5424, 0x6c6c, 0x0c00, 0x3c90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2501 0x3c48, 0x6c24, 0x0c6c, 0x2400, 0x5490, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2502 0x5448, 0x0c24, 0x246c, 0x3c00, 0x6c90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2503 0x6c48, 0x2424, 0x3c6c, 0x5400, 0x0c90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2504 0x0c48, 0x3c24, 0x546c, 0x6c00, 0x2490, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2505 0x244a, 0x5426, 0x6c6e, 0x0c02, 0x3c92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2506 0x3c4a, 0x6c26, 0x0c6e, 0x2402, 0x5492, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2507 0x544a, 0x0c26, 0x246e, 0x3c02, 0x6c92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2508 0x6c4a, 0x2426, 0x3c6e, 0x5402, 0x0c92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2509 0x0c4a, 0x3c26, 0x546e, 0x6c02, 0x2492, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2510 0x244c, 0x5428, 0x6c70, 0x0c04, 0x3c94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2511 0x3c4c, 0x6c28, 0x0c70, 0x2404, 0x5494, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2512 0x544c, 0x0c28, 0x2470, 0x3c04, 0x6c94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2513 0x6c4c, 0x2428, 0x3c70, 0x5404, 0x0c94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2514 0x0c4c, 0x3c28, 0x5470, 0x6c04, 0x2494, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2515 0x244e, 0x542a, 0x6c72, 0x0c06, 0x3c96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2516 0x3c4e, 0x6c2a, 0x0c72, 0x2406, 0x5496, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2517 0x544e, 0x0c2a, 0x2472, 0x3c06, 0x6c96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2518 0x6c4e, 0x242a, 0x3c72, 0x5406, 0x0c96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2519 0x0c4e, 0x3c2a, 0x5472, 0x6c06, 0x2496, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2520 0x2450, 0x542c, 0x6c74, 0x0c08, 0x3c98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2521 0x3c50, 0x6c2c, 0x0c74, 0x2408, 0x5498, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2522 0x5450, 0x0c2c, 0x2474, 0x3c08, 0x6c98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2523 0x6c50, 0x242c, 0x3c74, 0x5408, 0x0c98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2524 0x0c50, 0x3c2c, 0x5474, 0x6c08, 0x2498, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2525 0x2452, 0x542e, 0x6c76, 0x0c0a, 0x3c9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2526 0x3c52, 0x6c2e, 0x0c76, 0x240a, 0x549a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2527 0x5452, 0x0c2e, 0x2476, 0x3c0a, 0x6c9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2528 0x6c52, 0x242e, 0x3c76, 0x540a, 0x0c9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2529 0x0c52, 0x3c2e, 0x5476, 0x6c0a, 0x249a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2530 0x2454, 0x5430, 0x6c78, 0x0c0c, 0x3c9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2531 0x3c54, 0x6c30, 0x0c78, 0x240c, 0x549c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2532 0x5454, 0x0c30, 0x2478, 0x3c0c, 0x6c9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2533 0x6c54, 0x2430, 0x3c78, 0x540c, 0x0c9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2534 0x0c54, 0x3c30, 0x5478, 0x6c0c, 0x249c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2535 0x2456, 0x5432, 0x6c7a, 0x0c0e, 0x3c9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2536 0x3c56, 0x6c32, 0x0c7a, 0x240e, 0x549e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2537 0x5456, 0x0c32, 0x247a, 0x3c0e, 0x6c9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2538 0x6c56, 0x2432, 0x3c7a, 0x540e, 0x0c9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2539 0x0c56, 0x3c32, 0x547a, 0x6c0e, 0x249e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2540 0x2458, 0x5434, 0x6c7c, 0x0c10, 0x0478, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2541 0x3c58, 0x6c34, 0x0c7c, 0x2410, 0x8028, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2542 0x5458, 0x0c34, 0x247c, 0x3c10, 0x8078, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2543 0x6c58, 0x2434, 0x3c7c, 0x5410, 0x0400, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2544 0x0c58, 0x3c34, 0x547c, 0x6c10, 0x043c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2545 0x2848, 0x5824, 0x706c, 0x1000, 0x4090, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2546 0x4048, 0x7024, 0x106c, 0x2800, 0x5890, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2547 0x5848, 0x1024, 0x286c, 0x4000, 0x7090, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2548 0x7048, 0x2824, 0x406c, 0x5800, 0x1090, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2549 0x1048, 0x4024, 0x586c, 0x7000, 0x2890, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2550 0x284a, 0x5826, 0x706e, 0x1002, 0x4092, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2551 0x404a, 0x7026, 0x106e, 0x2802, 0x5892, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2552 0x584a, 0x1026, 0x286e, 0x4002, 0x7092, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2553 0x704a, 0x2826, 0x406e, 0x5802, 0x1092, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2554 0x104a, 0x4026, 0x586e, 0x7002, 0x2892, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2555 0x284c, 0x5828, 0x7070, 0x1004, 0x4094, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2556 0x404c, 0x7028, 0x1070, 0x2804, 0x5894, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2557 0x584c, 0x1028, 0x2870, 0x4004, 0x7094, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2558 0x704c, 0x2828, 0x4070, 0x5804, 0x1094, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2559 0x104c, 0x4028, 0x5870, 0x7004, 0x2894, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2560 0x284e, 0x582a, 0x7072, 0x1006, 0x4096, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2561 0x404e, 0x702a, 0x1072, 0x2806, 0x5896, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2562 0x584e, 0x102a, 0x2872, 0x4006, 0x7096, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2563 0x704e, 0x282a, 0x4072, 0x5806, 0x1096, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2564 0x104e, 0x402a, 0x5872, 0x7006, 0x2896, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2565 0x2850, 0x582c, 0x7074, 0x1008, 0x4098, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2566 0x4050, 0x702c, 0x1074, 0x2808, 0x5898, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2567 0x5850, 0x102c, 0x2874, 0x4008, 0x7098, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2568 0x7050, 0x282c, 0x4074, 0x5808, 0x1098, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2569 0x1050, 0x402c, 0x5874, 0x7008, 0x2898, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2570 0x2852, 0x582e, 0x7076, 0x100a, 0x409a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2571 0x4052, 0x702e, 0x1076, 0x280a, 0x589a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2572 0x5852, 0x102e, 0x2876, 0x400a, 0x709a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2573 0x7052, 0x282e, 0x4076, 0x580a, 0x109a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2574 0x1052, 0x402e, 0x5876, 0x700a, 0x289a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2575 0x2854, 0x5830, 0x7078, 0x100c, 0x409c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2576 0x4054, 0x7030, 0x1078, 0x280c, 0x589c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2577 0x5854, 0x1030, 0x2878, 0x400c, 0x709c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2578 0x7054, 0x2830, 0x4078, 0x580c, 0x109c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2579 0x1054, 0x4030, 0x5878, 0x700c, 0x289c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2580 0x2856, 0x5832, 0x707a, 0x100e, 0x409e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2581 0x4056, 0x7032, 0x107a, 0x280e, 0x589e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2582 0x5856, 0x1032, 0x287a, 0x400e, 0x709e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2583 0x7056, 0x2832, 0x407a, 0x580e, 0x109e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2584 0x1056, 0x4032, 0x587a, 0x700e, 0x289e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2585 0x2858, 0x5834, 0x707c, 0x1010, 0x008c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2586 0x4058, 0x7034, 0x107c, 0x2810, 0x8428, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2587 0x5858, 0x1034, 0x287c, 0x4010, 0x8478, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2588 0x7058, 0x2834, 0x407c, 0x5810, 0x0014, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2589 0x1058, 0x4034, 0x587c, 0x7010, 0x0050, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2590 0x2c48, 0x5c24, 0x746c, 0x1400, 0x4490, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2591 0x4448, 0x7424, 0x146c, 0x2c00, 0x5c90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2592 0x5c48, 0x1424, 0x2c6c, 0x4400, 0x7490, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2593 0x7448, 0x2c24, 0x446c, 0x5c00, 0x1490, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2594 0x1448, 0x4424, 0x5c6c, 0x7400, 0x2c90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2595 0x2c4a, 0x5c26, 0x746e, 0x1402, 0x4492, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2596 0x444a, 0x7426, 0x146e, 0x2c02, 0x5c92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2597 0x5c4a, 0x1426, 0x2c6e, 0x4402, 0x7492, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2598 0x744a, 0x2c26, 0x446e, 0x5c02, 0x1492, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2599 0x144a, 0x4426, 0x5c6e, 0x7402, 0x2c92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2600 0x2c4c, 0x5c28, 0x7470, 0x1404, 0x4494, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2601 0x444c, 0x7428, 0x1470, 0x2c04, 0x5c94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2602 0x5c4c, 0x1428, 0x2c70, 0x4404, 0x7494, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2603 0x744c, 0x2c28, 0x4470, 0x5c04, 0x1494, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2604 0x144c, 0x4428, 0x5c70, 0x7404, 0x2c94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2605 0x2c4e, 0x5c2a, 0x7472, 0x1406, 0x4496, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2606 0x444e, 0x742a, 0x1472, 0x2c06, 0x5c96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2607 0x5c4e, 0x142a, 0x2c72, 0x4406, 0x7496, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2608 0x744e, 0x2c2a, 0x4472, 0x5c06, 0x1496, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2609 0x144e, 0x442a, 0x5c72, 0x7406, 0x2c96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2610 0x2c50, 0x5c2c, 0x7474, 0x1408, 0x4498, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2611 0x4450, 0x742c, 0x1474, 0x2c08, 0x5c98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2612 0x5c50, 0x142c, 0x2c74, 0x4408, 0x7498, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2613 0x7450, 0x2c2c, 0x4474, 0x5c08, 0x1498, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2614 0x1450, 0x442c, 0x5c74, 0x7408, 0x2c98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2615 0x2c52, 0x5c2e, 0x7476, 0x140a, 0x449a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2616 0x4452, 0x742e, 0x1476, 0x2c0a, 0x5c9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2617 0x5c52, 0x142e, 0x2c76, 0x440a, 0x749a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2618 0x7452, 0x2c2e, 0x4476, 0x5c0a, 0x149a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2619 0x1452, 0x442e, 0x5c76, 0x740a, 0x2c9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2620 0x2c54, 0x5c30, 0x7478, 0x140c, 0x449c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2621 0x4454, 0x7430, 0x1478, 0x2c0c, 0x5c9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2622 0x5c54, 0x1430, 0x2c78, 0x440c, 0x749c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2623 0x7454, 0x2c30, 0x4478, 0x5c0c, 0x149c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2624 0x1454, 0x4430, 0x5c78, 0x740c, 0x2c9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2625 0x2c56, 0x5c32, 0x747a, 0x140e, 0x449e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2626 0x4456, 0x7432, 0x147a, 0x2c0e, 0x5c9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2627 0x5c56, 0x1432, 0x2c7a, 0x440e, 0x749e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2628 0x7456, 0x2c32, 0x447a, 0x5c0e, 0x149e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2629 0x1456, 0x4432, 0x5c7a, 0x740e, 0x2c9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2630 0x2c58, 0x5c34, 0x747c, 0x1410, 0x048c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2631 0x4458, 0x7434, 0x147c, 0x2c10, 0x823c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2632 0x5c58, 0x1434, 0x2c7c, 0x4410, 0x828c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2633 0x7458, 0x2c34, 0x447c, 0x5c10, 0x0414, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2634 0x1458, 0x4434, 0x5c7c, 0x7410, 0x0450, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2635 0x3048, 0x6024, 0x786c, 0x1800, 0x4890, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2636 0x4848, 0x7824, 0x186c, 0x3000, 0x6090, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2637 0x6048, 0x1824, 0x306c, 0x4800, 0x7890, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2638 0x7848, 0x3024, 0x486c, 0x6000, 0x1890, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2639 0x1848, 0x4824, 0x606c, 0x7800, 0x3090, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2640 0x304a, 0x6026, 0x786e, 0x1802, 0x4892, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2641 0x484a, 0x7826, 0x186e, 0x3002, 0x6092, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2642 0x604a, 0x1826, 0x306e, 0x4802, 0x7892, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2643 0x784a, 0x3026, 0x486e, 0x6002, 0x1892, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2644 0x184a, 0x4826, 0x606e, 0x7802, 0x3092, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2645 0x304c, 0x6028, 0x7870, 0x1804, 0x4894, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2646 0x484c, 0x7828, 0x1870, 0x3004, 0x6094, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2647 0x604c, 0x1828, 0x3070, 0x4804, 0x7894, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2648 0x784c, 0x3028, 0x4870, 0x6004, 0x1894, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2649 0x184c, 0x4828, 0x6070, 0x7804, 0x3094, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2650 0x304e, 0x602a, 0x7872, 0x1806, 0x4896, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2651 0x484e, 0x782a, 0x1872, 0x3006, 0x6096, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2652 0x604e, 0x182a, 0x3072, 0x4806, 0x7896, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2653 0x784e, 0x302a, 0x4872, 0x6006, 0x1896, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2654 0x184e, 0x482a, 0x6072, 0x7806, 0x3096, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2655 0x3050, 0x602c, 0x7874, 0x1808, 0x4898, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2656 0x4850, 0x782c, 0x1874, 0x3008, 0x6098, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2657 0x6050, 0x182c, 0x3074, 0x4808, 0x7898, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2658 0x7850, 0x302c, 0x4874, 0x6008, 0x1898, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2659 0x1850, 0x482c, 0x6074, 0x7808, 0x3098, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2660 0x3052, 0x602e, 0x7876, 0x180a, 0x489a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2661 0x4852, 0x782e, 0x1876, 0x300a, 0x609a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2662 0x6052, 0x182e, 0x3076, 0x480a, 0x789a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2663 0x7852, 0x302e, 0x4876, 0x600a, 0x189a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2664 0x1852, 0x482e, 0x6076, 0x780a, 0x309a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2665 0x3054, 0x6030, 0x7878, 0x180c, 0x489c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2666 0x4854, 0x7830, 0x1878, 0x300c, 0x609c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2667 0x6054, 0x1830, 0x3078, 0x480c, 0x789c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2668 0x7854, 0x3030, 0x4878, 0x600c, 0x189c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2669 0x1854, 0x4830, 0x6078, 0x780c, 0x309c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2670 0x3056, 0x6032, 0x787a, 0x180e, 0x489e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2671 0x4856, 0x7832, 0x187a, 0x300e, 0x609e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2672 0x6056, 0x1832, 0x307a, 0x480e, 0x789e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2673 0x7856, 0x3032, 0x487a, 0x600e, 0x189e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2674 0x1856, 0x4832, 0x607a, 0x780e, 0x309e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2675 0x3058, 0x6034, 0x787c, 0x1810, 0x8000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2676 0x4858, 0x7834, 0x187c, 0x3010, 0x8050, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2677 0x6058, 0x1834, 0x307c, 0x4810, 0x8600, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2678 0x7858, 0x3034, 0x487c, 0x6010, 0x0028, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2679 0x1858, 0x4834, 0x607c, 0x7810, 0x0064, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2680 0x3448, 0x6424, 0x7c6c, 0x1c00, 0x4c90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2681 0x4c48, 0x7c24, 0x1c6c, 0x3400, 0x6490, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2682 0x6448, 0x1c24, 0x346c, 0x4c00, 0x7c90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2683 0x7c48, 0x3424, 0x4c6c, 0x6400, 0x1c90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2684 0x1c48, 0x4c24, 0x646c, 0x7c00, 0x3490, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2685 0x344a, 0x6426, 0x7c6e, 0x1c02, 0x4c92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2686 0x4c4a, 0x7c26, 0x1c6e, 0x3402, 0x6492, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2687 0x644a, 0x1c26, 0x346e, 0x4c02, 0x7c92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2688 0x7c4a, 0x3426, 0x4c6e, 0x6402, 0x1c92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2689 0x1c4a, 0x4c26, 0x646e, 0x7c02, 0x3492, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2690 0x344c, 0x6428, 0x7c70, 0x1c04, 0x4c94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2691 0x4c4c, 0x7c28, 0x1c70, 0x3404, 0x6494, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2692 0x644c, 0x1c28, 0x3470, 0x4c04, 0x7c94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2693 0x7c4c, 0x3428, 0x4c70, 0x6404, 0x1c94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2694 0x1c4c, 0x4c28, 0x6470, 0x7c04, 0x3494, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2695 0x344e, 0x642a, 0x7c72, 0x1c06, 0x4c96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2696 0x4c4e, 0x7c2a, 0x1c72, 0x3406, 0x6496, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2697 0x644e, 0x1c2a, 0x3472, 0x4c06, 0x7c96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2698 0x7c4e, 0x342a, 0x4c72, 0x6406, 0x1c96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2699 0x1c4e, 0x4c2a, 0x6472, 0x7c06, 0x3496, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2700 0x3450, 0x642c, 0x7c74, 0x1c08, 0x4c98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2701 0x4c50, 0x7c2c, 0x1c74, 0x3408, 0x6498, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2702 0x6450, 0x1c2c, 0x3474, 0x4c08, 0x7c98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2703 0x7c50, 0x342c, 0x4c74, 0x6408, 0x1c98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2704 0x1c50, 0x4c2c, 0x6474, 0x7c08, 0x3498, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2705 0x3452, 0x642e, 0x7c76, 0x1c0a, 0x4c9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2706 0x4c52, 0x7c2e, 0x1c76, 0x340a, 0x649a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2707 0x6452, 0x1c2e, 0x3476, 0x4c0a, 0x7c9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2708 0x7c52, 0x342e, 0x4c76, 0x640a, 0x1c9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2709 0x1c52, 0x4c2e, 0x6476, 0x7c0a, 0x349a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2710 0x3454, 0x6430, 0x7c78, 0x1c0c, 0x4c9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2711 0x4c54, 0x7c30, 0x1c78, 0x340c, 0x649c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2712 0x6454, 0x1c30, 0x3478, 0x4c0c, 0x7c9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2713 0x7c54, 0x3430, 0x4c78, 0x640c, 0x1c9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2714 0x1c54, 0x4c30, 0x6478, 0x7c0c, 0x349c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2715 0x3456, 0x6432, 0x7c7a, 0x1c0e, 0x4c9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2716 0x4c56, 0x7c32, 0x1c7a, 0x340e, 0x649e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2717 0x6456, 0x1c32, 0x347a, 0x4c0e, 0x7c9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2718 0x7c56, 0x3432, 0x4c7a, 0x640e, 0x1c9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2719 0x1c56, 0x4c32, 0x647a, 0x7c0e, 0x349e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2720 0x3458, 0x6434, 0x7c7c, 0x1c10, 0x8400, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2721 0x4c58, 0x7c34, 0x1c7c, 0x3410, 0x8450, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2722 0x6458, 0x1c34, 0x347c, 0x4c10, 0x8650, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2723 0x7c58, 0x3434, 0x4c7c, 0x6410, 0x0428, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2724 0x1c58, 0x4c34, 0x647c, 0x7c10, 0x0464, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2725 0x505a, 0x0836, 0x207e, 0x3812, 0x8266, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2726 0x685a, 0x2036, 0x387e, 0x5012, 0x0002, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2727 0x085a, 0x3836, 0x507e, 0x6812, 0x003e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2728 0x205a, 0x5036, 0x687e, 0x0812, 0x007a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2729 0x385a, 0x6836, 0x087e, 0x2012, 0x8216, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2730 0x505c, 0x0838, 0x2080, 0x3814, 0x8268, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2731 0x685c, 0x2038, 0x3880, 0x5014, 0x0004, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2732 0x085c, 0x3838, 0x5080, 0x6814, 0x0040, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2733 0x205c, 0x5038, 0x6880, 0x0814, 0x007c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2734 0x385c, 0x6838, 0x0880, 0x2014, 0x8218, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2735 0x505e, 0x083a, 0x2082, 0x3816, 0x826a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2736 0x685e, 0x203a, 0x3882, 0x5016, 0x0006, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2737 0x085e, 0x383a, 0x5082, 0x6816, 0x0042, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2738 0x205e, 0x503a, 0x6882, 0x0816, 0x007e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2739 0x385e, 0x683a, 0x0882, 0x2016, 0x821a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2740 0x5060, 0x083c, 0x2084, 0x3818, 0x826c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2741 0x6860, 0x203c, 0x3884, 0x5018, 0x0008, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2742 0x0860, 0x383c, 0x5084, 0x6818, 0x0044, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2743 0x2060, 0x503c, 0x6884, 0x0818, 0x0080, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2744 0x3860, 0x683c, 0x0884, 0x2018, 0x821c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2745 0x5062, 0x083e, 0x2086, 0x381a, 0x826e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2746 0x6862, 0x203e, 0x3886, 0x501a, 0x000a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2747 0x0862, 0x383e, 0x5086, 0x681a, 0x0046, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2748 0x2062, 0x503e, 0x6886, 0x081a, 0x0082, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2749 0x3862, 0x683e, 0x0886, 0x201a, 0x821e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2750 0x5064, 0x0840, 0x2088, 0x381c, 0x8270, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2751 0x6864, 0x2040, 0x3888, 0x501c, 0x000c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2752 0x0864, 0x3840, 0x5088, 0x681c, 0x0048, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2753 0x2064, 0x5040, 0x6888, 0x081c, 0x0084, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2754 0x3864, 0x6840, 0x0888, 0x201c, 0x8220, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2755 0x5066, 0x0842, 0x208a, 0x381e, 0x8272, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2756 0x6866, 0x2042, 0x388a, 0x501e, 0x000e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2757 0x0866, 0x3842, 0x508a, 0x681e, 0x004a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2758 0x2066, 0x5042, 0x688a, 0x081e, 0x0086, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2759 0x3866, 0x6842, 0x088a, 0x201e, 0x8222, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2760 0x5068, 0x0844, 0x208c, 0x3820, 0x8274, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2761 0x6868, 0x2044, 0x388c, 0x5020, 0x0010, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2762 0x0868, 0x3844, 0x508c, 0x6820, 0x004c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2763 0x2068, 0x5044, 0x688c, 0x0820, 0x0088, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2764 0x3868, 0x6844, 0x088c, 0x2020, 0x8224, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2765 0x506a, 0x0846, 0x208e, 0x3822, 0x8276, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2766 0x686a, 0x2046, 0x388e, 0x5022, 0x0012, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2767 0x086a, 0x3846, 0x508e, 0x6822, 0x004e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2768 0x206a, 0x5046, 0x688e, 0x0822, 0x008a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2769 0x386a, 0x6846, 0x088e, 0x2022, 0x8226, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2770 0x545a, 0x0c36, 0x247e, 0x3c12, 0x807a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2771 0x6c5a, 0x2436, 0x3c7e, 0x5412, 0x0402, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2772 0x0c5a, 0x3c36, 0x547e, 0x6c12, 0x043e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2773 0x245a, 0x5436, 0x6c7e, 0x0c12, 0x047a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2774 0x3c5a, 0x6c36, 0x0c7e, 0x2412, 0x802a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2775 0x545c, 0x0c38, 0x2480, 0x3c14, 0x807c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2776 0x6c5c, 0x2438, 0x3c80, 0x5414, 0x0404, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2777 0x0c5c, 0x3c38, 0x5480, 0x6c14, 0x0440, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2778 0x245c, 0x5438, 0x6c80, 0x0c14, 0x047c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2779 0x3c5c, 0x6c38, 0x0c80, 0x2414, 0x802c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2780 0x545e, 0x0c3a, 0x2482, 0x3c16, 0x807e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2781 0x6c5e, 0x243a, 0x3c82, 0x5416, 0x0406, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2782 0x0c5e, 0x3c3a, 0x5482, 0x6c16, 0x0442, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2783 0x245e, 0x543a, 0x6c82, 0x0c16, 0x047e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2784 0x3c5e, 0x6c3a, 0x0c82, 0x2416, 0x802e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2785 0x5460, 0x0c3c, 0x2484, 0x3c18, 0x8080, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2786 0x6c60, 0x243c, 0x3c84, 0x5418, 0x0408, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2787 0x0c60, 0x3c3c, 0x5484, 0x6c18, 0x0444, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2788 0x2460, 0x543c, 0x6c84, 0x0c18, 0x0480, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2789 0x3c60, 0x6c3c, 0x0c84, 0x2418, 0x8030, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2790 0x5462, 0x0c3e, 0x2486, 0x3c1a, 0x8082, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2791 0x6c62, 0x243e, 0x3c86, 0x541a, 0x040a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2792 0x0c62, 0x3c3e, 0x5486, 0x6c1a, 0x0446, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2793 0x2462, 0x543e, 0x6c86, 0x0c1a, 0x0482, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2794 0x3c62, 0x6c3e, 0x0c86, 0x241a, 0x8032, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2795 0x5464, 0x0c40, 0x2488, 0x3c1c, 0x8084, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2796 0x6c64, 0x2440, 0x3c88, 0x541c, 0x040c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2797 0x0c64, 0x3c40, 0x5488, 0x6c1c, 0x0448, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2798 0x2464, 0x5440, 0x6c88, 0x0c1c, 0x0484, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2799 0x3c64, 0x6c40, 0x0c88, 0x241c, 0x8034, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2800 0x5466, 0x0c42, 0x248a, 0x3c1e, 0x8086, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2801 0x6c66, 0x2442, 0x3c8a, 0x541e, 0x040e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2802 0x0c66, 0x3c42, 0x548a, 0x6c1e, 0x044a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2803 0x2466, 0x5442, 0x6c8a, 0x0c1e, 0x0486, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2804 0x3c66, 0x6c42, 0x0c8a, 0x241e, 0x8036, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2805 0x5468, 0x0c44, 0x248c, 0x3c20, 0x8088, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2806 0x6c68, 0x2444, 0x3c8c, 0x5420, 0x0410, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2807 0x0c68, 0x3c44, 0x548c, 0x6c20, 0x044c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2808 0x2468, 0x5444, 0x6c8c, 0x0c20, 0x0488, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2809 0x3c68, 0x6c44, 0x0c8c, 0x2420, 0x8038, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2810 0x546a, 0x0c46, 0x248e, 0x3c22, 0x808a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2811 0x6c6a, 0x2446, 0x3c8e, 0x5422, 0x0412, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2812 0x0c6a, 0x3c46, 0x548e, 0x6c22, 0x044e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2813 0x246a, 0x5446, 0x6c8e, 0x0c22, 0x048a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2814 0x3c6a, 0x6c46, 0x0c8e, 0x2422, 0x803a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2815 0x585a, 0x1036, 0x287e, 0x4012, 0x847a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2816 0x705a, 0x2836, 0x407e, 0x5812, 0x0016, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2817 0x105a, 0x4036, 0x587e, 0x7012, 0x0052, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2818 0x285a, 0x5836, 0x707e, 0x1012, 0x008e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2819 0x405a, 0x7036, 0x107e, 0x2812, 0x842a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2820 0x585c, 0x1038, 0x2880, 0x4014, 0x847c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2821 0x705c, 0x2838, 0x4080, 0x5814, 0x0018, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2822 0x105c, 0x4038, 0x5880, 0x7014, 0x0054, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2823 0x285c, 0x5838, 0x7080, 0x1014, 0x0090, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2824 0x405c, 0x7038, 0x1080, 0x2814, 0x842c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2825 0x585e, 0x103a, 0x2882, 0x4016, 0x847e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2826 0x705e, 0x283a, 0x4082, 0x5816, 0x001a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2827 0x105e, 0x403a, 0x5882, 0x7016, 0x0056, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2828 0x285e, 0x583a, 0x7082, 0x1016, 0x0092, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2829 0x405e, 0x703a, 0x1082, 0x2816, 0x842e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2830 0x5860, 0x103c, 0x2884, 0x4018, 0x8480, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2831 0x7060, 0x283c, 0x4084, 0x5818, 0x001c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2832 0x1060, 0x403c, 0x5884, 0x7018, 0x0058, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2833 0x2860, 0x583c, 0x7084, 0x1018, 0x0094, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2834 0x4060, 0x703c, 0x1084, 0x2818, 0x8430, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2835 0x5862, 0x103e, 0x2886, 0x401a, 0x8482, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2836 0x7062, 0x283e, 0x4086, 0x581a, 0x001e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2837 0x1062, 0x403e, 0x5886, 0x701a, 0x005a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2838 0x2862, 0x583e, 0x7086, 0x101a, 0x0096, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2839 0x4062, 0x703e, 0x1086, 0x281a, 0x8432, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2840 0x5864, 0x1040, 0x2888, 0x401c, 0x8484, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2841 0x7064, 0x2840, 0x4088, 0x581c, 0x0020, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2842 0x1064, 0x4040, 0x5888, 0x701c, 0x005c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2843 0x2864, 0x5840, 0x7088, 0x101c, 0x0098, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2844 0x4064, 0x7040, 0x1088, 0x281c, 0x8434, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2845 0x5866, 0x1042, 0x288a, 0x401e, 0x8486, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2846 0x7066, 0x2842, 0x408a, 0x581e, 0x0022, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2847 0x1066, 0x4042, 0x588a, 0x701e, 0x005e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2848 0x2866, 0x5842, 0x708a, 0x101e, 0x009a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2849 0x4066, 0x7042, 0x108a, 0x281e, 0x8436, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2850 0x5868, 0x1044, 0x288c, 0x4020, 0x8488, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2851 0x7068, 0x2844, 0x408c, 0x5820, 0x0024, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2852 0x1068, 0x4044, 0x588c, 0x7020, 0x0060, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2853 0x2868, 0x5844, 0x708c, 0x1020, 0x009c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2854 0x4068, 0x7044, 0x108c, 0x2820, 0x8438, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2855 0x586a, 0x1046, 0x288e, 0x4022, 0x848a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2856 0x706a, 0x2846, 0x408e, 0x5822, 0x0026, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2857 0x106a, 0x4046, 0x588e, 0x7022, 0x0062, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2858 0x286a, 0x5846, 0x708e, 0x1022, 0x009e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2859 0x406a, 0x7046, 0x108e, 0x2822, 0x843a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2860 0x5c5a, 0x1436, 0x2c7e, 0x4412, 0x828e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2861 0x745a, 0x2c36, 0x447e, 0x5c12, 0x0416, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2862 0x145a, 0x4436, 0x5c7e, 0x7412, 0x0452, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2863 0x2c5a, 0x5c36, 0x747e, 0x1412, 0x048e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2864 0x445a, 0x7436, 0x147e, 0x2c12, 0x823e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2865 0x5c5c, 0x1438, 0x2c80, 0x4414, 0x8290, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2866 0x745c, 0x2c38, 0x4480, 0x5c14, 0x0418, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2867 0x145c, 0x4438, 0x5c80, 0x7414, 0x0454, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2868 0x2c5c, 0x5c38, 0x7480, 0x1414, 0x0490, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2869 0x445c, 0x7438, 0x1480, 0x2c14, 0x8240, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2870 0x5c5e, 0x143a, 0x2c82, 0x4416, 0x8292, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2871 0x745e, 0x2c3a, 0x4482, 0x5c16, 0x041a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2872 0x145e, 0x443a, 0x5c82, 0x7416, 0x0456, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2873 0x2c5e, 0x5c3a, 0x7482, 0x1416, 0x0492, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2874 0x445e, 0x743a, 0x1482, 0x2c16, 0x8242, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2875 0x5c60, 0x143c, 0x2c84, 0x4418, 0x8294, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2876 0x7460, 0x2c3c, 0x4484, 0x5c18, 0x041c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2877 0x1460, 0x443c, 0x5c84, 0x7418, 0x0458, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2878 0x2c60, 0x5c3c, 0x7484, 0x1418, 0x0494, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2879 0x4460, 0x743c, 0x1484, 0x2c18, 0x8244, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2880 0x5c62, 0x143e, 0x2c86, 0x441a, 0x8296, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2881 0x7462, 0x2c3e, 0x4486, 0x5c1a, 0x041e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2882 0x1462, 0x443e, 0x5c86, 0x741a, 0x045a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2883 0x2c62, 0x5c3e, 0x7486, 0x141a, 0x0496, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2884 0x4462, 0x743e, 0x1486, 0x2c1a, 0x8246, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2885 0x5c64, 0x1440, 0x2c88, 0x441c, 0x8298, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2886 0x7464, 0x2c40, 0x4488, 0x5c1c, 0x0420, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2887 0x1464, 0x4440, 0x5c88, 0x741c, 0x045c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2888 0x2c64, 0x5c40, 0x7488, 0x141c, 0x0498, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2889 0x4464, 0x7440, 0x1488, 0x2c1c, 0x8248, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2890 0x5c66, 0x1442, 0x2c8a, 0x441e, 0x829a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2891 0x7466, 0x2c42, 0x448a, 0x5c1e, 0x0422, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2892 0x1466, 0x4442, 0x5c8a, 0x741e, 0x045e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2893 0x2c66, 0x5c42, 0x748a, 0x141e, 0x049a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2894 0x4466, 0x7442, 0x148a, 0x2c1e, 0x824a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2895 0x5c68, 0x1444, 0x2c8c, 0x4420, 0x829c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2896 0x7468, 0x2c44, 0x448c, 0x5c20, 0x0424, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2897 0x1468, 0x4444, 0x5c8c, 0x7420, 0x0460, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2898 0x2c68, 0x5c44, 0x748c, 0x1420, 0x049c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2899 0x4468, 0x7444, 0x148c, 0x2c20, 0x824c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2900 0x5c6a, 0x1446, 0x2c8e, 0x4422, 0x829e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2901 0x746a, 0x2c46, 0x448e, 0x5c22, 0x0426, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2902 0x146a, 0x4446, 0x5c8e, 0x7422, 0x0462, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2903 0x2c6a, 0x5c46, 0x748e, 0x1422, 0x049e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2904 0x446a, 0x7446, 0x148e, 0x2c22, 0x824e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2905 0x605a, 0x1836, 0x307e, 0x4812, 0x8604, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2906 0x785a, 0x3036, 0x487e, 0x6012, 0x002a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2907 0x185a, 0x4836, 0x607e, 0x7812, 0x0066, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2908 0x305a, 0x6036, 0x787e, 0x1812, 0x8002, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2909 0x485a, 0x7836, 0x187e, 0x3012, 0x8052, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2910 0x605c, 0x1838, 0x3080, 0x4814, 0x8608, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2911 0x785c, 0x3038, 0x4880, 0x6014, 0x002c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2912 0x185c, 0x4838, 0x6080, 0x7814, 0x0068, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2913 0x305c, 0x6038, 0x7880, 0x1814, 0x8004, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2914 0x485c, 0x7838, 0x1880, 0x3014, 0x8054, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2915 0x605e, 0x183a, 0x3082, 0x4816, 0x860c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2916 0x785e, 0x303a, 0x4882, 0x6016, 0x002e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2917 0x185e, 0x483a, 0x6082, 0x7816, 0x006a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2918 0x305e, 0x603a, 0x7882, 0x1816, 0x8006, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2919 0x485e, 0x783a, 0x1882, 0x3016, 0x8056, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2920 0x6060, 0x183c, 0x3084, 0x4818, 0x8610, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2921 0x7860, 0x303c, 0x4884, 0x6018, 0x0030, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2922 0x1860, 0x483c, 0x6084, 0x7818, 0x006c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2923 0x3060, 0x603c, 0x7884, 0x1818, 0x8008, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2924 0x4860, 0x783c, 0x1884, 0x3018, 0x8058, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2925 0x6062, 0x183e, 0x3086, 0x481a, 0x8614, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2926 0x7862, 0x303e, 0x4886, 0x601a, 0x0032, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2927 0x1862, 0x483e, 0x6086, 0x781a, 0x006e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2928 0x3062, 0x603e, 0x7886, 0x181a, 0x800a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2929 0x4862, 0x783e, 0x1886, 0x301a, 0x805a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2930 0x6064, 0x1840, 0x3088, 0x481c, 0x8618, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2931 0x7864, 0x3040, 0x4888, 0x601c, 0x0034, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2932 0x1864, 0x4840, 0x6088, 0x781c, 0x0070, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2933 0x3064, 0x6040, 0x7888, 0x181c, 0x800c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2934 0x4864, 0x7840, 0x1888, 0x301c, 0x805c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2935 0x6066, 0x1842, 0x308a, 0x481e, 0x861c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2936 0x7866, 0x3042, 0x488a, 0x601e, 0x0036, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2937 0x1866, 0x4842, 0x608a, 0x781e, 0x0072, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2938 0x3066, 0x6042, 0x788a, 0x181e, 0x800e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2939 0x4866, 0x7842, 0x188a, 0x301e, 0x805e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2940 0x6068, 0x1844, 0x308c, 0x4820, 0x8620, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2941 0x7868, 0x3044, 0x488c, 0x6020, 0x0038, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2942 0x1868, 0x4844, 0x608c, 0x7820, 0x0074, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2943 0x3068, 0x6044, 0x788c, 0x1820, 0x8010, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2944 0x4868, 0x7844, 0x188c, 0x3020, 0x8060, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2945 0x606a, 0x1846, 0x308e, 0x4822, 0x8624, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2946 0x786a, 0x3046, 0x488e, 0x6022, 0x003a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2947 0x186a, 0x4846, 0x608e, 0x7822, 0x0076, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2948 0x306a, 0x6046, 0x788e, 0x1822, 0x8012, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2949 0x486a, 0x7846, 0x188e, 0x3022, 0x8062, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2950 0x645a, 0x1c36, 0x347e, 0x4c12, 0x8654, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2951 0x7c5a, 0x3436, 0x4c7e, 0x6412, 0x042a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2952 0x1c5a, 0x4c36, 0x647e, 0x7c12, 0x0466, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2953 0x345a, 0x6436, 0x7c7e, 0x1c12, 0x8402, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2954 0x4c5a, 0x7c36, 0x1c7e, 0x3412, 0x8452, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2955 0x645c, 0x1c38, 0x3480, 0x4c14, 0x8658, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2956 0x7c5c, 0x3438, 0x4c80, 0x6414, 0x042c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2957 0x1c5c, 0x4c38, 0x6480, 0x7c14, 0x0468, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2958 0x345c, 0x6438, 0x7c80, 0x1c14, 0x8404, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2959 0x4c5c, 0x7c38, 0x1c80, 0x3414, 0x8454, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2960 0x645e, 0x1c3a, 0x3482, 0x4c16, 0x865c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2961 0x7c5e, 0x343a, 0x4c82, 0x6416, 0x042e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2962 0x1c5e, 0x4c3a, 0x6482, 0x7c16, 0x046a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2963 0x345e, 0x643a, 0x7c82, 0x1c16, 0x8406, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2964 0x4c5e, 0x7c3a, 0x1c82, 0x3416, 0x8456, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2965 0x6460, 0x1c3c, 0x3484, 0x4c18, 0x8660, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2966 0x7c60, 0x343c, 0x4c84, 0x6418, 0x0430, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2967 0x1c60, 0x4c3c, 0x6484, 0x7c18, 0x046c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2968 0x3460, 0x643c, 0x7c84, 0x1c18, 0x8408, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2969 0x4c60, 0x7c3c, 0x1c84, 0x3418, 0x8458, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2970 0x6462, 0x1c3e, 0x3486, 0x4c1a, 0x8664, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2971 0x7c62, 0x343e, 0x4c86, 0x641a, 0x0432, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2972 0x1c62, 0x4c3e, 0x6486, 0x7c1a, 0x046e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2973 0x3462, 0x643e, 0x7c86, 0x1c1a, 0x840a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2974 0x4c62, 0x7c3e, 0x1c86, 0x341a, 0x845a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2975 0x6464, 0x1c40, 0x3488, 0x4c1c, 0x8668, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2976 0x7c64, 0x3440, 0x4c88, 0x641c, 0x0434, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2977 0x1c64, 0x4c40, 0x6488, 0x7c1c, 0x0470, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2978 0x3464, 0x6440, 0x7c88, 0x1c1c, 0x840c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2979 0x4c64, 0x7c40, 0x1c88, 0x341c, 0x845c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2980 0x6466, 0x1c42, 0x348a, 0x4c1e, 0x866c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2981 0x7c66, 0x3442, 0x4c8a, 0x641e, 0x0436, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2982 0x1c66, 0x4c42, 0x648a, 0x7c1e, 0x0472, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2983 0x3466, 0x6442, 0x7c8a, 0x1c1e, 0x840e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2984 0x4c66, 0x7c42, 0x1c8a, 0x341e, 0x845e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2985 0x6468, 0x1c44, 0x348c, 0x4c20, 0x8670, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2986 0x7c68, 0x3444, 0x4c8c, 0x6420, 0x0438, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2987 0x1c68, 0x4c44, 0x648c, 0x7c20, 0x0474, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2988 0x3468, 0x6444, 0x7c8c, 0x1c20, 0x8410, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2989 0x4c68, 0x7c44, 0x1c8c, 0x3420, 0x8460, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2990 0x646a, 0x1c46, 0x348e, 0x4c22, 0x8674, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2991 0x7c6a, 0x3446, 0x4c8e, 0x6422, 0x043a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2992 0x1c6a, 0x4c46, 0x648e, 0x7c22, 0x0476, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2993 0x346a, 0x6446, 0x7c8e, 0x1c22, 0x8412, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2994 0x4c6a, 0x7c46, 0x1c8e, 0x3422, 0x8462, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2995 0x0a48, 0x3a24, 0x526c, 0x6a00, 0x2290, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2996 0x2248, 0x5224, 0x6a6c, 0x0a00, 0x3a90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2997 0x3a48, 0x6a24, 0x0a6c, 0x2200, 0x5290, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2998 0x5248, 0x0a24, 0x226c, 0x3a00, 0x6a90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
2999 0x6a48, 0x2224, 0x3a6c, 0x5200, 0x0a90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3000 0x0a4a, 0x3a26, 0x526e, 0x6a02, 0x2292, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3001 0x224a, 0x5226, 0x6a6e, 0x0a02, 0x3a92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3002 0x3a4a, 0x6a26, 0x0a6e, 0x2202, 0x5292, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3003 0x524a, 0x0a26, 0x226e, 0x3a02, 0x6a92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3004 0x6a4a, 0x2226, 0x3a6e, 0x5202, 0x0a92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3005 0x0a4c, 0x3a28, 0x5270, 0x6a04, 0x2294, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3006 0x224c, 0x5228, 0x6a70, 0x0a04, 0x3a94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3007 0x3a4c, 0x6a28, 0x0a70, 0x2204, 0x5294, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3008 0x524c, 0x0a28, 0x2270, 0x3a04, 0x6a94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3009 0x6a4c, 0x2228, 0x3a70, 0x5204, 0x0a94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3010 0x0a4e, 0x3a2a, 0x5272, 0x6a06, 0x2296, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3011 0x224e, 0x522a, 0x6a72, 0x0a06, 0x3a96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3012 0x3a4e, 0x6a2a, 0x0a72, 0x2206, 0x5296, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3013 0x524e, 0x0a2a, 0x2272, 0x3a06, 0x6a96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3014 0x6a4e, 0x222a, 0x3a72, 0x5206, 0x0a96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3015 0x0a50, 0x3a2c, 0x5274, 0x6a08, 0x2298, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3016 0x2250, 0x522c, 0x6a74, 0x0a08, 0x3a98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3017 0x3a50, 0x6a2c, 0x0a74, 0x2208, 0x5298, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3018 0x5250, 0x0a2c, 0x2274, 0x3a08, 0x6a98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3019 0x6a50, 0x222c, 0x3a74, 0x5208, 0x0a98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3020 0x0a52, 0x3a2e, 0x5276, 0x6a0a, 0x229a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3021 0x2252, 0x522e, 0x6a76, 0x0a0a, 0x3a9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3022 0x3a52, 0x6a2e, 0x0a76, 0x220a, 0x529a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3023 0x5252, 0x0a2e, 0x2276, 0x3a0a, 0x6a9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3024 0x6a52, 0x222e, 0x3a76, 0x520a, 0x0a9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3025 0x0a54, 0x3a30, 0x5278, 0x6a0c, 0x229c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3026 0x2254, 0x5230, 0x6a78, 0x0a0c, 0x3a9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3027 0x3a54, 0x6a30, 0x0a78, 0x220c, 0x529c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3028 0x5254, 0x0a30, 0x2278, 0x3a0c, 0x6a9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3029 0x6a54, 0x2230, 0x3a78, 0x520c, 0x0a9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3030 0x0a56, 0x3a32, 0x527a, 0x6a0e, 0x229e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3031 0x2256, 0x5232, 0x6a7a, 0x0a0e, 0x3a9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3032 0x3a56, 0x6a32, 0x0a7a, 0x220e, 0x529e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3033 0x5256, 0x0a32, 0x227a, 0x3a0e, 0x6a9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3034 0x6a56, 0x2232, 0x3a7a, 0x520e, 0x0a9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3035 0x0a58, 0x3a34, 0x527c, 0x6a10, 0x023c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3036 0x2258, 0x5234, 0x6a7c, 0x0a10, 0x0278, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3037 0x3a58, 0x6a34, 0x0a7c, 0x2210, 0x8414, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3038 0x5258, 0x0a34, 0x227c, 0x3a10, 0x8464, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3039 0x6a58, 0x2234, 0x3a7c, 0x5210, 0x0200, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3040 0x0e48, 0x3e24, 0x566c, 0x6e00, 0x2690, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3041 0x2648, 0x5624, 0x6e6c, 0x0e00, 0x3e90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3042 0x3e48, 0x6e24, 0x0e6c, 0x2600, 0x5690, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3043 0x5648, 0x0e24, 0x266c, 0x3e00, 0x6e90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3044 0x6e48, 0x2624, 0x3e6c, 0x5600, 0x0e90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3045 0x0e4a, 0x3e26, 0x566e, 0x6e02, 0x2692, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3046 0x264a, 0x5626, 0x6e6e, 0x0e02, 0x3e92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3047 0x3e4a, 0x6e26, 0x0e6e, 0x2602, 0x5692, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3048 0x564a, 0x0e26, 0x266e, 0x3e02, 0x6e92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3049 0x6e4a, 0x2626, 0x3e6e, 0x5602, 0x0e92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3050 0x0e4c, 0x3e28, 0x5670, 0x6e04, 0x2694, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3051 0x264c, 0x5628, 0x6e70, 0x0e04, 0x3e94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3052 0x3e4c, 0x6e28, 0x0e70, 0x2604, 0x5694, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3053 0x564c, 0x0e28, 0x2670, 0x3e04, 0x6e94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3054 0x6e4c, 0x2628, 0x3e70, 0x5604, 0x0e94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3055 0x0e4e, 0x3e2a, 0x5672, 0x6e06, 0x2696, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3056 0x264e, 0x562a, 0x6e72, 0x0e06, 0x3e96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3057 0x3e4e, 0x6e2a, 0x0e72, 0x2606, 0x5696, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3058 0x564e, 0x0e2a, 0x2672, 0x3e06, 0x6e96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3059 0x6e4e, 0x262a, 0x3e72, 0x5606, 0x0e96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3060 0x0e50, 0x3e2c, 0x5674, 0x6e08, 0x2698, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3061 0x2650, 0x562c, 0x6e74, 0x0e08, 0x3e98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3062 0x3e50, 0x6e2c, 0x0e74, 0x2608, 0x5698, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3063 0x5650, 0x0e2c, 0x2674, 0x3e08, 0x6e98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3064 0x6e50, 0x262c, 0x3e74, 0x5608, 0x0e98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3065 0x0e52, 0x3e2e, 0x5676, 0x6e0a, 0x269a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3066 0x2652, 0x562e, 0x6e76, 0x0e0a, 0x3e9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3067 0x3e52, 0x6e2e, 0x0e76, 0x260a, 0x569a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3068 0x5652, 0x0e2e, 0x2676, 0x3e0a, 0x6e9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3069 0x6e52, 0x262e, 0x3e76, 0x560a, 0x0e9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3070 0x0e54, 0x3e30, 0x5678, 0x6e0c, 0x269c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3071 0x2654, 0x5630, 0x6e78, 0x0e0c, 0x3e9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3072 0x3e54, 0x6e30, 0x0e78, 0x260c, 0x569c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3073 0x5654, 0x0e30, 0x2678, 0x3e0c, 0x6e9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3074 0x6e54, 0x2630, 0x3e78, 0x560c, 0x0e9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3075 0x0e56, 0x3e32, 0x567a, 0x6e0e, 0x269e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3076 0x2656, 0x5632, 0x6e7a, 0x0e0e, 0x3e9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3077 0x3e56, 0x6e32, 0x0e7a, 0x260e, 0x569e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3078 0x5656, 0x0e32, 0x267a, 0x3e0e, 0x6e9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3079 0x6e56, 0x2632, 0x3e7a, 0x560e, 0x0e9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3080 0x0e58, 0x3e34, 0x567c, 0x6e10, 0x063c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3081 0x2658, 0x5634, 0x6e7c, 0x0e10, 0x0678, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3082 0x3e58, 0x6e34, 0x0e7c, 0x2610, 0x8228, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3083 0x5658, 0x0e34, 0x267c, 0x3e10, 0x8278, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3084 0x6e58, 0x2634, 0x3e7c, 0x5610, 0x0600, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3085 0x1248, 0x4224, 0x5a6c, 0x7200, 0x2a90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3086 0x2a48, 0x5a24, 0x726c, 0x1200, 0x4290, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3087 0x4248, 0x7224, 0x126c, 0x2a00, 0x5a90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3088 0x5a48, 0x1224, 0x2a6c, 0x4200, 0x7290, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3089 0x7248, 0x2a24, 0x426c, 0x5a00, 0x1290, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3090 0x124a, 0x4226, 0x5a6e, 0x7202, 0x2a92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3091 0x2a4a, 0x5a26, 0x726e, 0x1202, 0x4292, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3092 0x424a, 0x7226, 0x126e, 0x2a02, 0x5a92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3093 0x5a4a, 0x1226, 0x2a6e, 0x4202, 0x7292, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3094 0x724a, 0x2a26, 0x426e, 0x5a02, 0x1292, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3095 0x124c, 0x4228, 0x5a70, 0x7204, 0x2a94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3096 0x2a4c, 0x5a28, 0x7270, 0x1204, 0x4294, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3097 0x424c, 0x7228, 0x1270, 0x2a04, 0x5a94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3098 0x5a4c, 0x1228, 0x2a70, 0x4204, 0x7294, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3099 0x724c, 0x2a28, 0x4270, 0x5a04, 0x1294, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3100 0x124e, 0x422a, 0x5a72, 0x7206, 0x2a96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3101 0x2a4e, 0x5a2a, 0x7272, 0x1206, 0x4296, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3102 0x424e, 0x722a, 0x1272, 0x2a06, 0x5a96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3103 0x5a4e, 0x122a, 0x2a72, 0x4206, 0x7296, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3104 0x724e, 0x2a2a, 0x4272, 0x5a06, 0x1296, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3105 0x1250, 0x422c, 0x5a74, 0x7208, 0x2a98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3106 0x2a50, 0x5a2c, 0x7274, 0x1208, 0x4298, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3107 0x4250, 0x722c, 0x1274, 0x2a08, 0x5a98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3108 0x5a50, 0x122c, 0x2a74, 0x4208, 0x7298, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3109 0x7250, 0x2a2c, 0x4274, 0x5a08, 0x1298, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3110 0x1252, 0x422e, 0x5a76, 0x720a, 0x2a9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3111 0x2a52, 0x5a2e, 0x7276, 0x120a, 0x429a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3112 0x4252, 0x722e, 0x1276, 0x2a0a, 0x5a9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3113 0x5a52, 0x122e, 0x2a76, 0x420a, 0x729a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3114 0x7252, 0x2a2e, 0x4276, 0x5a0a, 0x129a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3115 0x1254, 0x4230, 0x5a78, 0x720c, 0x2a9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3116 0x2a54, 0x5a30, 0x7278, 0x120c, 0x429c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3117 0x4254, 0x7230, 0x1278, 0x2a0c, 0x5a9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3118 0x5a54, 0x1230, 0x2a78, 0x420c, 0x729c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3119 0x7254, 0x2a30, 0x4278, 0x5a0c, 0x129c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3120 0x1256, 0x4232, 0x5a7a, 0x720e, 0x2a9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3121 0x2a56, 0x5a32, 0x727a, 0x120e, 0x429e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3122 0x4256, 0x7232, 0x127a, 0x2a0e, 0x5a9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3123 0x5a56, 0x1232, 0x2a7a, 0x420e, 0x729e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3124 0x7256, 0x2a32, 0x427a, 0x5a0e, 0x129e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3125 0x1258, 0x4234, 0x5a7c, 0x7210, 0x0250, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3126 0x2a58, 0x5a34, 0x727c, 0x1210, 0x028c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3127 0x4258, 0x7234, 0x127c, 0x2a10, 0x803c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3128 0x5a58, 0x1234, 0x2a7c, 0x4210, 0x808c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3129 0x7258, 0x2a34, 0x427c, 0x5a10, 0x0214, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3130 0x1648, 0x4624, 0x5e6c, 0x7600, 0x2e90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3131 0x2e48, 0x5e24, 0x766c, 0x1600, 0x4690, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3132 0x4648, 0x7624, 0x166c, 0x2e00, 0x5e90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3133 0x5e48, 0x1624, 0x2e6c, 0x4600, 0x7690, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3134 0x7648, 0x2e24, 0x466c, 0x5e00, 0x1690, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3135 0x164a, 0x4626, 0x5e6e, 0x7602, 0x2e92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3136 0x2e4a, 0x5e26, 0x766e, 0x1602, 0x4692, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3137 0x464a, 0x7626, 0x166e, 0x2e02, 0x5e92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3138 0x5e4a, 0x1626, 0x2e6e, 0x4602, 0x7692, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3139 0x764a, 0x2e26, 0x466e, 0x5e02, 0x1692, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3140 0x164c, 0x4628, 0x5e70, 0x7604, 0x2e94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3141 0x2e4c, 0x5e28, 0x7670, 0x1604, 0x4694, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3142 0x464c, 0x7628, 0x1670, 0x2e04, 0x5e94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3143 0x5e4c, 0x1628, 0x2e70, 0x4604, 0x7694, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3144 0x764c, 0x2e28, 0x4670, 0x5e04, 0x1694, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3145 0x164e, 0x462a, 0x5e72, 0x7606, 0x2e96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3146 0x2e4e, 0x5e2a, 0x7672, 0x1606, 0x4696, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3147 0x464e, 0x762a, 0x1672, 0x2e06, 0x5e96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3148 0x5e4e, 0x162a, 0x2e72, 0x4606, 0x7696, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3149 0x764e, 0x2e2a, 0x4672, 0x5e06, 0x1696, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3150 0x1650, 0x462c, 0x5e74, 0x7608, 0x2e98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3151 0x2e50, 0x5e2c, 0x7674, 0x1608, 0x4698, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3152 0x4650, 0x762c, 0x1674, 0x2e08, 0x5e98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3153 0x5e50, 0x162c, 0x2e74, 0x4608, 0x7698, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3154 0x7650, 0x2e2c, 0x4674, 0x5e08, 0x1698, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3155 0x1652, 0x462e, 0x5e76, 0x760a, 0x2e9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3156 0x2e52, 0x5e2e, 0x7676, 0x160a, 0x469a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3157 0x4652, 0x762e, 0x1676, 0x2e0a, 0x5e9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3158 0x5e52, 0x162e, 0x2e76, 0x460a, 0x769a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3159 0x7652, 0x2e2e, 0x4676, 0x5e0a, 0x169a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3160 0x1654, 0x4630, 0x5e78, 0x760c, 0x2e9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3161 0x2e54, 0x5e30, 0x7678, 0x160c, 0x469c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3162 0x4654, 0x7630, 0x1678, 0x2e0c, 0x5e9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3163 0x5e54, 0x1630, 0x2e78, 0x460c, 0x769c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3164 0x7654, 0x2e30, 0x4678, 0x5e0c, 0x169c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3165 0x1656, 0x4632, 0x5e7a, 0x760e, 0x2e9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3166 0x2e56, 0x5e32, 0x767a, 0x160e, 0x469e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3167 0x4656, 0x7632, 0x167a, 0x2e0e, 0x5e9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3168 0x5e56, 0x1632, 0x2e7a, 0x460e, 0x769e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3169 0x7656, 0x2e32, 0x467a, 0x5e0e, 0x169e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3170 0x1658, 0x4634, 0x5e7c, 0x7610, 0x0650, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3171 0x2e58, 0x5e34, 0x767c, 0x1610, 0x068c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3172 0x4658, 0x7634, 0x167c, 0x2e10, 0x843c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3173 0x5e58, 0x1634, 0x2e7c, 0x4610, 0x848c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3174 0x7658, 0x2e34, 0x467c, 0x5e10, 0x0614, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3175 0x1a48, 0x4a24, 0x626c, 0x7a00, 0x3290, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3176 0x3248, 0x6224, 0x7a6c, 0x1a00, 0x4a90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3177 0x4a48, 0x7a24, 0x1a6c, 0x3200, 0x6290, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3178 0x6248, 0x1a24, 0x326c, 0x4a00, 0x7a90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3179 0x7a48, 0x3224, 0x4a6c, 0x6200, 0x1a90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3180 0x1a4a, 0x4a26, 0x626e, 0x7a02, 0x3292, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3181 0x324a, 0x6226, 0x7a6e, 0x1a02, 0x4a92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3182 0x4a4a, 0x7a26, 0x1a6e, 0x3202, 0x6292, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3183 0x624a, 0x1a26, 0x326e, 0x4a02, 0x7a92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3184 0x7a4a, 0x3226, 0x4a6e, 0x6202, 0x1a92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3185 0x1a4c, 0x4a28, 0x6270, 0x7a04, 0x3294, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3186 0x324c, 0x6228, 0x7a70, 0x1a04, 0x4a94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3187 0x4a4c, 0x7a28, 0x1a70, 0x3204, 0x6294, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3188 0x624c, 0x1a28, 0x3270, 0x4a04, 0x7a94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3189 0x7a4c, 0x3228, 0x4a70, 0x6204, 0x1a94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3190 0x1a4e, 0x4a2a, 0x6272, 0x7a06, 0x3296, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3191 0x324e, 0x622a, 0x7a72, 0x1a06, 0x4a96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3192 0x4a4e, 0x7a2a, 0x1a72, 0x3206, 0x6296, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3193 0x624e, 0x1a2a, 0x3272, 0x4a06, 0x7a96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3194 0x7a4e, 0x322a, 0x4a72, 0x6206, 0x1a96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3195 0x1a50, 0x4a2c, 0x6274, 0x7a08, 0x3298, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3196 0x3250, 0x622c, 0x7a74, 0x1a08, 0x4a98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3197 0x4a50, 0x7a2c, 0x1a74, 0x3208, 0x6298, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3198 0x6250, 0x1a2c, 0x3274, 0x4a08, 0x7a98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3199 0x7a50, 0x322c, 0x4a74, 0x6208, 0x1a98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3200 0x1a52, 0x4a2e, 0x6276, 0x7a0a, 0x329a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3201 0x3252, 0x622e, 0x7a76, 0x1a0a, 0x4a9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3202 0x4a52, 0x7a2e, 0x1a76, 0x320a, 0x629a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3203 0x6252, 0x1a2e, 0x3276, 0x4a0a, 0x7a9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3204 0x7a52, 0x322e, 0x4a76, 0x620a, 0x1a9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3205 0x1a54, 0x4a30, 0x6278, 0x7a0c, 0x329c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3206 0x3254, 0x6230, 0x7a78, 0x1a0c, 0x4a9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3207 0x4a54, 0x7a30, 0x1a78, 0x320c, 0x629c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3208 0x6254, 0x1a30, 0x3278, 0x4a0c, 0x7a9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3209 0x7a54, 0x3230, 0x4a78, 0x620c, 0x1a9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3210 0x1a56, 0x4a32, 0x627a, 0x7a0e, 0x329e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3211 0x3256, 0x6232, 0x7a7a, 0x1a0e, 0x4a9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3212 0x4a56, 0x7a32, 0x1a7a, 0x320e, 0x629e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3213 0x6256, 0x1a32, 0x327a, 0x4a0e, 0x7a9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3214 0x7a56, 0x3232, 0x4a7a, 0x620e, 0x1a9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3215 0x1a58, 0x4a34, 0x627c, 0x7a10, 0x0264, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3216 0x3258, 0x6234, 0x7a7c, 0x1a10, 0x8200, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3217 0x4a58, 0x7a34, 0x1a7c, 0x3210, 0x8250, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3218 0x6258, 0x1a34, 0x327c, 0x4a10, 0x8628, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3219 0x7a58, 0x3234, 0x4a7c, 0x6210, 0x0228, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3220 0x1e48, 0x4e24, 0x666c, 0x7e00, 0x3690, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3221 0x3648, 0x6624, 0x7e6c, 0x1e00, 0x4e90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3222 0x4e48, 0x7e24, 0x1e6c, 0x3600, 0x6690, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3223 0x6648, 0x1e24, 0x366c, 0x4e00, 0x7e90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3224 0x7e48, 0x3624, 0x4e6c, 0x6600, 0x1e90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3225 0x1e4a, 0x4e26, 0x666e, 0x7e02, 0x3692, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3226 0x364a, 0x6626, 0x7e6e, 0x1e02, 0x4e92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3227 0x4e4a, 0x7e26, 0x1e6e, 0x3602, 0x6692, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3228 0x664a, 0x1e26, 0x366e, 0x4e02, 0x7e92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3229 0x7e4a, 0x3626, 0x4e6e, 0x6602, 0x1e92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3230 0x1e4c, 0x4e28, 0x6670, 0x7e04, 0x3694, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3231 0x364c, 0x6628, 0x7e70, 0x1e04, 0x4e94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3232 0x4e4c, 0x7e28, 0x1e70, 0x3604, 0x6694, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3233 0x664c, 0x1e28, 0x3670, 0x4e04, 0x7e94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3234 0x7e4c, 0x3628, 0x4e70, 0x6604, 0x1e94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3235 0x1e4e, 0x4e2a, 0x6672, 0x7e06, 0x3696, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3236 0x364e, 0x662a, 0x7e72, 0x1e06, 0x4e96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3237 0x4e4e, 0x7e2a, 0x1e72, 0x3606, 0x6696, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3238 0x664e, 0x1e2a, 0x3672, 0x4e06, 0x7e96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3239 0x7e4e, 0x362a, 0x4e72, 0x6606, 0x1e96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3240 0x1e50, 0x4e2c, 0x6674, 0x7e08, 0x3698, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3241 0x3650, 0x662c, 0x7e74, 0x1e08, 0x4e98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3242 0x4e50, 0x7e2c, 0x1e74, 0x3608, 0x6698, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3243 0x6650, 0x1e2c, 0x3674, 0x4e08, 0x7e98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3244 0x7e50, 0x362c, 0x4e74, 0x6608, 0x1e98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3245 0x1e52, 0x4e2e, 0x6676, 0x7e0a, 0x369a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3246 0x3652, 0x662e, 0x7e76, 0x1e0a, 0x4e9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3247 0x4e52, 0x7e2e, 0x1e76, 0x360a, 0x669a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3248 0x6652, 0x1e2e, 0x3676, 0x4e0a, 0x7e9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3249 0x7e52, 0x362e, 0x4e76, 0x660a, 0x1e9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3250 0x1e54, 0x4e30, 0x6678, 0x7e0c, 0x369c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3251 0x3654, 0x6630, 0x7e78, 0x1e0c, 0x4e9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3252 0x4e54, 0x7e30, 0x1e78, 0x360c, 0x669c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3253 0x6654, 0x1e30, 0x3678, 0x4e0c, 0x7e9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3254 0x7e54, 0x3630, 0x4e78, 0x660c, 0x1e9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3255 0x1e56, 0x4e32, 0x667a, 0x7e0e, 0x369e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3256 0x3656, 0x6632, 0x7e7a, 0x1e0e, 0x4e9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3257 0x4e56, 0x7e32, 0x1e7a, 0x360e, 0x669e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3258 0x6656, 0x1e32, 0x367a, 0x4e0e, 0x7e9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3259 0x7e56, 0x3632, 0x4e7a, 0x660e, 0x1e9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3260 0x1e58, 0x4e34, 0x667c, 0x7e10, 0x0664, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3261 0x3658, 0x6634, 0x7e7c, 0x1e10, 0x8014, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3262 0x4e58, 0x7e34, 0x1e7c, 0x3610, 0x8064, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3263 0x6658, 0x1e34, 0x367c, 0x4e10, 0x8678, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3264 0x7e58, 0x3634, 0x4e7c, 0x6610, 0x0628, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3265 0x3a5a, 0x6a36, 0x0a7e, 0x2212, 0x8416, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3266 0x525a, 0x0a36, 0x227e, 0x3a12, 0x8466, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3267 0x6a5a, 0x2236, 0x3a7e, 0x5212, 0x0202, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3268 0x0a5a, 0x3a36, 0x527e, 0x6a12, 0x023e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3269 0x225a, 0x5236, 0x6a7e, 0x0a12, 0x027a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3270 0x3a5c, 0x6a38, 0x0a80, 0x2214, 0x8418, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3271 0x525c, 0x0a38, 0x2280, 0x3a14, 0x8468, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3272 0x6a5c, 0x2238, 0x3a80, 0x5214, 0x0204, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3273 0x0a5c, 0x3a38, 0x5280, 0x6a14, 0x0240, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3274 0x225c, 0x5238, 0x6a80, 0x0a14, 0x027c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3275 0x3a5e, 0x6a3a, 0x0a82, 0x2216, 0x841a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3276 0x525e, 0x0a3a, 0x2282, 0x3a16, 0x846a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3277 0x6a5e, 0x223a, 0x3a82, 0x5216, 0x0206, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3278 0x0a5e, 0x3a3a, 0x5282, 0x6a16, 0x0242, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3279 0x225e, 0x523a, 0x6a82, 0x0a16, 0x027e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3280 0x3a60, 0x6a3c, 0x0a84, 0x2218, 0x841c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3281 0x5260, 0x0a3c, 0x2284, 0x3a18, 0x846c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3282 0x6a60, 0x223c, 0x3a84, 0x5218, 0x0208, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3283 0x0a60, 0x3a3c, 0x5284, 0x6a18, 0x0244, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3284 0x2260, 0x523c, 0x6a84, 0x0a18, 0x0280, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3285 0x3a62, 0x6a3e, 0x0a86, 0x221a, 0x841e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3286 0x5262, 0x0a3e, 0x2286, 0x3a1a, 0x846e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3287 0x6a62, 0x223e, 0x3a86, 0x521a, 0x020a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3288 0x0a62, 0x3a3e, 0x5286, 0x6a1a, 0x0246, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3289 0x2262, 0x523e, 0x6a86, 0x0a1a, 0x0282, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3290 0x3a64, 0x6a40, 0x0a88, 0x221c, 0x8420, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3291 0x5264, 0x0a40, 0x2288, 0x3a1c, 0x8470, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3292 0x6a64, 0x2240, 0x3a88, 0x521c, 0x020c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3293 0x0a64, 0x3a40, 0x5288, 0x6a1c, 0x0248, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3294 0x2264, 0x5240, 0x6a88, 0x0a1c, 0x0284, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3295 0x3a66, 0x6a42, 0x0a8a, 0x221e, 0x8422, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3296 0x5266, 0x0a42, 0x228a, 0x3a1e, 0x8472, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3297 0x6a66, 0x2242, 0x3a8a, 0x521e, 0x020e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3298 0x0a66, 0x3a42, 0x528a, 0x6a1e, 0x024a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3299 0x2266, 0x5242, 0x6a8a, 0x0a1e, 0x0286, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3300 0x3a68, 0x6a44, 0x0a8c, 0x2220, 0x8424, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3301 0x5268, 0x0a44, 0x228c, 0x3a20, 0x8474, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3302 0x6a68, 0x2244, 0x3a8c, 0x5220, 0x0210, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3303 0x0a68, 0x3a44, 0x528c, 0x6a20, 0x024c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3304 0x2268, 0x5244, 0x6a8c, 0x0a20, 0x0288, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3305 0x3a6a, 0x6a46, 0x0a8e, 0x2222, 0x8426, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3306 0x526a, 0x0a46, 0x228e, 0x3a22, 0x8476, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3307 0x6a6a, 0x2246, 0x3a8e, 0x5222, 0x0212, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3308 0x0a6a, 0x3a46, 0x528e, 0x6a22, 0x024e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3309 0x226a, 0x5246, 0x6a8e, 0x0a22, 0x028a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3310 0x3e5a, 0x6e36, 0x0e7e, 0x2612, 0x822a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3311 0x565a, 0x0e36, 0x267e, 0x3e12, 0x827a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3312 0x6e5a, 0x2636, 0x3e7e, 0x5612, 0x0602, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3313 0x0e5a, 0x3e36, 0x567e, 0x6e12, 0x063e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3314 0x265a, 0x5636, 0x6e7e, 0x0e12, 0x067a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3315 0x3e5c, 0x6e38, 0x0e80, 0x2614, 0x822c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3316 0x565c, 0x0e38, 0x2680, 0x3e14, 0x827c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3317 0x6e5c, 0x2638, 0x3e80, 0x5614, 0x0604, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3318 0x0e5c, 0x3e38, 0x5680, 0x6e14, 0x0640, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3319 0x265c, 0x5638, 0x6e80, 0x0e14, 0x067c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3320 0x3e5e, 0x6e3a, 0x0e82, 0x2616, 0x822e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3321 0x565e, 0x0e3a, 0x2682, 0x3e16, 0x827e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3322 0x6e5e, 0x263a, 0x3e82, 0x5616, 0x0606, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3323 0x0e5e, 0x3e3a, 0x5682, 0x6e16, 0x0642, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3324 0x265e, 0x563a, 0x6e82, 0x0e16, 0x067e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3325 0x3e60, 0x6e3c, 0x0e84, 0x2618, 0x8230, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3326 0x5660, 0x0e3c, 0x2684, 0x3e18, 0x8280, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3327 0x6e60, 0x263c, 0x3e84, 0x5618, 0x0608, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3328 0x0e60, 0x3e3c, 0x5684, 0x6e18, 0x0644, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3329 0x2660, 0x563c, 0x6e84, 0x0e18, 0x0680, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3330 0x3e62, 0x6e3e, 0x0e86, 0x261a, 0x8232, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3331 0x5662, 0x0e3e, 0x2686, 0x3e1a, 0x8282, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3332 0x6e62, 0x263e, 0x3e86, 0x561a, 0x060a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3333 0x0e62, 0x3e3e, 0x5686, 0x6e1a, 0x0646, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3334 0x2662, 0x563e, 0x6e86, 0x0e1a, 0x0682, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3335 0x3e64, 0x6e40, 0x0e88, 0x261c, 0x8234, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3336 0x5664, 0x0e40, 0x2688, 0x3e1c, 0x8284, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3337 0x6e64, 0x2640, 0x3e88, 0x561c, 0x060c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3338 0x0e64, 0x3e40, 0x5688, 0x6e1c, 0x0648, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3339 0x2664, 0x5640, 0x6e88, 0x0e1c, 0x0684, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3340 0x3e66, 0x6e42, 0x0e8a, 0x261e, 0x8236, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3341 0x5666, 0x0e42, 0x268a, 0x3e1e, 0x8286, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3342 0x6e66, 0x2642, 0x3e8a, 0x561e, 0x060e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3343 0x0e66, 0x3e42, 0x568a, 0x6e1e, 0x064a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3344 0x2666, 0x5642, 0x6e8a, 0x0e1e, 0x0686, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3345 0x3e68, 0x6e44, 0x0e8c, 0x2620, 0x8238, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3346 0x5668, 0x0e44, 0x268c, 0x3e20, 0x8288, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3347 0x6e68, 0x2644, 0x3e8c, 0x5620, 0x0610, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3348 0x0e68, 0x3e44, 0x568c, 0x6e20, 0x064c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3349 0x2668, 0x5644, 0x6e8c, 0x0e20, 0x0688, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3350 0x3e6a, 0x6e46, 0x0e8e, 0x2622, 0x823a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3351 0x566a, 0x0e46, 0x268e, 0x3e22, 0x828a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3352 0x6e6a, 0x2646, 0x3e8e, 0x5622, 0x0612, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3353 0x0e6a, 0x3e46, 0x568e, 0x6e22, 0x064e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3354 0x266a, 0x5646, 0x6e8e, 0x0e22, 0x068a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3355 0x425a, 0x7236, 0x127e, 0x2a12, 0x803e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3356 0x5a5a, 0x1236, 0x2a7e, 0x4212, 0x808e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3357 0x725a, 0x2a36, 0x427e, 0x5a12, 0x0216, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3358 0x125a, 0x4236, 0x5a7e, 0x7212, 0x0252, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3359 0x2a5a, 0x5a36, 0x727e, 0x1212, 0x028e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3360 0x425c, 0x7238, 0x1280, 0x2a14, 0x8040, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3361 0x5a5c, 0x1238, 0x2a80, 0x4214, 0x8090, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3362 0x725c, 0x2a38, 0x4280, 0x5a14, 0x0218, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3363 0x125c, 0x4238, 0x5a80, 0x7214, 0x0254, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3364 0x2a5c, 0x5a38, 0x7280, 0x1214, 0x0290, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3365 0x425e, 0x723a, 0x1282, 0x2a16, 0x8042, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3366 0x5a5e, 0x123a, 0x2a82, 0x4216, 0x8092, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3367 0x725e, 0x2a3a, 0x4282, 0x5a16, 0x021a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3368 0x125e, 0x423a, 0x5a82, 0x7216, 0x0256, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3369 0x2a5e, 0x5a3a, 0x7282, 0x1216, 0x0292, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3370 0x4260, 0x723c, 0x1284, 0x2a18, 0x8044, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3371 0x5a60, 0x123c, 0x2a84, 0x4218, 0x8094, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3372 0x7260, 0x2a3c, 0x4284, 0x5a18, 0x021c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3373 0x1260, 0x423c, 0x5a84, 0x7218, 0x0258, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3374 0x2a60, 0x5a3c, 0x7284, 0x1218, 0x0294, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3375 0x4262, 0x723e, 0x1286, 0x2a1a, 0x8046, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3376 0x5a62, 0x123e, 0x2a86, 0x421a, 0x8096, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3377 0x7262, 0x2a3e, 0x4286, 0x5a1a, 0x021e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3378 0x1262, 0x423e, 0x5a86, 0x721a, 0x025a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3379 0x2a62, 0x5a3e, 0x7286, 0x121a, 0x0296, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3380 0x4264, 0x7240, 0x1288, 0x2a1c, 0x8048, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3381 0x5a64, 0x1240, 0x2a88, 0x421c, 0x8098, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3382 0x7264, 0x2a40, 0x4288, 0x5a1c, 0x0220, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3383 0x1264, 0x4240, 0x5a88, 0x721c, 0x025c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3384 0x2a64, 0x5a40, 0x7288, 0x121c, 0x0298, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3385 0x4266, 0x7242, 0x128a, 0x2a1e, 0x804a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3386 0x5a66, 0x1242, 0x2a8a, 0x421e, 0x809a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3387 0x7266, 0x2a42, 0x428a, 0x5a1e, 0x0222, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3388 0x1266, 0x4242, 0x5a8a, 0x721e, 0x025e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3389 0x2a66, 0x5a42, 0x728a, 0x121e, 0x029a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3390 0x4268, 0x7244, 0x128c, 0x2a20, 0x804c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3391 0x5a68, 0x1244, 0x2a8c, 0x4220, 0x809c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3392 0x7268, 0x2a44, 0x428c, 0x5a20, 0x0224, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3393 0x1268, 0x4244, 0x5a8c, 0x7220, 0x0260, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3394 0x2a68, 0x5a44, 0x728c, 0x1220, 0x029c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3395 0x426a, 0x7246, 0x128e, 0x2a22, 0x804e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3396 0x5a6a, 0x1246, 0x2a8e, 0x4222, 0x809e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3397 0x726a, 0x2a46, 0x428e, 0x5a22, 0x0226, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3398 0x126a, 0x4246, 0x5a8e, 0x7222, 0x0262, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3399 0x2a6a, 0x5a46, 0x728e, 0x1222, 0x029e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3400 0x465a, 0x7636, 0x167e, 0x2e12, 0x843e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3401 0x5e5a, 0x1636, 0x2e7e, 0x4612, 0x848e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3402 0x765a, 0x2e36, 0x467e, 0x5e12, 0x0616, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3403 0x165a, 0x4636, 0x5e7e, 0x7612, 0x0652, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3404 0x2e5a, 0x5e36, 0x767e, 0x1612, 0x068e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3405 0x465c, 0x7638, 0x1680, 0x2e14, 0x8440, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3406 0x5e5c, 0x1638, 0x2e80, 0x4614, 0x8490, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3407 0x765c, 0x2e38, 0x4680, 0x5e14, 0x0618, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3408 0x165c, 0x4638, 0x5e80, 0x7614, 0x0654, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3409 0x2e5c, 0x5e38, 0x7680, 0x1614, 0x0690, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3410 0x465e, 0x763a, 0x1682, 0x2e16, 0x8442, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3411 0x5e5e, 0x163a, 0x2e82, 0x4616, 0x8492, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3412 0x765e, 0x2e3a, 0x4682, 0x5e16, 0x061a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3413 0x165e, 0x463a, 0x5e82, 0x7616, 0x0656, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3414 0x2e5e, 0x5e3a, 0x7682, 0x1616, 0x0692, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3415 0x4660, 0x763c, 0x1684, 0x2e18, 0x8444, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3416 0x5e60, 0x163c, 0x2e84, 0x4618, 0x8494, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3417 0x7660, 0x2e3c, 0x4684, 0x5e18, 0x061c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3418 0x1660, 0x463c, 0x5e84, 0x7618, 0x0658, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3419 0x2e60, 0x5e3c, 0x7684, 0x1618, 0x0694, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3420 0x4662, 0x763e, 0x1686, 0x2e1a, 0x8446, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3421 0x5e62, 0x163e, 0x2e86, 0x461a, 0x8496, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3422 0x7662, 0x2e3e, 0x4686, 0x5e1a, 0x061e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3423 0x1662, 0x463e, 0x5e86, 0x761a, 0x065a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3424 0x2e62, 0x5e3e, 0x7686, 0x161a, 0x0696, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3425 0x4664, 0x7640, 0x1688, 0x2e1c, 0x8448, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3426 0x5e64, 0x1640, 0x2e88, 0x461c, 0x8498, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3427 0x7664, 0x2e40, 0x4688, 0x5e1c, 0x0620, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3428 0x1664, 0x4640, 0x5e88, 0x761c, 0x065c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3429 0x2e64, 0x5e40, 0x7688, 0x161c, 0x0698, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3430 0x4666, 0x7642, 0x168a, 0x2e1e, 0x844a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3431 0x5e66, 0x1642, 0x2e8a, 0x461e, 0x849a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3432 0x7666, 0x2e42, 0x468a, 0x5e1e, 0x0622, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3433 0x1666, 0x4642, 0x5e8a, 0x761e, 0x065e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3434 0x2e66, 0x5e42, 0x768a, 0x161e, 0x069a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3435 0x4668, 0x7644, 0x168c, 0x2e20, 0x844c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3436 0x5e68, 0x1644, 0x2e8c, 0x4620, 0x849c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3437 0x7668, 0x2e44, 0x468c, 0x5e20, 0x0624, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3438 0x1668, 0x4644, 0x5e8c, 0x7620, 0x0660, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3439 0x2e68, 0x5e44, 0x768c, 0x1620, 0x069c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3440 0x466a, 0x7646, 0x168e, 0x2e22, 0x844e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3441 0x5e6a, 0x1646, 0x2e8e, 0x4622, 0x849e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3442 0x766a, 0x2e46, 0x468e, 0x5e22, 0x0626, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3443 0x166a, 0x4646, 0x5e8e, 0x7622, 0x0662, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3444 0x2e6a, 0x5e46, 0x768e, 0x1622, 0x069e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3445 0x4a5a, 0x7a36, 0x1a7e, 0x3212, 0x8252, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3446 0x625a, 0x1a36, 0x327e, 0x4a12, 0x862c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3447 0x7a5a, 0x3236, 0x4a7e, 0x6212, 0x022a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3448 0x1a5a, 0x4a36, 0x627e, 0x7a12, 0x0266, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3449 0x325a, 0x6236, 0x7a7e, 0x1a12, 0x8202, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3450 0x4a5c, 0x7a38, 0x1a80, 0x3214, 0x8254, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3451 0x625c, 0x1a38, 0x3280, 0x4a14, 0x8630, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3452 0x7a5c, 0x3238, 0x4a80, 0x6214, 0x022c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3453 0x1a5c, 0x4a38, 0x6280, 0x7a14, 0x0268, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3454 0x325c, 0x6238, 0x7a80, 0x1a14, 0x8204, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3455 0x4a5e, 0x7a3a, 0x1a82, 0x3216, 0x8256, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3456 0x625e, 0x1a3a, 0x3282, 0x4a16, 0x8634, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3457 0x7a5e, 0x323a, 0x4a82, 0x6216, 0x022e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3458 0x1a5e, 0x4a3a, 0x6282, 0x7a16, 0x026a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3459 0x325e, 0x623a, 0x7a82, 0x1a16, 0x8206, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3460 0x4a60, 0x7a3c, 0x1a84, 0x3218, 0x8258, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3461 0x6260, 0x1a3c, 0x3284, 0x4a18, 0x8638, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3462 0x7a60, 0x323c, 0x4a84, 0x6218, 0x0230, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3463 0x1a60, 0x4a3c, 0x6284, 0x7a18, 0x026c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3464 0x3260, 0x623c, 0x7a84, 0x1a18, 0x8208, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3465 0x4a62, 0x7a3e, 0x1a86, 0x321a, 0x825a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3466 0x6262, 0x1a3e, 0x3286, 0x4a1a, 0x863c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3467 0x7a62, 0x323e, 0x4a86, 0x621a, 0x0232, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3468 0x1a62, 0x4a3e, 0x6286, 0x7a1a, 0x026e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3469 0x3262, 0x623e, 0x7a86, 0x1a1a, 0x820a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3470 0x4a64, 0x7a40, 0x1a88, 0x321c, 0x825c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3471 0x6264, 0x1a40, 0x3288, 0x4a1c, 0x8640, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3472 0x7a64, 0x3240, 0x4a88, 0x621c, 0x0234, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3473 0x1a64, 0x4a40, 0x6288, 0x7a1c, 0x0270, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3474 0x3264, 0x6240, 0x7a88, 0x1a1c, 0x820c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3475 0x4a66, 0x7a42, 0x1a8a, 0x321e, 0x825e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3476 0x6266, 0x1a42, 0x328a, 0x4a1e, 0x8644, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3477 0x7a66, 0x3242, 0x4a8a, 0x621e, 0x0236, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3478 0x1a66, 0x4a42, 0x628a, 0x7a1e, 0x0272, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3479 0x3266, 0x6242, 0x7a8a, 0x1a1e, 0x820e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3480 0x4a68, 0x7a44, 0x1a8c, 0x3220, 0x8260, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3481 0x6268, 0x1a44, 0x328c, 0x4a20, 0x8648, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3482 0x7a68, 0x3244, 0x4a8c, 0x6220, 0x0238, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3483 0x1a68, 0x4a44, 0x628c, 0x7a20, 0x0274, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3484 0x3268, 0x6244, 0x7a8c, 0x1a20, 0x8210, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3485 0x4a6a, 0x7a46, 0x1a8e, 0x3222, 0x8262, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3486 0x626a, 0x1a46, 0x328e, 0x4a22, 0x864c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3487 0x7a6a, 0x3246, 0x4a8e, 0x6222, 0x023a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3488 0x1a6a, 0x4a46, 0x628e, 0x7a22, 0x0276, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3489 0x326a, 0x6246, 0x7a8e, 0x1a22, 0x8212, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3490 0x4e5a, 0x7e36, 0x1e7e, 0x3612, 0x8066, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3491 0x665a, 0x1e36, 0x367e, 0x4e12, 0x867c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3492 0x7e5a, 0x3636, 0x4e7e, 0x6612, 0x062a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3493 0x1e5a, 0x4e36, 0x667e, 0x7e12, 0x0666, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3494 0x365a, 0x6636, 0x7e7e, 0x1e12, 0x8016, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3495 0x4e5c, 0x7e38, 0x1e80, 0x3614, 0x8068, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3496 0x665c, 0x1e38, 0x3680, 0x4e14, 0x8680, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3497 0x7e5c, 0x3638, 0x4e80, 0x6614, 0x062c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3498 0x1e5c, 0x4e38, 0x6680, 0x7e14, 0x0668, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3499 0x365c, 0x6638, 0x7e80, 0x1e14, 0x8018, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3500 0x4e5e, 0x7e3a, 0x1e82, 0x3616, 0x806a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3501 0x665e, 0x1e3a, 0x3682, 0x4e16, 0x8684, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3502 0x7e5e, 0x363a, 0x4e82, 0x6616, 0x062e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3503 0x1e5e, 0x4e3a, 0x6682, 0x7e16, 0x066a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3504 0x365e, 0x663a, 0x7e82, 0x1e16, 0x801a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3505 0x4e60, 0x7e3c, 0x1e84, 0x3618, 0x806c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3506 0x6660, 0x1e3c, 0x3684, 0x4e18, 0x8688, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3507 0x7e60, 0x363c, 0x4e84, 0x6618, 0x0630, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3508 0x1e60, 0x4e3c, 0x6684, 0x7e18, 0x066c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3509 0x3660, 0x663c, 0x7e84, 0x1e18, 0x801c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3510 0x4e62, 0x7e3e, 0x1e86, 0x361a, 0x806e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3511 0x6662, 0x1e3e, 0x3686, 0x4e1a, 0x868c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3512 0x7e62, 0x363e, 0x4e86, 0x661a, 0x0632, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3513 0x1e62, 0x4e3e, 0x6686, 0x7e1a, 0x066e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3514 0x3662, 0x663e, 0x7e86, 0x1e1a, 0x801e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3515 0x4e64, 0x7e40, 0x1e88, 0x361c, 0x8070, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3516 0x6664, 0x1e40, 0x3688, 0x4e1c, 0x8690, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3517 0x7e64, 0x3640, 0x4e88, 0x661c, 0x0634, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3518 0x1e64, 0x4e40, 0x6688, 0x7e1c, 0x0670, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3519 0x3664, 0x6640, 0x7e88, 0x1e1c, 0x8020, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3520 0x4e66, 0x7e42, 0x1e8a, 0x361e, 0x8072, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3521 0x6666, 0x1e42, 0x368a, 0x4e1e, 0x8694, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3522 0x7e66, 0x3642, 0x4e8a, 0x661e, 0x0636, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3523 0x1e66, 0x4e42, 0x668a, 0x7e1e, 0x0672, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3524 0x3666, 0x6642, 0x7e8a, 0x1e1e, 0x8022, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3525 0x4e68, 0x7e44, 0x1e8c, 0x3620, 0x8074, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3526 0x6668, 0x1e44, 0x368c, 0x4e20, 0x8698, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3527 0x7e68, 0x3644, 0x4e8c, 0x6620, 0x0638, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3528 0x1e68, 0x4e44, 0x668c, 0x7e20, 0x0674, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3529 0x3668, 0x6644, 0x7e8c, 0x1e20, 0x8024, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3530 0x4e6a, 0x7e46, 0x1e8e, 0x3622, 0x8076, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3531 0x666a, 0x1e46, 0x368e, 0x4e22, 0x869c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3532 0x7e6a, 0x3646, 0x4e8e, 0x6622, 0x063a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3533 0x1e6a, 0x4e46, 0x668e, 0x7e22, 0x0676, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3534 0x366a, 0x6646, 0x7e8e, 0x1e22, 0x8026, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3535 }; |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3536 |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3537 static const uint16_t dv_place_1080i50[4*12*27*5] = { |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3538 0x1a48, 0x4a24, 0x626c, 0x0200, 0x3290, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3539 0x2648, 0x5624, 0x6e6c, 0x0e00, 0x3e90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3540 0x3248, 0x6224, 0x7a6c, 0x1a00, 0x4a90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3541 0x3e48, 0x6e24, 0x026c, 0x2600, 0x5690, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3542 0x4a48, 0x7a24, 0x0e6c, 0x3200, 0x6290, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3543 0x5648, 0x0224, 0x1a6c, 0x3e00, 0x6e90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3544 0x6248, 0x0e24, 0x266c, 0x4a00, 0x7a90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3545 0x6e48, 0x1a24, 0x326c, 0x5600, 0x0290, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3546 0x7a48, 0x2624, 0x3e6c, 0x6200, 0x0e90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3547 0x0248, 0x3224, 0x4a6c, 0x6e00, 0x1a90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3548 0x0e48, 0x3e24, 0x566c, 0x7a00, 0x2690, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3549 0x1a4a, 0x4a26, 0x626e, 0x0202, 0x3292, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3550 0x264a, 0x5626, 0x6e6e, 0x0e02, 0x3e92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3551 0x324a, 0x6226, 0x7a6e, 0x1a02, 0x4a92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3552 0x3e4a, 0x6e26, 0x026e, 0x2602, 0x5692, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3553 0x4a4a, 0x7a26, 0x0e6e, 0x3202, 0x6292, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3554 0x564a, 0x0226, 0x1a6e, 0x3e02, 0x6e92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3555 0x624a, 0x0e26, 0x266e, 0x4a02, 0x7a92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3556 0x6e4a, 0x1a26, 0x326e, 0x5602, 0x0292, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3557 0x7a4a, 0x2626, 0x3e6e, 0x6202, 0x0e92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3558 0x024a, 0x3226, 0x4a6e, 0x6e02, 0x1a92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3559 0x0e4a, 0x3e26, 0x566e, 0x7a02, 0x2692, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3560 0x1a4c, 0x4a28, 0x6270, 0x0204, 0x3294, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3561 0x264c, 0x5628, 0x6e70, 0x0e04, 0x3e94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3562 0x324c, 0x6228, 0x7a70, 0x1a04, 0x4a94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3563 0x3e4c, 0x6e28, 0x0270, 0x2604, 0x5694, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3564 0x4a4c, 0x7a28, 0x0e70, 0x3204, 0x6294, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3565 0x564c, 0x0228, 0x1a70, 0x3e04, 0x6e94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3566 0x624c, 0x0e28, 0x2670, 0x4a04, 0x7a94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3567 0x6e4c, 0x1a28, 0x3270, 0x5604, 0x0294, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3568 0x7a4c, 0x2628, 0x3e70, 0x6204, 0x0e94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3569 0x024c, 0x3228, 0x4a70, 0x6e04, 0x1a94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3570 0x0e4c, 0x3e28, 0x5670, 0x7a04, 0x2694, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3571 0x1a4e, 0x4a2a, 0x6272, 0x0206, 0x3296, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3572 0x264e, 0x562a, 0x6e72, 0x0e06, 0x3e96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3573 0x324e, 0x622a, 0x7a72, 0x1a06, 0x4a96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3574 0x3e4e, 0x6e2a, 0x0272, 0x2606, 0x5696, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3575 0x4a4e, 0x7a2a, 0x0e72, 0x3206, 0x6296, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3576 0x564e, 0x022a, 0x1a72, 0x3e06, 0x6e96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3577 0x624e, 0x0e2a, 0x2672, 0x4a06, 0x7a96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3578 0x6e4e, 0x1a2a, 0x3272, 0x5606, 0x0296, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3579 0x7a4e, 0x262a, 0x3e72, 0x6206, 0x0e96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3580 0x024e, 0x322a, 0x4a72, 0x6e06, 0x1a96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3581 0x0e4e, 0x3e2a, 0x5672, 0x7a06, 0x2696, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3582 0x1a50, 0x4a2c, 0x6274, 0x0208, 0x3298, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3583 0x2650, 0x562c, 0x6e74, 0x0e08, 0x3e98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3584 0x3250, 0x622c, 0x7a74, 0x1a08, 0x4a98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3585 0x3e50, 0x6e2c, 0x0274, 0x2608, 0x5698, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3586 0x4a50, 0x7a2c, 0x0e74, 0x3208, 0x6298, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3587 0x5650, 0x022c, 0x1a74, 0x3e08, 0x6e98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3588 0x6250, 0x0e2c, 0x2674, 0x4a08, 0x7a98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3589 0x6e50, 0x1a2c, 0x3274, 0x5608, 0x0298, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3590 0x7a50, 0x262c, 0x3e74, 0x6208, 0x0e98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3591 0x0250, 0x322c, 0x4a74, 0x6e08, 0x1a98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3592 0x0e50, 0x3e2c, 0x5674, 0x7a08, 0x2698, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3593 0x1a52, 0x4a2e, 0x6276, 0x020a, 0x329a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3594 0x2652, 0x562e, 0x6e76, 0x0e0a, 0x3e9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3595 0x3252, 0x622e, 0x7a76, 0x1a0a, 0x4a9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3596 0x3e52, 0x6e2e, 0x0276, 0x260a, 0x569a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3597 0x4a52, 0x7a2e, 0x0e76, 0x320a, 0x629a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3598 0x5652, 0x022e, 0x1a76, 0x3e0a, 0x6e9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3599 0x6252, 0x0e2e, 0x2676, 0x4a0a, 0x7a9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3600 0x6e52, 0x1a2e, 0x3276, 0x560a, 0x029a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3601 0x7a52, 0x262e, 0x3e76, 0x620a, 0x0e9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3602 0x0252, 0x322e, 0x4a76, 0x6e0a, 0x1a9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3603 0x0e52, 0x3e2e, 0x5676, 0x7a0a, 0x269a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3604 0x1a54, 0x4a30, 0x6278, 0x020c, 0x329c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3605 0x2654, 0x5630, 0x6e78, 0x0e0c, 0x3e9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3606 0x3254, 0x6230, 0x7a78, 0x1a0c, 0x4a9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3607 0x3e54, 0x6e30, 0x0278, 0x260c, 0x569c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3608 0x4a54, 0x7a30, 0x0e78, 0x320c, 0x629c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3609 0x5654, 0x0230, 0x1a78, 0x3e0c, 0x6e9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3610 0x6254, 0x0e30, 0x2678, 0x4a0c, 0x7a9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3611 0x6e54, 0x1a30, 0x3278, 0x560c, 0x029c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3612 0x7a54, 0x2630, 0x3e78, 0x620c, 0x0e9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3613 0x0254, 0x3230, 0x4a78, 0x6e0c, 0x1a9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3614 0x0e54, 0x3e30, 0x5678, 0x7a0c, 0x269c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3615 0x1a56, 0x4a32, 0x627a, 0x020e, 0x329e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3616 0x2656, 0x5632, 0x6e7a, 0x0e0e, 0x3e9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3617 0x3256, 0x6232, 0x7a7a, 0x1a0e, 0x4a9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3618 0x3e56, 0x6e32, 0x027a, 0x260e, 0x569e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3619 0x4a56, 0x7a32, 0x0e7a, 0x320e, 0x629e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3620 0x5656, 0x0232, 0x1a7a, 0x3e0e, 0x6e9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3621 0x6256, 0x0e32, 0x267a, 0x4a0e, 0x7a9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3622 0x6e56, 0x1a32, 0x327a, 0x560e, 0x029e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3623 0x7a56, 0x2632, 0x3e7a, 0x620e, 0x0e9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3624 0x0256, 0x3232, 0x4a7a, 0x6e0e, 0x1a9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3625 0x0e56, 0x3e32, 0x567a, 0x7a0e, 0x269e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3626 0x1a58, 0x4a34, 0x627c, 0x0210, 0x32a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3627 0x2658, 0x5634, 0x6e7c, 0x0e10, 0x3ea0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3628 0x3258, 0x6234, 0x7a7c, 0x1a10, 0x4aa0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3629 0x3e58, 0x6e34, 0x027c, 0x2610, 0x56a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3630 0x4a58, 0x7a34, 0x0e7c, 0x3210, 0x62a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3631 0x5658, 0x0234, 0x1a7c, 0x3e10, 0x6ea0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3632 0x6258, 0x0e34, 0x267c, 0x4a10, 0x7aa0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3633 0x6e58, 0x1a34, 0x327c, 0x5610, 0x02a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3634 0x7a58, 0x2634, 0x3e7c, 0x6210, 0x0ea0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3635 0x0258, 0x3234, 0x4a7c, 0x6e10, 0x1aa0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3636 0x0e58, 0x3e34, 0x567c, 0x7a10, 0x26a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3637 0x1e48, 0x4e24, 0x666c, 0x0600, 0x3690, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3638 0x2a48, 0x5a24, 0x726c, 0x1200, 0x4290, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3639 0x3648, 0x6624, 0x7e6c, 0x1e00, 0x4e90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3640 0x4248, 0x7224, 0x066c, 0x2a00, 0x5a90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3641 0x4e48, 0x7e24, 0x126c, 0x3600, 0x6690, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3642 0x5a48, 0x0624, 0x1e6c, 0x4200, 0x7290, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3643 0x6648, 0x1224, 0x2a6c, 0x4e00, 0x7e90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3644 0x7248, 0x1e24, 0x366c, 0x5a00, 0x0690, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3645 0x7e48, 0x2a24, 0x426c, 0x6600, 0x1290, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3646 0x0648, 0x3624, 0x4e6c, 0x7200, 0x1e90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3647 0x1248, 0x4224, 0x5a6c, 0x7e00, 0x2a90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3648 0x1e4a, 0x4e26, 0x666e, 0x0602, 0x3692, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3649 0x2a4a, 0x5a26, 0x726e, 0x1202, 0x4292, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3650 0x364a, 0x6626, 0x7e6e, 0x1e02, 0x4e92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3651 0x424a, 0x7226, 0x066e, 0x2a02, 0x5a92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3652 0x4e4a, 0x7e26, 0x126e, 0x3602, 0x6692, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3653 0x5a4a, 0x0626, 0x1e6e, 0x4202, 0x7292, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3654 0x664a, 0x1226, 0x2a6e, 0x4e02, 0x7e92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3655 0x724a, 0x1e26, 0x366e, 0x5a02, 0x0692, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3656 0x7e4a, 0x2a26, 0x426e, 0x6602, 0x1292, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3657 0x064a, 0x3626, 0x4e6e, 0x7202, 0x1e92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3658 0x124a, 0x4226, 0x5a6e, 0x7e02, 0x2a92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3659 0x1e4c, 0x4e28, 0x6670, 0x0604, 0x3694, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3660 0x2a4c, 0x5a28, 0x7270, 0x1204, 0x4294, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3661 0x364c, 0x6628, 0x7e70, 0x1e04, 0x4e94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3662 0x424c, 0x7228, 0x0670, 0x2a04, 0x5a94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3663 0x4e4c, 0x7e28, 0x1270, 0x3604, 0x6694, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3664 0x5a4c, 0x0628, 0x1e70, 0x4204, 0x7294, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3665 0x664c, 0x1228, 0x2a70, 0x4e04, 0x7e94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3666 0x724c, 0x1e28, 0x3670, 0x5a04, 0x0694, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3667 0x7e4c, 0x2a28, 0x4270, 0x6604, 0x1294, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3668 0x064c, 0x3628, 0x4e70, 0x7204, 0x1e94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3669 0x124c, 0x4228, 0x5a70, 0x7e04, 0x2a94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3670 0x1e4e, 0x4e2a, 0x6672, 0x0606, 0x3696, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3671 0x2a4e, 0x5a2a, 0x7272, 0x1206, 0x4296, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3672 0x364e, 0x662a, 0x7e72, 0x1e06, 0x4e96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3673 0x424e, 0x722a, 0x0672, 0x2a06, 0x5a96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3674 0x4e4e, 0x7e2a, 0x1272, 0x3606, 0x6696, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3675 0x5a4e, 0x062a, 0x1e72, 0x4206, 0x7296, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3676 0x664e, 0x122a, 0x2a72, 0x4e06, 0x7e96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3677 0x724e, 0x1e2a, 0x3672, 0x5a06, 0x0696, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3678 0x7e4e, 0x2a2a, 0x4272, 0x6606, 0x1296, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3679 0x064e, 0x362a, 0x4e72, 0x7206, 0x1e96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3680 0x124e, 0x422a, 0x5a72, 0x7e06, 0x2a96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3681 0x1e50, 0x4e2c, 0x6674, 0x0608, 0x3698, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3682 0x2a50, 0x5a2c, 0x7274, 0x1208, 0x4298, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3683 0x3650, 0x662c, 0x7e74, 0x1e08, 0x4e98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3684 0x4250, 0x722c, 0x0674, 0x2a08, 0x5a98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3685 0x4e50, 0x7e2c, 0x1274, 0x3608, 0x6698, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3686 0x5a50, 0x062c, 0x1e74, 0x4208, 0x7298, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3687 0x6650, 0x122c, 0x2a74, 0x4e08, 0x7e98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3688 0x7250, 0x1e2c, 0x3674, 0x5a08, 0x0698, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3689 0x7e50, 0x2a2c, 0x4274, 0x6608, 0x1298, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3690 0x0650, 0x362c, 0x4e74, 0x7208, 0x1e98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3691 0x1250, 0x422c, 0x5a74, 0x7e08, 0x2a98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3692 0x1e52, 0x4e2e, 0x6676, 0x060a, 0x369a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3693 0x2a52, 0x5a2e, 0x7276, 0x120a, 0x429a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3694 0x3652, 0x662e, 0x7e76, 0x1e0a, 0x4e9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3695 0x4252, 0x722e, 0x0676, 0x2a0a, 0x5a9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3696 0x4e52, 0x7e2e, 0x1276, 0x360a, 0x669a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3697 0x5a52, 0x062e, 0x1e76, 0x420a, 0x729a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3698 0x6652, 0x122e, 0x2a76, 0x4e0a, 0x7e9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3699 0x7252, 0x1e2e, 0x3676, 0x5a0a, 0x069a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3700 0x7e52, 0x2a2e, 0x4276, 0x660a, 0x129a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3701 0x0652, 0x362e, 0x4e76, 0x720a, 0x1e9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3702 0x1252, 0x422e, 0x5a76, 0x7e0a, 0x2a9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3703 0x1e54, 0x4e30, 0x6678, 0x060c, 0x369c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3704 0x2a54, 0x5a30, 0x7278, 0x120c, 0x429c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3705 0x3654, 0x6630, 0x7e78, 0x1e0c, 0x4e9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3706 0x4254, 0x7230, 0x0678, 0x2a0c, 0x5a9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3707 0x4e54, 0x7e30, 0x1278, 0x360c, 0x669c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3708 0x5a54, 0x0630, 0x1e78, 0x420c, 0x729c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3709 0x6654, 0x1230, 0x2a78, 0x4e0c, 0x7e9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3710 0x7254, 0x1e30, 0x3678, 0x5a0c, 0x069c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3711 0x7e54, 0x2a30, 0x4278, 0x660c, 0x129c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3712 0x0654, 0x3630, 0x4e78, 0x720c, 0x1e9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3713 0x1254, 0x4230, 0x5a78, 0x7e0c, 0x2a9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3714 0x1e56, 0x4e32, 0x667a, 0x060e, 0x369e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3715 0x2a56, 0x5a32, 0x727a, 0x120e, 0x429e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3716 0x3656, 0x6632, 0x7e7a, 0x1e0e, 0x4e9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3717 0x4256, 0x7232, 0x067a, 0x2a0e, 0x5a9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3718 0x4e56, 0x7e32, 0x127a, 0x360e, 0x669e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3719 0x5a56, 0x0632, 0x1e7a, 0x420e, 0x729e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3720 0x6656, 0x1232, 0x2a7a, 0x4e0e, 0x7e9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3721 0x7256, 0x1e32, 0x367a, 0x5a0e, 0x069e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3722 0x7e56, 0x2a32, 0x427a, 0x660e, 0x129e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3723 0x0656, 0x3632, 0x4e7a, 0x720e, 0x1e9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3724 0x1256, 0x4232, 0x5a7a, 0x7e0e, 0x2a9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3725 0x1e58, 0x4e34, 0x667c, 0x0610, 0x36a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3726 0x2a58, 0x5a34, 0x727c, 0x1210, 0x42a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3727 0x3658, 0x6634, 0x7e7c, 0x1e10, 0x4ea0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3728 0x4258, 0x7234, 0x067c, 0x2a10, 0x5aa0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3729 0x4e58, 0x7e34, 0x127c, 0x3610, 0x66a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3730 0x5a58, 0x0634, 0x1e7c, 0x4210, 0x72a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3731 0x6658, 0x1234, 0x2a7c, 0x4e10, 0x7ea0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3732 0x7258, 0x1e34, 0x367c, 0x5a10, 0x06a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3733 0x7e58, 0x2a34, 0x427c, 0x6610, 0x12a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3734 0x0658, 0x3634, 0x4e7c, 0x7210, 0x1ea0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3735 0x1258, 0x4234, 0x5a7c, 0x7e10, 0x2aa0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3736 0x2248, 0x5224, 0x6a6c, 0x0a00, 0x3a90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3737 0x2e48, 0x5e24, 0x766c, 0x1600, 0x4690, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3738 0x3a48, 0x6a24, 0x826c, 0x2200, 0x5290, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3739 0x4648, 0x7624, 0x0a6c, 0x2e00, 0x5e90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3740 0x5248, 0x8224, 0x166c, 0x3a00, 0x6a90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3741 0x5e48, 0x0a24, 0x226c, 0x4600, 0x7690, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3742 0x6a48, 0x1624, 0x2e6c, 0x5200, 0x8290, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3743 0x7648, 0x2224, 0x3a6c, 0x5e00, 0x0a90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3744 0x8248, 0x2e24, 0x466c, 0x6a00, 0x1690, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3745 0x0a48, 0x3a24, 0x526c, 0x7600, 0x2290, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3746 0x1648, 0x4624, 0x5e6c, 0x8200, 0x2e90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3747 0x224a, 0x5226, 0x6a6e, 0x0a02, 0x3a92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3748 0x2e4a, 0x5e26, 0x766e, 0x1602, 0x4692, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3749 0x3a4a, 0x6a26, 0x826e, 0x2202, 0x5292, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3750 0x464a, 0x7626, 0x0a6e, 0x2e02, 0x5e92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3751 0x524a, 0x8226, 0x166e, 0x3a02, 0x6a92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3752 0x5e4a, 0x0a26, 0x226e, 0x4602, 0x7692, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3753 0x6a4a, 0x1626, 0x2e6e, 0x5202, 0x8292, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3754 0x764a, 0x2226, 0x3a6e, 0x5e02, 0x0a92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3755 0x824a, 0x2e26, 0x466e, 0x6a02, 0x1692, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3756 0x0a4a, 0x3a26, 0x526e, 0x7602, 0x2292, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3757 0x164a, 0x4626, 0x5e6e, 0x8202, 0x2e92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3758 0x224c, 0x5228, 0x6a70, 0x0a04, 0x3a94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3759 0x2e4c, 0x5e28, 0x7670, 0x1604, 0x4694, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3760 0x3a4c, 0x6a28, 0x8270, 0x2204, 0x5294, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3761 0x464c, 0x7628, 0x0a70, 0x2e04, 0x5e94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3762 0x524c, 0x8228, 0x1670, 0x3a04, 0x6a94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3763 0x5e4c, 0x0a28, 0x2270, 0x4604, 0x7694, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3764 0x6a4c, 0x1628, 0x2e70, 0x5204, 0x8294, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3765 0x764c, 0x2228, 0x3a70, 0x5e04, 0x0a94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3766 0x824c, 0x2e28, 0x4670, 0x6a04, 0x1694, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3767 0x0a4c, 0x3a28, 0x5270, 0x7604, 0x2294, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3768 0x164c, 0x4628, 0x5e70, 0x8204, 0x2e94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3769 0x224e, 0x522a, 0x6a72, 0x0a06, 0x3a96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3770 0x2e4e, 0x5e2a, 0x7672, 0x1606, 0x4696, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3771 0x3a4e, 0x6a2a, 0x8272, 0x2206, 0x5296, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3772 0x464e, 0x762a, 0x0a72, 0x2e06, 0x5e96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3773 0x524e, 0x822a, 0x1672, 0x3a06, 0x6a96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3774 0x5e4e, 0x0a2a, 0x2272, 0x4606, 0x7696, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3775 0x6a4e, 0x162a, 0x2e72, 0x5206, 0x8296, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3776 0x764e, 0x222a, 0x3a72, 0x5e06, 0x0a96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3777 0x824e, 0x2e2a, 0x4672, 0x6a06, 0x1696, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3778 0x0a4e, 0x3a2a, 0x5272, 0x7606, 0x2296, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3779 0x164e, 0x462a, 0x5e72, 0x8206, 0x2e96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3780 0x2250, 0x522c, 0x6a74, 0x0a08, 0x3a98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3781 0x2e50, 0x5e2c, 0x7674, 0x1608, 0x4698, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3782 0x3a50, 0x6a2c, 0x8274, 0x2208, 0x5298, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3783 0x4650, 0x762c, 0x0a74, 0x2e08, 0x5e98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3784 0x5250, 0x822c, 0x1674, 0x3a08, 0x6a98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3785 0x5e50, 0x0a2c, 0x2274, 0x4608, 0x7698, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3786 0x6a50, 0x162c, 0x2e74, 0x5208, 0x8298, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3787 0x7650, 0x222c, 0x3a74, 0x5e08, 0x0a98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3788 0x8250, 0x2e2c, 0x4674, 0x6a08, 0x1698, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3789 0x0a50, 0x3a2c, 0x5274, 0x7608, 0x2298, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3790 0x1650, 0x462c, 0x5e74, 0x8208, 0x2e98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3791 0x2252, 0x522e, 0x6a76, 0x0a0a, 0x3a9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3792 0x2e52, 0x5e2e, 0x7676, 0x160a, 0x469a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3793 0x3a52, 0x6a2e, 0x8276, 0x220a, 0x529a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3794 0x4652, 0x762e, 0x0a76, 0x2e0a, 0x5e9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3795 0x5252, 0x822e, 0x1676, 0x3a0a, 0x6a9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3796 0x5e52, 0x0a2e, 0x2276, 0x460a, 0x769a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3797 0x6a52, 0x162e, 0x2e76, 0x520a, 0x829a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3798 0x7652, 0x222e, 0x3a76, 0x5e0a, 0x0a9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3799 0x8252, 0x2e2e, 0x4676, 0x6a0a, 0x169a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3800 0x0a52, 0x3a2e, 0x5276, 0x760a, 0x229a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3801 0x1652, 0x462e, 0x5e76, 0x820a, 0x2e9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3802 0x2254, 0x5230, 0x6a78, 0x0a0c, 0x3a9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3803 0x2e54, 0x5e30, 0x7678, 0x160c, 0x469c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3804 0x3a54, 0x6a30, 0x8278, 0x220c, 0x529c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3805 0x4654, 0x7630, 0x0a78, 0x2e0c, 0x5e9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3806 0x5254, 0x8230, 0x1678, 0x3a0c, 0x6a9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3807 0x5e54, 0x0a30, 0x2278, 0x460c, 0x769c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3808 0x6a54, 0x1630, 0x2e78, 0x520c, 0x829c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3809 0x7654, 0x2230, 0x3a78, 0x5e0c, 0x0a9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3810 0x8254, 0x2e30, 0x4678, 0x6a0c, 0x169c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3811 0x0a54, 0x3a30, 0x5278, 0x760c, 0x229c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3812 0x1654, 0x4630, 0x5e78, 0x820c, 0x2e9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3813 0x2256, 0x5232, 0x6a7a, 0x0a0e, 0x3a9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3814 0x2e56, 0x5e32, 0x767a, 0x160e, 0x469e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3815 0x3a56, 0x6a32, 0x827a, 0x220e, 0x529e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3816 0x4656, 0x7632, 0x0a7a, 0x2e0e, 0x5e9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3817 0x5256, 0x8232, 0x167a, 0x3a0e, 0x6a9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3818 0x5e56, 0x0a32, 0x227a, 0x460e, 0x769e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3819 0x6a56, 0x1632, 0x2e7a, 0x520e, 0x829e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3820 0x7656, 0x2232, 0x3a7a, 0x5e0e, 0x0a9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3821 0x8256, 0x2e32, 0x467a, 0x6a0e, 0x169e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3822 0x0a56, 0x3a32, 0x527a, 0x760e, 0x229e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3823 0x1656, 0x4632, 0x5e7a, 0x820e, 0x2e9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3824 0x2258, 0x5234, 0x6a7c, 0x0a10, 0x3aa0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3825 0x2e58, 0x5e34, 0x767c, 0x1610, 0x46a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3826 0x3a58, 0x6a34, 0x827c, 0x2210, 0x52a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3827 0x4658, 0x7634, 0x0a7c, 0x2e10, 0x5ea0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3828 0x5258, 0x8234, 0x167c, 0x3a10, 0x6aa0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3829 0x5e58, 0x0a34, 0x227c, 0x4610, 0x76a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3830 0x6a58, 0x1634, 0x2e7c, 0x5210, 0x82a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3831 0x7658, 0x2234, 0x3a7c, 0x5e10, 0x0aa0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3832 0x8258, 0x2e34, 0x467c, 0x6a10, 0x16a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3833 0x0a58, 0x3a34, 0x527c, 0x7610, 0x22a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3834 0x1658, 0x4634, 0x5e7c, 0x8210, 0x2ea0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3835 0x0000, 0x0036, 0x006c, 0x00a2, 0x8648, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3836 0x0002, 0x0038, 0x006e, 0x00a4, 0x864c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3837 0x0004, 0x003a, 0x0070, 0x00a6, 0x8650, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3838 0x0006, 0x003c, 0x0072, 0x00a8, 0x8654, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3839 0x0008, 0x003e, 0x0074, 0x00aa, 0x8658, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3840 0x000a, 0x0040, 0x0076, 0x00ac, 0x865c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3841 0x000c, 0x0042, 0x0078, 0x00ae, 0x8660, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3842 0x000e, 0x0044, 0x007a, 0x00b0, 0x8664, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3843 0x0010, 0x0046, 0x007c, 0x00b2, 0x8668, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3844 0x0012, 0x0048, 0x007e, 0x8600, 0x866c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3845 0x0014, 0x004a, 0x0080, 0x8604, 0x8670, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3846 0x0016, 0x004c, 0x0082, 0x8608, 0x8674, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3847 0x0018, 0x004e, 0x0084, 0x860c, 0x8678, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3848 0x001a, 0x0050, 0x0086, 0x8610, 0x867c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3849 0x001c, 0x0052, 0x0088, 0x8614, 0x8680, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3850 0x001e, 0x0054, 0x008a, 0x8618, 0x8684, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3851 0x0020, 0x0056, 0x008c, 0x861c, 0x8688, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3852 0x0022, 0x0058, 0x008e, 0x8620, 0x868c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3853 0x0024, 0x005a, 0x0090, 0x8624, 0x8690, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3854 0x0026, 0x005c, 0x0092, 0x8628, 0x8694, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3855 0x0028, 0x005e, 0x0094, 0x862c, 0x8698, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3856 0x002a, 0x0060, 0x0096, 0x8630, 0x869c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3857 0x002c, 0x0062, 0x0098, 0x8634, 0x86a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3858 0x002e, 0x0064, 0x009a, 0x8638, 0x86a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3859 0x0030, 0x0066, 0x009c, 0x863c, 0x86a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3860 0x0032, 0x0068, 0x009e, 0x8640, 0x86ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3861 0x0034, 0x006a, 0x00a0, 0x8644, 0x86b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3862 0x4a5a, 0x7a36, 0x0e7e, 0x3212, 0x62a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3863 0x565a, 0x0236, 0x1a7e, 0x3e12, 0x6ea2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3864 0x625a, 0x0e36, 0x267e, 0x4a12, 0x7aa2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3865 0x6e5a, 0x1a36, 0x327e, 0x5612, 0x02a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3866 0x7a5a, 0x2636, 0x3e7e, 0x6212, 0x0ea2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3867 0x025a, 0x3236, 0x4a7e, 0x6e12, 0x1aa2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3868 0x0e5a, 0x3e36, 0x567e, 0x7a12, 0x26a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3869 0x1a5a, 0x4a36, 0x627e, 0x0212, 0x32a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3870 0x265a, 0x5636, 0x6e7e, 0x0e12, 0x3ea2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3871 0x325a, 0x6236, 0x7a7e, 0x1a12, 0x4aa2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3872 0x3e5a, 0x6e36, 0x027e, 0x2612, 0x56a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3873 0x4a5c, 0x7a38, 0x0e80, 0x3214, 0x62a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3874 0x565c, 0x0238, 0x1a80, 0x3e14, 0x6ea4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3875 0x625c, 0x0e38, 0x2680, 0x4a14, 0x7aa4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3876 0x6e5c, 0x1a38, 0x3280, 0x5614, 0x02a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3877 0x7a5c, 0x2638, 0x3e80, 0x6214, 0x0ea4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3878 0x025c, 0x3238, 0x4a80, 0x6e14, 0x1aa4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3879 0x0e5c, 0x3e38, 0x5680, 0x7a14, 0x26a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3880 0x1a5c, 0x4a38, 0x6280, 0x0214, 0x32a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3881 0x265c, 0x5638, 0x6e80, 0x0e14, 0x3ea4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3882 0x325c, 0x6238, 0x7a80, 0x1a14, 0x4aa4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3883 0x3e5c, 0x6e38, 0x0280, 0x2614, 0x56a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3884 0x4a5e, 0x7a3a, 0x0e82, 0x3216, 0x62a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3885 0x565e, 0x023a, 0x1a82, 0x3e16, 0x6ea6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3886 0x625e, 0x0e3a, 0x2682, 0x4a16, 0x7aa6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3887 0x6e5e, 0x1a3a, 0x3282, 0x5616, 0x02a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3888 0x7a5e, 0x263a, 0x3e82, 0x6216, 0x0ea6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3889 0x025e, 0x323a, 0x4a82, 0x6e16, 0x1aa6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3890 0x0e5e, 0x3e3a, 0x5682, 0x7a16, 0x26a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3891 0x1a5e, 0x4a3a, 0x6282, 0x0216, 0x32a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3892 0x265e, 0x563a, 0x6e82, 0x0e16, 0x3ea6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3893 0x325e, 0x623a, 0x7a82, 0x1a16, 0x4aa6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3894 0x3e5e, 0x6e3a, 0x0282, 0x2616, 0x56a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3895 0x4a60, 0x7a3c, 0x0e84, 0x3218, 0x62a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3896 0x5660, 0x023c, 0x1a84, 0x3e18, 0x6ea8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3897 0x6260, 0x0e3c, 0x2684, 0x4a18, 0x7aa8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3898 0x6e60, 0x1a3c, 0x3284, 0x5618, 0x02a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3899 0x7a60, 0x263c, 0x3e84, 0x6218, 0x0ea8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3900 0x0260, 0x323c, 0x4a84, 0x6e18, 0x1aa8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3901 0x0e60, 0x3e3c, 0x5684, 0x7a18, 0x26a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3902 0x1a60, 0x4a3c, 0x6284, 0x0218, 0x32a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3903 0x2660, 0x563c, 0x6e84, 0x0e18, 0x3ea8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3904 0x3260, 0x623c, 0x7a84, 0x1a18, 0x4aa8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3905 0x3e60, 0x6e3c, 0x0284, 0x2618, 0x56a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3906 0x4a62, 0x7a3e, 0x0e86, 0x321a, 0x62aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3907 0x5662, 0x023e, 0x1a86, 0x3e1a, 0x6eaa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3908 0x6262, 0x0e3e, 0x2686, 0x4a1a, 0x7aaa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3909 0x6e62, 0x1a3e, 0x3286, 0x561a, 0x02aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3910 0x7a62, 0x263e, 0x3e86, 0x621a, 0x0eaa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3911 0x0262, 0x323e, 0x4a86, 0x6e1a, 0x1aaa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3912 0x0e62, 0x3e3e, 0x5686, 0x7a1a, 0x26aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3913 0x1a62, 0x4a3e, 0x6286, 0x021a, 0x32aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3914 0x2662, 0x563e, 0x6e86, 0x0e1a, 0x3eaa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3915 0x3262, 0x623e, 0x7a86, 0x1a1a, 0x4aaa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3916 0x3e62, 0x6e3e, 0x0286, 0x261a, 0x56aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3917 0x4a64, 0x7a40, 0x0e88, 0x321c, 0x62ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3918 0x5664, 0x0240, 0x1a88, 0x3e1c, 0x6eac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3919 0x6264, 0x0e40, 0x2688, 0x4a1c, 0x7aac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3920 0x6e64, 0x1a40, 0x3288, 0x561c, 0x02ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3921 0x7a64, 0x2640, 0x3e88, 0x621c, 0x0eac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3922 0x0264, 0x3240, 0x4a88, 0x6e1c, 0x1aac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3923 0x0e64, 0x3e40, 0x5688, 0x7a1c, 0x26ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3924 0x1a64, 0x4a40, 0x6288, 0x021c, 0x32ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3925 0x2664, 0x5640, 0x6e88, 0x0e1c, 0x3eac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3926 0x3264, 0x6240, 0x7a88, 0x1a1c, 0x4aac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3927 0x3e64, 0x6e40, 0x0288, 0x261c, 0x56ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3928 0x4a66, 0x7a42, 0x0e8a, 0x321e, 0x62ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3929 0x5666, 0x0242, 0x1a8a, 0x3e1e, 0x6eae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3930 0x6266, 0x0e42, 0x268a, 0x4a1e, 0x7aae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3931 0x6e66, 0x1a42, 0x328a, 0x561e, 0x02ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3932 0x7a66, 0x2642, 0x3e8a, 0x621e, 0x0eae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3933 0x0266, 0x3242, 0x4a8a, 0x6e1e, 0x1aae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3934 0x0e66, 0x3e42, 0x568a, 0x7a1e, 0x26ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3935 0x1a66, 0x4a42, 0x628a, 0x021e, 0x32ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3936 0x2666, 0x5642, 0x6e8a, 0x0e1e, 0x3eae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3937 0x3266, 0x6242, 0x7a8a, 0x1a1e, 0x4aae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3938 0x3e66, 0x6e42, 0x028a, 0x261e, 0x56ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3939 0x4a68, 0x7a44, 0x0e8c, 0x3220, 0x62b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3940 0x5668, 0x0244, 0x1a8c, 0x3e20, 0x6eb0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3941 0x6268, 0x0e44, 0x268c, 0x4a20, 0x7ab0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3942 0x6e68, 0x1a44, 0x328c, 0x5620, 0x02b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3943 0x7a68, 0x2644, 0x3e8c, 0x6220, 0x0eb0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3944 0x0268, 0x3244, 0x4a8c, 0x6e20, 0x1ab0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3945 0x0e68, 0x3e44, 0x568c, 0x7a20, 0x26b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3946 0x1a68, 0x4a44, 0x628c, 0x0220, 0x32b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3947 0x2668, 0x5644, 0x6e8c, 0x0e20, 0x3eb0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3948 0x3268, 0x6244, 0x7a8c, 0x1a20, 0x4ab0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3949 0x3e68, 0x6e44, 0x028c, 0x2620, 0x56b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3950 0x4a6a, 0x7a46, 0x0e8e, 0x3222, 0x62b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3951 0x566a, 0x0246, 0x1a8e, 0x3e22, 0x6eb2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3952 0x626a, 0x0e46, 0x268e, 0x4a22, 0x7ab2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3953 0x6e6a, 0x1a46, 0x328e, 0x5622, 0x02b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3954 0x7a6a, 0x2646, 0x3e8e, 0x6222, 0x0eb2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3955 0x026a, 0x3246, 0x4a8e, 0x6e22, 0x1ab2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3956 0x0e6a, 0x3e46, 0x568e, 0x7a22, 0x26b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3957 0x1a6a, 0x4a46, 0x628e, 0x0222, 0x32b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3958 0x266a, 0x5646, 0x6e8e, 0x0e22, 0x3eb2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3959 0x326a, 0x6246, 0x7a8e, 0x1a22, 0x4ab2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3960 0x3e6a, 0x6e46, 0x028e, 0x2622, 0x56b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3961 0x4e5a, 0x7e36, 0x127e, 0x3612, 0x66a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3962 0x5a5a, 0x0636, 0x1e7e, 0x4212, 0x72a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3963 0x665a, 0x1236, 0x2a7e, 0x4e12, 0x7ea2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3964 0x725a, 0x1e36, 0x367e, 0x5a12, 0x06a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3965 0x7e5a, 0x2a36, 0x427e, 0x6612, 0x12a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3966 0x065a, 0x3636, 0x4e7e, 0x7212, 0x1ea2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3967 0x125a, 0x4236, 0x5a7e, 0x7e12, 0x2aa2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3968 0x1e5a, 0x4e36, 0x667e, 0x0612, 0x36a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3969 0x2a5a, 0x5a36, 0x727e, 0x1212, 0x42a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3970 0x365a, 0x6636, 0x7e7e, 0x1e12, 0x4ea2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3971 0x425a, 0x7236, 0x067e, 0x2a12, 0x5aa2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3972 0x4e5c, 0x7e38, 0x1280, 0x3614, 0x66a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3973 0x5a5c, 0x0638, 0x1e80, 0x4214, 0x72a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3974 0x665c, 0x1238, 0x2a80, 0x4e14, 0x7ea4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3975 0x725c, 0x1e38, 0x3680, 0x5a14, 0x06a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3976 0x7e5c, 0x2a38, 0x4280, 0x6614, 0x12a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3977 0x065c, 0x3638, 0x4e80, 0x7214, 0x1ea4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3978 0x125c, 0x4238, 0x5a80, 0x7e14, 0x2aa4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3979 0x1e5c, 0x4e38, 0x6680, 0x0614, 0x36a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3980 0x2a5c, 0x5a38, 0x7280, 0x1214, 0x42a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3981 0x365c, 0x6638, 0x7e80, 0x1e14, 0x4ea4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3982 0x425c, 0x7238, 0x0680, 0x2a14, 0x5aa4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3983 0x4e5e, 0x7e3a, 0x1282, 0x3616, 0x66a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3984 0x5a5e, 0x063a, 0x1e82, 0x4216, 0x72a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3985 0x665e, 0x123a, 0x2a82, 0x4e16, 0x7ea6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3986 0x725e, 0x1e3a, 0x3682, 0x5a16, 0x06a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3987 0x7e5e, 0x2a3a, 0x4282, 0x6616, 0x12a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3988 0x065e, 0x363a, 0x4e82, 0x7216, 0x1ea6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3989 0x125e, 0x423a, 0x5a82, 0x7e16, 0x2aa6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3990 0x1e5e, 0x4e3a, 0x6682, 0x0616, 0x36a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3991 0x2a5e, 0x5a3a, 0x7282, 0x1216, 0x42a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3992 0x365e, 0x663a, 0x7e82, 0x1e16, 0x4ea6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3993 0x425e, 0x723a, 0x0682, 0x2a16, 0x5aa6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3994 0x4e60, 0x7e3c, 0x1284, 0x3618, 0x66a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3995 0x5a60, 0x063c, 0x1e84, 0x4218, 0x72a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3996 0x6660, 0x123c, 0x2a84, 0x4e18, 0x7ea8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3997 0x7260, 0x1e3c, 0x3684, 0x5a18, 0x06a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3998 0x7e60, 0x2a3c, 0x4284, 0x6618, 0x12a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
3999 0x0660, 0x363c, 0x4e84, 0x7218, 0x1ea8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4000 0x1260, 0x423c, 0x5a84, 0x7e18, 0x2aa8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4001 0x1e60, 0x4e3c, 0x6684, 0x0618, 0x36a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4002 0x2a60, 0x5a3c, 0x7284, 0x1218, 0x42a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4003 0x3660, 0x663c, 0x7e84, 0x1e18, 0x4ea8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4004 0x4260, 0x723c, 0x0684, 0x2a18, 0x5aa8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4005 0x4e62, 0x7e3e, 0x1286, 0x361a, 0x66aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4006 0x5a62, 0x063e, 0x1e86, 0x421a, 0x72aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4007 0x6662, 0x123e, 0x2a86, 0x4e1a, 0x7eaa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4008 0x7262, 0x1e3e, 0x3686, 0x5a1a, 0x06aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4009 0x7e62, 0x2a3e, 0x4286, 0x661a, 0x12aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4010 0x0662, 0x363e, 0x4e86, 0x721a, 0x1eaa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4011 0x1262, 0x423e, 0x5a86, 0x7e1a, 0x2aaa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4012 0x1e62, 0x4e3e, 0x6686, 0x061a, 0x36aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4013 0x2a62, 0x5a3e, 0x7286, 0x121a, 0x42aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4014 0x3662, 0x663e, 0x7e86, 0x1e1a, 0x4eaa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4015 0x4262, 0x723e, 0x0686, 0x2a1a, 0x5aaa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4016 0x4e64, 0x7e40, 0x1288, 0x361c, 0x66ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4017 0x5a64, 0x0640, 0x1e88, 0x421c, 0x72ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4018 0x6664, 0x1240, 0x2a88, 0x4e1c, 0x7eac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4019 0x7264, 0x1e40, 0x3688, 0x5a1c, 0x06ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4020 0x7e64, 0x2a40, 0x4288, 0x661c, 0x12ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4021 0x0664, 0x3640, 0x4e88, 0x721c, 0x1eac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4022 0x1264, 0x4240, 0x5a88, 0x7e1c, 0x2aac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4023 0x1e64, 0x4e40, 0x6688, 0x061c, 0x36ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4024 0x2a64, 0x5a40, 0x7288, 0x121c, 0x42ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4025 0x3664, 0x6640, 0x7e88, 0x1e1c, 0x4eac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4026 0x4264, 0x7240, 0x0688, 0x2a1c, 0x5aac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4027 0x4e66, 0x7e42, 0x128a, 0x361e, 0x66ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4028 0x5a66, 0x0642, 0x1e8a, 0x421e, 0x72ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4029 0x6666, 0x1242, 0x2a8a, 0x4e1e, 0x7eae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4030 0x7266, 0x1e42, 0x368a, 0x5a1e, 0x06ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4031 0x7e66, 0x2a42, 0x428a, 0x661e, 0x12ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4032 0x0666, 0x3642, 0x4e8a, 0x721e, 0x1eae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4033 0x1266, 0x4242, 0x5a8a, 0x7e1e, 0x2aae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4034 0x1e66, 0x4e42, 0x668a, 0x061e, 0x36ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4035 0x2a66, 0x5a42, 0x728a, 0x121e, 0x42ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4036 0x3666, 0x6642, 0x7e8a, 0x1e1e, 0x4eae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4037 0x4266, 0x7242, 0x068a, 0x2a1e, 0x5aae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4038 0x4e68, 0x7e44, 0x128c, 0x3620, 0x66b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4039 0x5a68, 0x0644, 0x1e8c, 0x4220, 0x72b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4040 0x6668, 0x1244, 0x2a8c, 0x4e20, 0x7eb0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4041 0x7268, 0x1e44, 0x368c, 0x5a20, 0x06b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4042 0x7e68, 0x2a44, 0x428c, 0x6620, 0x12b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4043 0x0668, 0x3644, 0x4e8c, 0x7220, 0x1eb0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4044 0x1268, 0x4244, 0x5a8c, 0x7e20, 0x2ab0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4045 0x1e68, 0x4e44, 0x668c, 0x0620, 0x36b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4046 0x2a68, 0x5a44, 0x728c, 0x1220, 0x42b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4047 0x3668, 0x6644, 0x7e8c, 0x1e20, 0x4eb0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4048 0x4268, 0x7244, 0x068c, 0x2a20, 0x5ab0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4049 0x4e6a, 0x7e46, 0x128e, 0x3622, 0x66b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4050 0x5a6a, 0x0646, 0x1e8e, 0x4222, 0x72b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4051 0x666a, 0x1246, 0x2a8e, 0x4e22, 0x7eb2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4052 0x726a, 0x1e46, 0x368e, 0x5a22, 0x06b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4053 0x7e6a, 0x2a46, 0x428e, 0x6622, 0x12b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4054 0x066a, 0x3646, 0x4e8e, 0x7222, 0x1eb2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4055 0x126a, 0x4246, 0x5a8e, 0x7e22, 0x2ab2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4056 0x1e6a, 0x4e46, 0x668e, 0x0622, 0x36b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4057 0x2a6a, 0x5a46, 0x728e, 0x1222, 0x42b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4058 0x366a, 0x6646, 0x7e8e, 0x1e22, 0x4eb2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4059 0x426a, 0x7246, 0x068e, 0x2a22, 0x5ab2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4060 0x525a, 0x8236, 0x167e, 0x3a12, 0x6aa2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4061 0x5e5a, 0x0a36, 0x227e, 0x4612, 0x76a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4062 0x6a5a, 0x1636, 0x2e7e, 0x5212, 0x82a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4063 0x765a, 0x2236, 0x3a7e, 0x5e12, 0x0aa2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4064 0x825a, 0x2e36, 0x467e, 0x6a12, 0x16a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4065 0x0a5a, 0x3a36, 0x527e, 0x7612, 0x22a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4066 0x165a, 0x4636, 0x5e7e, 0x8212, 0x2ea2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4067 0x225a, 0x5236, 0x6a7e, 0x0a12, 0x3aa2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4068 0x2e5a, 0x5e36, 0x767e, 0x1612, 0x46a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4069 0x3a5a, 0x6a36, 0x827e, 0x2212, 0x52a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4070 0x465a, 0x7636, 0x0a7e, 0x2e12, 0x5ea2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4071 0x525c, 0x8238, 0x1680, 0x3a14, 0x6aa4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4072 0x5e5c, 0x0a38, 0x2280, 0x4614, 0x76a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4073 0x6a5c, 0x1638, 0x2e80, 0x5214, 0x82a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4074 0x765c, 0x2238, 0x3a80, 0x5e14, 0x0aa4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4075 0x825c, 0x2e38, 0x4680, 0x6a14, 0x16a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4076 0x0a5c, 0x3a38, 0x5280, 0x7614, 0x22a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4077 0x165c, 0x4638, 0x5e80, 0x8214, 0x2ea4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4078 0x225c, 0x5238, 0x6a80, 0x0a14, 0x3aa4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4079 0x2e5c, 0x5e38, 0x7680, 0x1614, 0x46a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4080 0x3a5c, 0x6a38, 0x8280, 0x2214, 0x52a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4081 0x465c, 0x7638, 0x0a80, 0x2e14, 0x5ea4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4082 0x525e, 0x823a, 0x1682, 0x3a16, 0x6aa6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4083 0x5e5e, 0x0a3a, 0x2282, 0x4616, 0x76a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4084 0x6a5e, 0x163a, 0x2e82, 0x5216, 0x82a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4085 0x765e, 0x223a, 0x3a82, 0x5e16, 0x0aa6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4086 0x825e, 0x2e3a, 0x4682, 0x6a16, 0x16a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4087 0x0a5e, 0x3a3a, 0x5282, 0x7616, 0x22a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4088 0x165e, 0x463a, 0x5e82, 0x8216, 0x2ea6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4089 0x225e, 0x523a, 0x6a82, 0x0a16, 0x3aa6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4090 0x2e5e, 0x5e3a, 0x7682, 0x1616, 0x46a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4091 0x3a5e, 0x6a3a, 0x8282, 0x2216, 0x52a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4092 0x465e, 0x763a, 0x0a82, 0x2e16, 0x5ea6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4093 0x5260, 0x823c, 0x1684, 0x3a18, 0x6aa8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4094 0x5e60, 0x0a3c, 0x2284, 0x4618, 0x76a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4095 0x6a60, 0x163c, 0x2e84, 0x5218, 0x82a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4096 0x7660, 0x223c, 0x3a84, 0x5e18, 0x0aa8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4097 0x8260, 0x2e3c, 0x4684, 0x6a18, 0x16a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4098 0x0a60, 0x3a3c, 0x5284, 0x7618, 0x22a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4099 0x1660, 0x463c, 0x5e84, 0x8218, 0x2ea8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4100 0x2260, 0x523c, 0x6a84, 0x0a18, 0x3aa8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4101 0x2e60, 0x5e3c, 0x7684, 0x1618, 0x46a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4102 0x3a60, 0x6a3c, 0x8284, 0x2218, 0x52a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4103 0x4660, 0x763c, 0x0a84, 0x2e18, 0x5ea8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4104 0x5262, 0x823e, 0x1686, 0x3a1a, 0x6aaa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4105 0x5e62, 0x0a3e, 0x2286, 0x461a, 0x76aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4106 0x6a62, 0x163e, 0x2e86, 0x521a, 0x82aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4107 0x7662, 0x223e, 0x3a86, 0x5e1a, 0x0aaa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4108 0x8262, 0x2e3e, 0x4686, 0x6a1a, 0x16aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4109 0x0a62, 0x3a3e, 0x5286, 0x761a, 0x22aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4110 0x1662, 0x463e, 0x5e86, 0x821a, 0x2eaa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4111 0x2262, 0x523e, 0x6a86, 0x0a1a, 0x3aaa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4112 0x2e62, 0x5e3e, 0x7686, 0x161a, 0x46aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4113 0x3a62, 0x6a3e, 0x8286, 0x221a, 0x52aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4114 0x4662, 0x763e, 0x0a86, 0x2e1a, 0x5eaa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4115 0x5264, 0x8240, 0x1688, 0x3a1c, 0x6aac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4116 0x5e64, 0x0a40, 0x2288, 0x461c, 0x76ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4117 0x6a64, 0x1640, 0x2e88, 0x521c, 0x82ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4118 0x7664, 0x2240, 0x3a88, 0x5e1c, 0x0aac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4119 0x8264, 0x2e40, 0x4688, 0x6a1c, 0x16ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4120 0x0a64, 0x3a40, 0x5288, 0x761c, 0x22ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4121 0x1664, 0x4640, 0x5e88, 0x821c, 0x2eac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4122 0x2264, 0x5240, 0x6a88, 0x0a1c, 0x3aac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4123 0x2e64, 0x5e40, 0x7688, 0x161c, 0x46ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4124 0x3a64, 0x6a40, 0x8288, 0x221c, 0x52ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4125 0x4664, 0x7640, 0x0a88, 0x2e1c, 0x5eac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4126 0x5266, 0x8242, 0x168a, 0x3a1e, 0x6aae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4127 0x5e66, 0x0a42, 0x228a, 0x461e, 0x76ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4128 0x6a66, 0x1642, 0x2e8a, 0x521e, 0x82ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4129 0x7666, 0x2242, 0x3a8a, 0x5e1e, 0x0aae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4130 0x8266, 0x2e42, 0x468a, 0x6a1e, 0x16ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4131 0x0a66, 0x3a42, 0x528a, 0x761e, 0x22ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4132 0x1666, 0x4642, 0x5e8a, 0x821e, 0x2eae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4133 0x2266, 0x5242, 0x6a8a, 0x0a1e, 0x3aae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4134 0x2e66, 0x5e42, 0x768a, 0x161e, 0x46ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4135 0x3a66, 0x6a42, 0x828a, 0x221e, 0x52ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4136 0x4666, 0x7642, 0x0a8a, 0x2e1e, 0x5eae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4137 0x5268, 0x8244, 0x168c, 0x3a20, 0x6ab0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4138 0x5e68, 0x0a44, 0x228c, 0x4620, 0x76b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4139 0x6a68, 0x1644, 0x2e8c, 0x5220, 0x82b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4140 0x7668, 0x2244, 0x3a8c, 0x5e20, 0x0ab0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4141 0x8268, 0x2e44, 0x468c, 0x6a20, 0x16b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4142 0x0a68, 0x3a44, 0x528c, 0x7620, 0x22b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4143 0x1668, 0x4644, 0x5e8c, 0x8220, 0x2eb0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4144 0x2268, 0x5244, 0x6a8c, 0x0a20, 0x3ab0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4145 0x2e68, 0x5e44, 0x768c, 0x1620, 0x46b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4146 0x3a68, 0x6a44, 0x828c, 0x2220, 0x52b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4147 0x4668, 0x7644, 0x0a8c, 0x2e20, 0x5eb0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4148 0x526a, 0x8246, 0x168e, 0x3a22, 0x6ab2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4149 0x5e6a, 0x0a46, 0x228e, 0x4622, 0x76b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4150 0x6a6a, 0x1646, 0x2e8e, 0x5222, 0x82b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4151 0x766a, 0x2246, 0x3a8e, 0x5e22, 0x0ab2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4152 0x826a, 0x2e46, 0x468e, 0x6a22, 0x16b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4153 0x0a6a, 0x3a46, 0x528e, 0x7622, 0x22b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4154 0x166a, 0x4646, 0x5e8e, 0x8222, 0x2eb2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4155 0x226a, 0x5246, 0x6a8e, 0x0a22, 0x3ab2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4156 0x2e6a, 0x5e46, 0x768e, 0x1622, 0x46b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4157 0x3a6a, 0x6a46, 0x828e, 0x2222, 0x52b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4158 0x466a, 0x7646, 0x0a8e, 0x2e22, 0x5eb2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4159 0x4a5a, 0x7a36, 0x0e7e, 0x3212, 0x62a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4160 0x565a, 0x0236, 0x1a7e, 0x3e12, 0x6ea2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4161 0x625a, 0x0e36, 0x267e, 0x4a12, 0x7aa2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4162 0x6e5a, 0x1a36, 0x327e, 0x5612, 0x02a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4163 0x7a5a, 0x2636, 0x3e7e, 0x6212, 0x0ea2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4164 0x025a, 0x3236, 0x4a7e, 0x6e12, 0x1aa2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4165 0x0e5a, 0x3e36, 0x567e, 0x7a12, 0x26a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4166 0x1a5a, 0x4a36, 0x627e, 0x0212, 0x32a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4167 0x265a, 0x5636, 0x6e7e, 0x0e12, 0x3ea2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4168 0x325a, 0x6236, 0x7a7e, 0x1a12, 0x4aa2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4169 0x3e5a, 0x6e36, 0x027e, 0x2612, 0x56a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4170 0x4a5c, 0x7a38, 0x0e80, 0x3214, 0x62a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4171 0x565c, 0x0238, 0x1a80, 0x3e14, 0x6ea4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4172 0x625c, 0x0e38, 0x2680, 0x4a14, 0x7aa4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4173 0x6e5c, 0x1a38, 0x3280, 0x5614, 0x02a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4174 0x7a5c, 0x2638, 0x3e80, 0x6214, 0x0ea4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4175 0x025c, 0x3238, 0x4a80, 0x6e14, 0x1aa4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4176 0x0e5c, 0x3e38, 0x5680, 0x7a14, 0x26a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4177 0x1a5c, 0x4a38, 0x6280, 0x0214, 0x32a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4178 0x265c, 0x5638, 0x6e80, 0x0e14, 0x3ea4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4179 0x325c, 0x6238, 0x7a80, 0x1a14, 0x4aa4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4180 0x3e5c, 0x6e38, 0x0280, 0x2614, 0x56a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4181 0x4a5e, 0x7a3a, 0x0e82, 0x3216, 0x62a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4182 0x565e, 0x023a, 0x1a82, 0x3e16, 0x6ea6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4183 0x625e, 0x0e3a, 0x2682, 0x4a16, 0x7aa6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4184 0x6e5e, 0x1a3a, 0x3282, 0x5616, 0x02a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4185 0x7a5e, 0x263a, 0x3e82, 0x6216, 0x0ea6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4186 0x7c48, 0x2824, 0x406c, 0x6400, 0x1090, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4187 0x0448, 0x3424, 0x4c6c, 0x7000, 0x1c90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4188 0x1048, 0x4024, 0x586c, 0x7c00, 0x2890, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4189 0x1c48, 0x4c24, 0x646c, 0x0400, 0x3490, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4190 0x2848, 0x5824, 0x706c, 0x1000, 0x4090, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4191 0x3448, 0x6424, 0x7c6c, 0x1c00, 0x4c90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4192 0x4048, 0x7024, 0x046c, 0x2800, 0x5890, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4193 0x4c48, 0x7c24, 0x106c, 0x3400, 0x6490, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4194 0x5848, 0x0424, 0x1c6c, 0x4000, 0x7090, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4195 0x6448, 0x1024, 0x286c, 0x4c00, 0x7c90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4196 0x7048, 0x1c24, 0x346c, 0x5800, 0x0490, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4197 0x7c4a, 0x2826, 0x406e, 0x6402, 0x1092, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4198 0x044a, 0x3426, 0x4c6e, 0x7002, 0x1c92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4199 0x104a, 0x4026, 0x586e, 0x7c02, 0x2892, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4200 0x1c4a, 0x4c26, 0x646e, 0x0402, 0x3492, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4201 0x284a, 0x5826, 0x706e, 0x1002, 0x4092, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4202 0x344a, 0x6426, 0x7c6e, 0x1c02, 0x4c92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4203 0x404a, 0x7026, 0x046e, 0x2802, 0x5892, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4204 0x4c4a, 0x7c26, 0x106e, 0x3402, 0x6492, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4205 0x584a, 0x0426, 0x1c6e, 0x4002, 0x7092, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4206 0x644a, 0x1026, 0x286e, 0x4c02, 0x7c92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4207 0x704a, 0x1c26, 0x346e, 0x5802, 0x0492, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4208 0x7c4c, 0x2828, 0x4070, 0x6404, 0x1094, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4209 0x044c, 0x3428, 0x4c70, 0x7004, 0x1c94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4210 0x104c, 0x4028, 0x5870, 0x7c04, 0x2894, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4211 0x1c4c, 0x4c28, 0x6470, 0x0404, 0x3494, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4212 0x284c, 0x5828, 0x7070, 0x1004, 0x4094, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4213 0x344c, 0x6428, 0x7c70, 0x1c04, 0x4c94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4214 0x404c, 0x7028, 0x0470, 0x2804, 0x5894, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4215 0x4c4c, 0x7c28, 0x1070, 0x3404, 0x6494, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4216 0x584c, 0x0428, 0x1c70, 0x4004, 0x7094, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4217 0x644c, 0x1028, 0x2870, 0x4c04, 0x7c94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4218 0x704c, 0x1c28, 0x3470, 0x5804, 0x0494, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4219 0x7c4e, 0x282a, 0x4072, 0x6406, 0x1096, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4220 0x044e, 0x342a, 0x4c72, 0x7006, 0x1c96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4221 0x104e, 0x402a, 0x5872, 0x7c06, 0x2896, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4222 0x1c4e, 0x4c2a, 0x6472, 0x0406, 0x3496, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4223 0x284e, 0x582a, 0x7072, 0x1006, 0x4096, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4224 0x344e, 0x642a, 0x7c72, 0x1c06, 0x4c96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4225 0x404e, 0x702a, 0x0472, 0x2806, 0x5896, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4226 0x4c4e, 0x7c2a, 0x1072, 0x3406, 0x6496, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4227 0x584e, 0x042a, 0x1c72, 0x4006, 0x7096, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4228 0x644e, 0x102a, 0x2872, 0x4c06, 0x7c96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4229 0x704e, 0x1c2a, 0x3472, 0x5806, 0x0496, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4230 0x7c50, 0x282c, 0x4074, 0x6408, 0x1098, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4231 0x0450, 0x342c, 0x4c74, 0x7008, 0x1c98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4232 0x1050, 0x402c, 0x5874, 0x7c08, 0x2898, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4233 0x1c50, 0x4c2c, 0x6474, 0x0408, 0x3498, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4234 0x2850, 0x582c, 0x7074, 0x1008, 0x4098, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4235 0x3450, 0x642c, 0x7c74, 0x1c08, 0x4c98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4236 0x4050, 0x702c, 0x0474, 0x2808, 0x5898, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4237 0x4c50, 0x7c2c, 0x1074, 0x3408, 0x6498, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4238 0x5850, 0x042c, 0x1c74, 0x4008, 0x7098, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4239 0x6450, 0x102c, 0x2874, 0x4c08, 0x7c98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4240 0x7050, 0x1c2c, 0x3474, 0x5808, 0x0498, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4241 0x7c52, 0x282e, 0x4076, 0x640a, 0x109a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4242 0x0452, 0x342e, 0x4c76, 0x700a, 0x1c9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4243 0x1052, 0x402e, 0x5876, 0x7c0a, 0x289a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4244 0x1c52, 0x4c2e, 0x6476, 0x040a, 0x349a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4245 0x2852, 0x582e, 0x7076, 0x100a, 0x409a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4246 0x3452, 0x642e, 0x7c76, 0x1c0a, 0x4c9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4247 0x4052, 0x702e, 0x0476, 0x280a, 0x589a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4248 0x4c52, 0x7c2e, 0x1076, 0x340a, 0x649a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4249 0x5852, 0x042e, 0x1c76, 0x400a, 0x709a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4250 0x6452, 0x102e, 0x2876, 0x4c0a, 0x7c9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4251 0x7052, 0x1c2e, 0x3476, 0x580a, 0x049a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4252 0x7c54, 0x2830, 0x4078, 0x640c, 0x109c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4253 0x0454, 0x3430, 0x4c78, 0x700c, 0x1c9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4254 0x1054, 0x4030, 0x5878, 0x7c0c, 0x289c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4255 0x1c54, 0x4c30, 0x6478, 0x040c, 0x349c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4256 0x2854, 0x5830, 0x7078, 0x100c, 0x409c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4257 0x3454, 0x6430, 0x7c78, 0x1c0c, 0x4c9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4258 0x4054, 0x7030, 0x0478, 0x280c, 0x589c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4259 0x4c54, 0x7c30, 0x1078, 0x340c, 0x649c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4260 0x5854, 0x0430, 0x1c78, 0x400c, 0x709c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4261 0x6454, 0x1030, 0x2878, 0x4c0c, 0x7c9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4262 0x7054, 0x1c30, 0x3478, 0x580c, 0x049c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4263 0x7c56, 0x2832, 0x407a, 0x640e, 0x109e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4264 0x0456, 0x3432, 0x4c7a, 0x700e, 0x1c9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4265 0x1056, 0x4032, 0x587a, 0x7c0e, 0x289e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4266 0x1c56, 0x4c32, 0x647a, 0x040e, 0x349e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4267 0x2856, 0x5832, 0x707a, 0x100e, 0x409e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4268 0x3456, 0x6432, 0x7c7a, 0x1c0e, 0x4c9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4269 0x4056, 0x7032, 0x047a, 0x280e, 0x589e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4270 0x4c56, 0x7c32, 0x107a, 0x340e, 0x649e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4271 0x5856, 0x0432, 0x1c7a, 0x400e, 0x709e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4272 0x6456, 0x1032, 0x287a, 0x4c0e, 0x7c9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4273 0x7056, 0x1c32, 0x347a, 0x580e, 0x049e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4274 0x7c58, 0x2834, 0x407c, 0x6410, 0x10a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4275 0x0458, 0x3434, 0x4c7c, 0x7010, 0x1ca0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4276 0x1058, 0x4034, 0x587c, 0x7c10, 0x28a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4277 0x1c58, 0x4c34, 0x647c, 0x0410, 0x34a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4278 0x2858, 0x5834, 0x707c, 0x1010, 0x40a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4279 0x3458, 0x6434, 0x7c7c, 0x1c10, 0x4ca0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4280 0x4058, 0x7034, 0x047c, 0x2810, 0x58a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4281 0x4c58, 0x7c34, 0x107c, 0x3410, 0x64a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4282 0x5858, 0x0434, 0x1c7c, 0x4010, 0x70a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4283 0x6458, 0x1034, 0x287c, 0x4c10, 0x7ca0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4284 0x7058, 0x1c34, 0x347c, 0x5810, 0x04a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4285 0x8048, 0x2c24, 0x446c, 0x6800, 0x1490, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4286 0x0848, 0x3824, 0x506c, 0x7400, 0x2090, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4287 0x1448, 0x4424, 0x5c6c, 0x8000, 0x2c90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4288 0x2048, 0x5024, 0x686c, 0x0800, 0x3890, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4289 0x2c48, 0x5c24, 0x746c, 0x1400, 0x4490, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4290 0x3848, 0x6824, 0x806c, 0x2000, 0x5090, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4291 0x4448, 0x7424, 0x086c, 0x2c00, 0x5c90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4292 0x5048, 0x8024, 0x146c, 0x3800, 0x6890, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4293 0x5c48, 0x0824, 0x206c, 0x4400, 0x7490, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4294 0x6848, 0x1424, 0x2c6c, 0x5000, 0x8090, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4295 0x7448, 0x2024, 0x386c, 0x5c00, 0x0890, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4296 0x804a, 0x2c26, 0x446e, 0x6802, 0x1492, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4297 0x084a, 0x3826, 0x506e, 0x7402, 0x2092, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4298 0x144a, 0x4426, 0x5c6e, 0x8002, 0x2c92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4299 0x204a, 0x5026, 0x686e, 0x0802, 0x3892, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4300 0x2c4a, 0x5c26, 0x746e, 0x1402, 0x4492, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4301 0x384a, 0x6826, 0x806e, 0x2002, 0x5092, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4302 0x444a, 0x7426, 0x086e, 0x2c02, 0x5c92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4303 0x504a, 0x8026, 0x146e, 0x3802, 0x6892, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4304 0x5c4a, 0x0826, 0x206e, 0x4402, 0x7492, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4305 0x684a, 0x1426, 0x2c6e, 0x5002, 0x8092, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4306 0x744a, 0x2026, 0x386e, 0x5c02, 0x0892, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4307 0x804c, 0x2c28, 0x4470, 0x6804, 0x1494, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4308 0x084c, 0x3828, 0x5070, 0x7404, 0x2094, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4309 0x144c, 0x4428, 0x5c70, 0x8004, 0x2c94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4310 0x204c, 0x5028, 0x6870, 0x0804, 0x3894, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4311 0x2c4c, 0x5c28, 0x7470, 0x1404, 0x4494, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4312 0x384c, 0x6828, 0x8070, 0x2004, 0x5094, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4313 0x444c, 0x7428, 0x0870, 0x2c04, 0x5c94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4314 0x504c, 0x8028, 0x1470, 0x3804, 0x6894, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4315 0x5c4c, 0x0828, 0x2070, 0x4404, 0x7494, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4316 0x684c, 0x1428, 0x2c70, 0x5004, 0x8094, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4317 0x744c, 0x2028, 0x3870, 0x5c04, 0x0894, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4318 0x804e, 0x2c2a, 0x4472, 0x6806, 0x1496, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4319 0x084e, 0x382a, 0x5072, 0x7406, 0x2096, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4320 0x144e, 0x442a, 0x5c72, 0x8006, 0x2c96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4321 0x204e, 0x502a, 0x6872, 0x0806, 0x3896, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4322 0x2c4e, 0x5c2a, 0x7472, 0x1406, 0x4496, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4323 0x384e, 0x682a, 0x8072, 0x2006, 0x5096, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4324 0x444e, 0x742a, 0x0872, 0x2c06, 0x5c96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4325 0x504e, 0x802a, 0x1472, 0x3806, 0x6896, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4326 0x5c4e, 0x082a, 0x2072, 0x4406, 0x7496, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4327 0x684e, 0x142a, 0x2c72, 0x5006, 0x8096, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4328 0x744e, 0x202a, 0x3872, 0x5c06, 0x0896, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4329 0x8050, 0x2c2c, 0x4474, 0x6808, 0x1498, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4330 0x0850, 0x382c, 0x5074, 0x7408, 0x2098, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4331 0x1450, 0x442c, 0x5c74, 0x8008, 0x2c98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4332 0x2050, 0x502c, 0x6874, 0x0808, 0x3898, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4333 0x2c50, 0x5c2c, 0x7474, 0x1408, 0x4498, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4334 0x3850, 0x682c, 0x8074, 0x2008, 0x5098, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4335 0x4450, 0x742c, 0x0874, 0x2c08, 0x5c98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4336 0x5050, 0x802c, 0x1474, 0x3808, 0x6898, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4337 0x5c50, 0x082c, 0x2074, 0x4408, 0x7498, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4338 0x6850, 0x142c, 0x2c74, 0x5008, 0x8098, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4339 0x7450, 0x202c, 0x3874, 0x5c08, 0x0898, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4340 0x8052, 0x2c2e, 0x4476, 0x680a, 0x149a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4341 0x0852, 0x382e, 0x5076, 0x740a, 0x209a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4342 0x1452, 0x442e, 0x5c76, 0x800a, 0x2c9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4343 0x2052, 0x502e, 0x6876, 0x080a, 0x389a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4344 0x2c52, 0x5c2e, 0x7476, 0x140a, 0x449a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4345 0x3852, 0x682e, 0x8076, 0x200a, 0x509a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4346 0x4452, 0x742e, 0x0876, 0x2c0a, 0x5c9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4347 0x5052, 0x802e, 0x1476, 0x380a, 0x689a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4348 0x5c52, 0x082e, 0x2076, 0x440a, 0x749a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4349 0x6852, 0x142e, 0x2c76, 0x500a, 0x809a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4350 0x7452, 0x202e, 0x3876, 0x5c0a, 0x089a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4351 0x8054, 0x2c30, 0x4478, 0x680c, 0x149c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4352 0x0854, 0x3830, 0x5078, 0x740c, 0x209c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4353 0x1454, 0x4430, 0x5c78, 0x800c, 0x2c9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4354 0x2054, 0x5030, 0x6878, 0x080c, 0x389c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4355 0x2c54, 0x5c30, 0x7478, 0x140c, 0x449c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4356 0x3854, 0x6830, 0x8078, 0x200c, 0x509c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4357 0x4454, 0x7430, 0x0878, 0x2c0c, 0x5c9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4358 0x5054, 0x8030, 0x1478, 0x380c, 0x689c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4359 0x5c54, 0x0830, 0x2078, 0x440c, 0x749c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4360 0x6854, 0x1430, 0x2c78, 0x500c, 0x809c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4361 0x7454, 0x2030, 0x3878, 0x5c0c, 0x089c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4362 0x8056, 0x2c32, 0x447a, 0x680e, 0x149e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4363 0x0856, 0x3832, 0x507a, 0x740e, 0x209e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4364 0x1456, 0x4432, 0x5c7a, 0x800e, 0x2c9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4365 0x2056, 0x5032, 0x687a, 0x080e, 0x389e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4366 0x2c56, 0x5c32, 0x747a, 0x140e, 0x449e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4367 0x3856, 0x6832, 0x807a, 0x200e, 0x509e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4368 0x4456, 0x7432, 0x087a, 0x2c0e, 0x5c9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4369 0x5056, 0x8032, 0x147a, 0x380e, 0x689e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4370 0x5c56, 0x0832, 0x207a, 0x440e, 0x749e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4371 0x6856, 0x1432, 0x2c7a, 0x500e, 0x809e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4372 0x7456, 0x2032, 0x387a, 0x5c0e, 0x089e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4373 0x8058, 0x2c34, 0x447c, 0x6810, 0x14a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4374 0x0858, 0x3834, 0x507c, 0x7410, 0x20a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4375 0x1458, 0x4434, 0x5c7c, 0x8010, 0x2ca0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4376 0x2058, 0x5034, 0x687c, 0x0810, 0x38a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4377 0x2c58, 0x5c34, 0x747c, 0x1410, 0x44a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4378 0x3858, 0x6834, 0x807c, 0x2010, 0x50a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4379 0x4458, 0x7434, 0x087c, 0x2c10, 0x5ca0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4380 0x5058, 0x8034, 0x147c, 0x3810, 0x68a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4381 0x5c58, 0x0834, 0x207c, 0x4410, 0x74a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4382 0x6858, 0x1434, 0x2c7c, 0x5010, 0x80a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4383 0x7458, 0x2034, 0x387c, 0x5c10, 0x08a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4384 0x8448, 0x3024, 0x486c, 0x6c00, 0x1890, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4385 0x0c48, 0x3c24, 0x546c, 0x7800, 0x2490, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4386 0x1848, 0x4824, 0x606c, 0x8400, 0x3090, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4387 0x2448, 0x5424, 0x6c6c, 0x0c00, 0x3c90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4388 0x3048, 0x6024, 0x786c, 0x1800, 0x4890, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4389 0x3c48, 0x6c24, 0x846c, 0x2400, 0x5490, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4390 0x4848, 0x7824, 0x0c6c, 0x3000, 0x6090, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4391 0x5448, 0x8424, 0x186c, 0x3c00, 0x6c90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4392 0x6048, 0x0c24, 0x246c, 0x4800, 0x7890, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4393 0x6c48, 0x1824, 0x306c, 0x5400, 0x8490, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4394 0x7848, 0x2424, 0x3c6c, 0x6000, 0x0c90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4395 0x844a, 0x3026, 0x486e, 0x6c02, 0x1892, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4396 0x0c4a, 0x3c26, 0x546e, 0x7802, 0x2492, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4397 0x184a, 0x4826, 0x606e, 0x8402, 0x3092, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4398 0x244a, 0x5426, 0x6c6e, 0x0c02, 0x3c92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4399 0x304a, 0x6026, 0x786e, 0x1802, 0x4892, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4400 0x3c4a, 0x6c26, 0x846e, 0x2402, 0x5492, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4401 0x484a, 0x7826, 0x0c6e, 0x3002, 0x6092, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4402 0x544a, 0x8426, 0x186e, 0x3c02, 0x6c92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4403 0x604a, 0x0c26, 0x246e, 0x4802, 0x7892, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4404 0x6c4a, 0x1826, 0x306e, 0x5402, 0x8492, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4405 0x784a, 0x2426, 0x3c6e, 0x6002, 0x0c92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4406 0x844c, 0x3028, 0x4870, 0x6c04, 0x1894, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4407 0x0c4c, 0x3c28, 0x5470, 0x7804, 0x2494, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4408 0x184c, 0x4828, 0x6070, 0x8404, 0x3094, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4409 0x244c, 0x5428, 0x6c70, 0x0c04, 0x3c94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4410 0x304c, 0x6028, 0x7870, 0x1804, 0x4894, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4411 0x3c4c, 0x6c28, 0x8470, 0x2404, 0x5494, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4412 0x484c, 0x7828, 0x0c70, 0x3004, 0x6094, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4413 0x544c, 0x8428, 0x1870, 0x3c04, 0x6c94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4414 0x604c, 0x0c28, 0x2470, 0x4804, 0x7894, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4415 0x6c4c, 0x1828, 0x3070, 0x5404, 0x8494, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4416 0x784c, 0x2428, 0x3c70, 0x6004, 0x0c94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4417 0x844e, 0x302a, 0x4872, 0x6c06, 0x1896, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4418 0x0c4e, 0x3c2a, 0x5472, 0x7806, 0x2496, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4419 0x184e, 0x482a, 0x6072, 0x8406, 0x3096, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4420 0x244e, 0x542a, 0x6c72, 0x0c06, 0x3c96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4421 0x304e, 0x602a, 0x7872, 0x1806, 0x4896, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4422 0x3c4e, 0x6c2a, 0x8472, 0x2406, 0x5496, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4423 0x484e, 0x782a, 0x0c72, 0x3006, 0x6096, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4424 0x544e, 0x842a, 0x1872, 0x3c06, 0x6c96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4425 0x604e, 0x0c2a, 0x2472, 0x4806, 0x7896, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4426 0x6c4e, 0x182a, 0x3072, 0x5406, 0x8496, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4427 0x784e, 0x242a, 0x3c72, 0x6006, 0x0c96, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4428 0x8450, 0x302c, 0x4874, 0x6c08, 0x1898, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4429 0x0c50, 0x3c2c, 0x5474, 0x7808, 0x2498, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4430 0x1850, 0x482c, 0x6074, 0x8408, 0x3098, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4431 0x2450, 0x542c, 0x6c74, 0x0c08, 0x3c98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4432 0x3050, 0x602c, 0x7874, 0x1808, 0x4898, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4433 0x3c50, 0x6c2c, 0x8474, 0x2408, 0x5498, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4434 0x4850, 0x782c, 0x0c74, 0x3008, 0x6098, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4435 0x5450, 0x842c, 0x1874, 0x3c08, 0x6c98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4436 0x6050, 0x0c2c, 0x2474, 0x4808, 0x7898, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4437 0x6c50, 0x182c, 0x3074, 0x5408, 0x8498, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4438 0x7850, 0x242c, 0x3c74, 0x6008, 0x0c98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4439 0x8452, 0x302e, 0x4876, 0x6c0a, 0x189a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4440 0x0c52, 0x3c2e, 0x5476, 0x780a, 0x249a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4441 0x1852, 0x482e, 0x6076, 0x840a, 0x309a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4442 0x2452, 0x542e, 0x6c76, 0x0c0a, 0x3c9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4443 0x3052, 0x602e, 0x7876, 0x180a, 0x489a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4444 0x3c52, 0x6c2e, 0x8476, 0x240a, 0x549a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4445 0x4852, 0x782e, 0x0c76, 0x300a, 0x609a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4446 0x5452, 0x842e, 0x1876, 0x3c0a, 0x6c9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4447 0x6052, 0x0c2e, 0x2476, 0x480a, 0x789a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4448 0x6c52, 0x182e, 0x3076, 0x540a, 0x849a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4449 0x7852, 0x242e, 0x3c76, 0x600a, 0x0c9a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4450 0x8454, 0x3030, 0x4878, 0x6c0c, 0x189c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4451 0x0c54, 0x3c30, 0x5478, 0x780c, 0x249c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4452 0x1854, 0x4830, 0x6078, 0x840c, 0x309c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4453 0x2454, 0x5430, 0x6c78, 0x0c0c, 0x3c9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4454 0x3054, 0x6030, 0x7878, 0x180c, 0x489c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4455 0x3c54, 0x6c30, 0x8478, 0x240c, 0x549c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4456 0x4854, 0x7830, 0x0c78, 0x300c, 0x609c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4457 0x5454, 0x8430, 0x1878, 0x3c0c, 0x6c9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4458 0x6054, 0x0c30, 0x2478, 0x480c, 0x789c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4459 0x6c54, 0x1830, 0x3078, 0x540c, 0x849c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4460 0x7854, 0x2430, 0x3c78, 0x600c, 0x0c9c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4461 0x8456, 0x3032, 0x487a, 0x6c0e, 0x189e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4462 0x0c56, 0x3c32, 0x547a, 0x780e, 0x249e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4463 0x1856, 0x4832, 0x607a, 0x840e, 0x309e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4464 0x2456, 0x5432, 0x6c7a, 0x0c0e, 0x3c9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4465 0x3056, 0x6032, 0x787a, 0x180e, 0x489e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4466 0x3c56, 0x6c32, 0x847a, 0x240e, 0x549e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4467 0x4856, 0x7832, 0x0c7a, 0x300e, 0x609e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4468 0x5456, 0x8432, 0x187a, 0x3c0e, 0x6c9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4469 0x6056, 0x0c32, 0x247a, 0x480e, 0x789e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4470 0x6c56, 0x1832, 0x307a, 0x540e, 0x849e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4471 0x7856, 0x2432, 0x3c7a, 0x600e, 0x0c9e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4472 0x8458, 0x3034, 0x487c, 0x6c10, 0x18a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4473 0x0c58, 0x3c34, 0x547c, 0x7810, 0x24a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4474 0x1858, 0x4834, 0x607c, 0x8410, 0x30a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4475 0x2458, 0x5434, 0x6c7c, 0x0c10, 0x3ca0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4476 0x3058, 0x6034, 0x787c, 0x1810, 0x48a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4477 0x3c58, 0x6c34, 0x847c, 0x2410, 0x54a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4478 0x4858, 0x7834, 0x0c7c, 0x3010, 0x60a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4479 0x5458, 0x8434, 0x187c, 0x3c10, 0x6ca0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4480 0x6058, 0x0c34, 0x247c, 0x4810, 0x78a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4481 0x6c58, 0x1834, 0x307c, 0x5410, 0x84a0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4482 0x7858, 0x2434, 0x3c7c, 0x6010, 0x0ca0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4483 0x7c48, 0x2824, 0x406c, 0x6400, 0x1090, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4484 0x0448, 0x3424, 0x4c6c, 0x7000, 0x1c90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4485 0x1048, 0x4024, 0x586c, 0x7c00, 0x2890, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4486 0x1c48, 0x4c24, 0x646c, 0x0400, 0x3490, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4487 0x2848, 0x5824, 0x706c, 0x1000, 0x4090, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4488 0x3448, 0x6424, 0x7c6c, 0x1c00, 0x4c90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4489 0x4048, 0x7024, 0x046c, 0x2800, 0x5890, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4490 0x4c48, 0x7c24, 0x106c, 0x3400, 0x6490, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4491 0x5848, 0x0424, 0x1c6c, 0x4000, 0x7090, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4492 0x6448, 0x1024, 0x286c, 0x4c00, 0x7c90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4493 0x7048, 0x1c24, 0x346c, 0x5800, 0x0490, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4494 0x7c4a, 0x2826, 0x406e, 0x6402, 0x1092, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4495 0x044a, 0x3426, 0x4c6e, 0x7002, 0x1c92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4496 0x104a, 0x4026, 0x586e, 0x7c02, 0x2892, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4497 0x1c4a, 0x4c26, 0x646e, 0x0402, 0x3492, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4498 0x284a, 0x5826, 0x706e, 0x1002, 0x4092, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4499 0x344a, 0x6426, 0x7c6e, 0x1c02, 0x4c92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4500 0x404a, 0x7026, 0x046e, 0x2802, 0x5892, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4501 0x4c4a, 0x7c26, 0x106e, 0x3402, 0x6492, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4502 0x584a, 0x0426, 0x1c6e, 0x4002, 0x7092, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4503 0x644a, 0x1026, 0x286e, 0x4c02, 0x7c92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4504 0x704a, 0x1c26, 0x346e, 0x5802, 0x0492, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4505 0x7c4c, 0x2828, 0x4070, 0x6404, 0x1094, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4506 0x044c, 0x3428, 0x4c70, 0x7004, 0x1c94, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4507 0x104c, 0x4028, 0x5870, 0x7c04, 0x2894, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4508 0x1c4c, 0x4c28, 0x6470, 0x0404, 0x3494, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4509 0x284c, 0x5828, 0x7070, 0x1004, 0x4094, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4510 0x285a, 0x5836, 0x707e, 0x1012, 0x40a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4511 0x345a, 0x6436, 0x7c7e, 0x1c12, 0x4ca2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4512 0x405a, 0x7036, 0x047e, 0x2812, 0x58a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4513 0x4c5a, 0x7c36, 0x107e, 0x3412, 0x64a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4514 0x585a, 0x0436, 0x1c7e, 0x4012, 0x70a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4515 0x645a, 0x1036, 0x287e, 0x4c12, 0x7ca2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4516 0x705a, 0x1c36, 0x347e, 0x5812, 0x04a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4517 0x7c5a, 0x2836, 0x407e, 0x6412, 0x10a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4518 0x045a, 0x3436, 0x4c7e, 0x7012, 0x1ca2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4519 0x105a, 0x4036, 0x587e, 0x7c12, 0x28a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4520 0x1c5a, 0x4c36, 0x647e, 0x0412, 0x34a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4521 0x285c, 0x5838, 0x7080, 0x1014, 0x40a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4522 0x345c, 0x6438, 0x7c80, 0x1c14, 0x4ca4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4523 0x405c, 0x7038, 0x0480, 0x2814, 0x58a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4524 0x4c5c, 0x7c38, 0x1080, 0x3414, 0x64a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4525 0x585c, 0x0438, 0x1c80, 0x4014, 0x70a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4526 0x645c, 0x1038, 0x2880, 0x4c14, 0x7ca4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4527 0x705c, 0x1c38, 0x3480, 0x5814, 0x04a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4528 0x7c5c, 0x2838, 0x4080, 0x6414, 0x10a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4529 0x045c, 0x3438, 0x4c80, 0x7014, 0x1ca4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4530 0x105c, 0x4038, 0x5880, 0x7c14, 0x28a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4531 0x1c5c, 0x4c38, 0x6480, 0x0414, 0x34a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4532 0x285e, 0x583a, 0x7082, 0x1016, 0x40a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4533 0x345e, 0x643a, 0x7c82, 0x1c16, 0x4ca6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4534 0x405e, 0x703a, 0x0482, 0x2816, 0x58a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4535 0x4c5e, 0x7c3a, 0x1082, 0x3416, 0x64a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4536 0x585e, 0x043a, 0x1c82, 0x4016, 0x70a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4537 0x645e, 0x103a, 0x2882, 0x4c16, 0x7ca6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4538 0x705e, 0x1c3a, 0x3482, 0x5816, 0x04a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4539 0x7c5e, 0x283a, 0x4082, 0x6416, 0x10a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4540 0x045e, 0x343a, 0x4c82, 0x7016, 0x1ca6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4541 0x105e, 0x403a, 0x5882, 0x7c16, 0x28a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4542 0x1c5e, 0x4c3a, 0x6482, 0x0416, 0x34a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4543 0x2860, 0x583c, 0x7084, 0x1018, 0x40a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4544 0x3460, 0x643c, 0x7c84, 0x1c18, 0x4ca8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4545 0x4060, 0x703c, 0x0484, 0x2818, 0x58a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4546 0x4c60, 0x7c3c, 0x1084, 0x3418, 0x64a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4547 0x5860, 0x043c, 0x1c84, 0x4018, 0x70a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4548 0x6460, 0x103c, 0x2884, 0x4c18, 0x7ca8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4549 0x7060, 0x1c3c, 0x3484, 0x5818, 0x04a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4550 0x7c60, 0x283c, 0x4084, 0x6418, 0x10a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4551 0x0460, 0x343c, 0x4c84, 0x7018, 0x1ca8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4552 0x1060, 0x403c, 0x5884, 0x7c18, 0x28a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4553 0x1c60, 0x4c3c, 0x6484, 0x0418, 0x34a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4554 0x2862, 0x583e, 0x7086, 0x101a, 0x40aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4555 0x3462, 0x643e, 0x7c86, 0x1c1a, 0x4caa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4556 0x4062, 0x703e, 0x0486, 0x281a, 0x58aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4557 0x4c62, 0x7c3e, 0x1086, 0x341a, 0x64aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4558 0x5862, 0x043e, 0x1c86, 0x401a, 0x70aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4559 0x6462, 0x103e, 0x2886, 0x4c1a, 0x7caa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4560 0x7062, 0x1c3e, 0x3486, 0x581a, 0x04aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4561 0x7c62, 0x283e, 0x4086, 0x641a, 0x10aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4562 0x0462, 0x343e, 0x4c86, 0x701a, 0x1caa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4563 0x1062, 0x403e, 0x5886, 0x7c1a, 0x28aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4564 0x1c62, 0x4c3e, 0x6486, 0x041a, 0x34aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4565 0x2864, 0x5840, 0x7088, 0x101c, 0x40ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4566 0x3464, 0x6440, 0x7c88, 0x1c1c, 0x4cac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4567 0x4064, 0x7040, 0x0488, 0x281c, 0x58ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4568 0x4c64, 0x7c40, 0x1088, 0x341c, 0x64ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4569 0x5864, 0x0440, 0x1c88, 0x401c, 0x70ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4570 0x6464, 0x1040, 0x2888, 0x4c1c, 0x7cac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4571 0x7064, 0x1c40, 0x3488, 0x581c, 0x04ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4572 0x7c64, 0x2840, 0x4088, 0x641c, 0x10ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4573 0x0464, 0x3440, 0x4c88, 0x701c, 0x1cac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4574 0x1064, 0x4040, 0x5888, 0x7c1c, 0x28ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4575 0x1c64, 0x4c40, 0x6488, 0x041c, 0x34ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4576 0x2866, 0x5842, 0x708a, 0x101e, 0x40ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4577 0x3466, 0x6442, 0x7c8a, 0x1c1e, 0x4cae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4578 0x4066, 0x7042, 0x048a, 0x281e, 0x58ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4579 0x4c66, 0x7c42, 0x108a, 0x341e, 0x64ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4580 0x5866, 0x0442, 0x1c8a, 0x401e, 0x70ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4581 0x6466, 0x1042, 0x288a, 0x4c1e, 0x7cae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4582 0x7066, 0x1c42, 0x348a, 0x581e, 0x04ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4583 0x7c66, 0x2842, 0x408a, 0x641e, 0x10ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4584 0x0466, 0x3442, 0x4c8a, 0x701e, 0x1cae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4585 0x1066, 0x4042, 0x588a, 0x7c1e, 0x28ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4586 0x1c66, 0x4c42, 0x648a, 0x041e, 0x34ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4587 0x2868, 0x5844, 0x708c, 0x1020, 0x40b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4588 0x3468, 0x6444, 0x7c8c, 0x1c20, 0x4cb0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4589 0x4068, 0x7044, 0x048c, 0x2820, 0x58b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4590 0x4c68, 0x7c44, 0x108c, 0x3420, 0x64b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4591 0x5868, 0x0444, 0x1c8c, 0x4020, 0x70b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4592 0x6468, 0x1044, 0x288c, 0x4c20, 0x7cb0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4593 0x7068, 0x1c44, 0x348c, 0x5820, 0x04b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4594 0x7c68, 0x2844, 0x408c, 0x6420, 0x10b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4595 0x0468, 0x3444, 0x4c8c, 0x7020, 0x1cb0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4596 0x1068, 0x4044, 0x588c, 0x7c20, 0x28b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4597 0x1c68, 0x4c44, 0x648c, 0x0420, 0x34b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4598 0x286a, 0x5846, 0x708e, 0x1022, 0x40b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4599 0x346a, 0x6446, 0x7c8e, 0x1c22, 0x4cb2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4600 0x406a, 0x7046, 0x048e, 0x2822, 0x58b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4601 0x4c6a, 0x7c46, 0x108e, 0x3422, 0x64b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4602 0x586a, 0x0446, 0x1c8e, 0x4022, 0x70b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4603 0x646a, 0x1046, 0x288e, 0x4c22, 0x7cb2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4604 0x706a, 0x1c46, 0x348e, 0x5822, 0x04b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4605 0x7c6a, 0x2846, 0x408e, 0x6422, 0x10b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4606 0x046a, 0x3446, 0x4c8e, 0x7022, 0x1cb2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4607 0x106a, 0x4046, 0x588e, 0x7c22, 0x28b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4608 0x1c6a, 0x4c46, 0x648e, 0x0422, 0x34b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4609 0x2c5a, 0x5c36, 0x747e, 0x1412, 0x44a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4610 0x385a, 0x6836, 0x807e, 0x2012, 0x50a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4611 0x445a, 0x7436, 0x087e, 0x2c12, 0x5ca2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4612 0x505a, 0x8036, 0x147e, 0x3812, 0x68a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4613 0x5c5a, 0x0836, 0x207e, 0x4412, 0x74a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4614 0x685a, 0x1436, 0x2c7e, 0x5012, 0x80a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4615 0x745a, 0x2036, 0x387e, 0x5c12, 0x08a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4616 0x805a, 0x2c36, 0x447e, 0x6812, 0x14a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4617 0x085a, 0x3836, 0x507e, 0x7412, 0x20a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4618 0x145a, 0x4436, 0x5c7e, 0x8012, 0x2ca2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4619 0x205a, 0x5036, 0x687e, 0x0812, 0x38a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4620 0x2c5c, 0x5c38, 0x7480, 0x1414, 0x44a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4621 0x385c, 0x6838, 0x8080, 0x2014, 0x50a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4622 0x445c, 0x7438, 0x0880, 0x2c14, 0x5ca4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4623 0x505c, 0x8038, 0x1480, 0x3814, 0x68a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4624 0x5c5c, 0x0838, 0x2080, 0x4414, 0x74a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4625 0x685c, 0x1438, 0x2c80, 0x5014, 0x80a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4626 0x745c, 0x2038, 0x3880, 0x5c14, 0x08a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4627 0x805c, 0x2c38, 0x4480, 0x6814, 0x14a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4628 0x085c, 0x3838, 0x5080, 0x7414, 0x20a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4629 0x145c, 0x4438, 0x5c80, 0x8014, 0x2ca4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4630 0x205c, 0x5038, 0x6880, 0x0814, 0x38a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4631 0x2c5e, 0x5c3a, 0x7482, 0x1416, 0x44a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4632 0x385e, 0x683a, 0x8082, 0x2016, 0x50a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4633 0x445e, 0x743a, 0x0882, 0x2c16, 0x5ca6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4634 0x505e, 0x803a, 0x1482, 0x3816, 0x68a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4635 0x5c5e, 0x083a, 0x2082, 0x4416, 0x74a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4636 0x685e, 0x143a, 0x2c82, 0x5016, 0x80a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4637 0x745e, 0x203a, 0x3882, 0x5c16, 0x08a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4638 0x805e, 0x2c3a, 0x4482, 0x6816, 0x14a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4639 0x085e, 0x383a, 0x5082, 0x7416, 0x20a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4640 0x145e, 0x443a, 0x5c82, 0x8016, 0x2ca6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4641 0x205e, 0x503a, 0x6882, 0x0816, 0x38a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4642 0x2c60, 0x5c3c, 0x7484, 0x1418, 0x44a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4643 0x3860, 0x683c, 0x8084, 0x2018, 0x50a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4644 0x4460, 0x743c, 0x0884, 0x2c18, 0x5ca8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4645 0x5060, 0x803c, 0x1484, 0x3818, 0x68a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4646 0x5c60, 0x083c, 0x2084, 0x4418, 0x74a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4647 0x6860, 0x143c, 0x2c84, 0x5018, 0x80a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4648 0x7460, 0x203c, 0x3884, 0x5c18, 0x08a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4649 0x8060, 0x2c3c, 0x4484, 0x6818, 0x14a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4650 0x0860, 0x383c, 0x5084, 0x7418, 0x20a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4651 0x1460, 0x443c, 0x5c84, 0x8018, 0x2ca8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4652 0x2060, 0x503c, 0x6884, 0x0818, 0x38a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4653 0x2c62, 0x5c3e, 0x7486, 0x141a, 0x44aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4654 0x3862, 0x683e, 0x8086, 0x201a, 0x50aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4655 0x4462, 0x743e, 0x0886, 0x2c1a, 0x5caa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4656 0x5062, 0x803e, 0x1486, 0x381a, 0x68aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4657 0x5c62, 0x083e, 0x2086, 0x441a, 0x74aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4658 0x6862, 0x143e, 0x2c86, 0x501a, 0x80aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4659 0x7462, 0x203e, 0x3886, 0x5c1a, 0x08aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4660 0x8062, 0x2c3e, 0x4486, 0x681a, 0x14aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4661 0x0862, 0x383e, 0x5086, 0x741a, 0x20aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4662 0x1462, 0x443e, 0x5c86, 0x801a, 0x2caa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4663 0x2062, 0x503e, 0x6886, 0x081a, 0x38aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4664 0x2c64, 0x5c40, 0x7488, 0x141c, 0x44ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4665 0x3864, 0x6840, 0x8088, 0x201c, 0x50ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4666 0x4464, 0x7440, 0x0888, 0x2c1c, 0x5cac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4667 0x5064, 0x8040, 0x1488, 0x381c, 0x68ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4668 0x5c64, 0x0840, 0x2088, 0x441c, 0x74ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4669 0x6864, 0x1440, 0x2c88, 0x501c, 0x80ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4670 0x7464, 0x2040, 0x3888, 0x5c1c, 0x08ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4671 0x8064, 0x2c40, 0x4488, 0x681c, 0x14ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4672 0x0864, 0x3840, 0x5088, 0x741c, 0x20ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4673 0x1464, 0x4440, 0x5c88, 0x801c, 0x2cac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4674 0x2064, 0x5040, 0x6888, 0x081c, 0x38ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4675 0x2c66, 0x5c42, 0x748a, 0x141e, 0x44ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4676 0x3866, 0x6842, 0x808a, 0x201e, 0x50ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4677 0x4466, 0x7442, 0x088a, 0x2c1e, 0x5cae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4678 0x5066, 0x8042, 0x148a, 0x381e, 0x68ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4679 0x5c66, 0x0842, 0x208a, 0x441e, 0x74ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4680 0x6866, 0x1442, 0x2c8a, 0x501e, 0x80ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4681 0x7466, 0x2042, 0x388a, 0x5c1e, 0x08ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4682 0x8066, 0x2c42, 0x448a, 0x681e, 0x14ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4683 0x0866, 0x3842, 0x508a, 0x741e, 0x20ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4684 0x1466, 0x4442, 0x5c8a, 0x801e, 0x2cae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4685 0x2066, 0x5042, 0x688a, 0x081e, 0x38ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4686 0x2c68, 0x5c44, 0x748c, 0x1420, 0x44b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4687 0x3868, 0x6844, 0x808c, 0x2020, 0x50b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4688 0x4468, 0x7444, 0x088c, 0x2c20, 0x5cb0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4689 0x5068, 0x8044, 0x148c, 0x3820, 0x68b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4690 0x5c68, 0x0844, 0x208c, 0x4420, 0x74b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4691 0x6868, 0x1444, 0x2c8c, 0x5020, 0x80b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4692 0x7468, 0x2044, 0x388c, 0x5c20, 0x08b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4693 0x8068, 0x2c44, 0x448c, 0x6820, 0x14b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4694 0x0868, 0x3844, 0x508c, 0x7420, 0x20b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4695 0x1468, 0x4444, 0x5c8c, 0x8020, 0x2cb0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4696 0x2068, 0x5044, 0x688c, 0x0820, 0x38b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4697 0x2c6a, 0x5c46, 0x748e, 0x1422, 0x44b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4698 0x386a, 0x6846, 0x808e, 0x2022, 0x50b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4699 0x446a, 0x7446, 0x088e, 0x2c22, 0x5cb2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4700 0x506a, 0x8046, 0x148e, 0x3822, 0x68b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4701 0x5c6a, 0x0846, 0x208e, 0x4422, 0x74b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4702 0x686a, 0x1446, 0x2c8e, 0x5022, 0x80b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4703 0x746a, 0x2046, 0x388e, 0x5c22, 0x08b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4704 0x806a, 0x2c46, 0x448e, 0x6822, 0x14b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4705 0x086a, 0x3846, 0x508e, 0x7422, 0x20b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4706 0x146a, 0x4446, 0x5c8e, 0x8022, 0x2cb2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4707 0x206a, 0x5046, 0x688e, 0x0822, 0x38b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4708 0x305a, 0x6036, 0x787e, 0x1812, 0x48a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4709 0x3c5a, 0x6c36, 0x847e, 0x2412, 0x54a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4710 0x485a, 0x7836, 0x0c7e, 0x3012, 0x60a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4711 0x545a, 0x8436, 0x187e, 0x3c12, 0x6ca2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4712 0x605a, 0x0c36, 0x247e, 0x4812, 0x78a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4713 0x6c5a, 0x1836, 0x307e, 0x5412, 0x84a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4714 0x785a, 0x2436, 0x3c7e, 0x6012, 0x0ca2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4715 0x845a, 0x3036, 0x487e, 0x6c12, 0x18a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4716 0x0c5a, 0x3c36, 0x547e, 0x7812, 0x24a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4717 0x185a, 0x4836, 0x607e, 0x8412, 0x30a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4718 0x245a, 0x5436, 0x6c7e, 0x0c12, 0x3ca2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4719 0x305c, 0x6038, 0x7880, 0x1814, 0x48a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4720 0x3c5c, 0x6c38, 0x8480, 0x2414, 0x54a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4721 0x485c, 0x7838, 0x0c80, 0x3014, 0x60a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4722 0x545c, 0x8438, 0x1880, 0x3c14, 0x6ca4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4723 0x605c, 0x0c38, 0x2480, 0x4814, 0x78a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4724 0x6c5c, 0x1838, 0x3080, 0x5414, 0x84a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4725 0x785c, 0x2438, 0x3c80, 0x6014, 0x0ca4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4726 0x845c, 0x3038, 0x4880, 0x6c14, 0x18a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4727 0x0c5c, 0x3c38, 0x5480, 0x7814, 0x24a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4728 0x185c, 0x4838, 0x6080, 0x8414, 0x30a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4729 0x245c, 0x5438, 0x6c80, 0x0c14, 0x3ca4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4730 0x305e, 0x603a, 0x7882, 0x1816, 0x48a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4731 0x3c5e, 0x6c3a, 0x8482, 0x2416, 0x54a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4732 0x485e, 0x783a, 0x0c82, 0x3016, 0x60a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4733 0x545e, 0x843a, 0x1882, 0x3c16, 0x6ca6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4734 0x605e, 0x0c3a, 0x2482, 0x4816, 0x78a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4735 0x6c5e, 0x183a, 0x3082, 0x5416, 0x84a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4736 0x785e, 0x243a, 0x3c82, 0x6016, 0x0ca6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4737 0x845e, 0x303a, 0x4882, 0x6c16, 0x18a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4738 0x0c5e, 0x3c3a, 0x5482, 0x7816, 0x24a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4739 0x185e, 0x483a, 0x6082, 0x8416, 0x30a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4740 0x245e, 0x543a, 0x6c82, 0x0c16, 0x3ca6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4741 0x3060, 0x603c, 0x7884, 0x1818, 0x48a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4742 0x3c60, 0x6c3c, 0x8484, 0x2418, 0x54a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4743 0x4860, 0x783c, 0x0c84, 0x3018, 0x60a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4744 0x5460, 0x843c, 0x1884, 0x3c18, 0x6ca8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4745 0x6060, 0x0c3c, 0x2484, 0x4818, 0x78a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4746 0x6c60, 0x183c, 0x3084, 0x5418, 0x84a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4747 0x7860, 0x243c, 0x3c84, 0x6018, 0x0ca8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4748 0x8460, 0x303c, 0x4884, 0x6c18, 0x18a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4749 0x0c60, 0x3c3c, 0x5484, 0x7818, 0x24a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4750 0x1860, 0x483c, 0x6084, 0x8418, 0x30a8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4751 0x2460, 0x543c, 0x6c84, 0x0c18, 0x3ca8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4752 0x3062, 0x603e, 0x7886, 0x181a, 0x48aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4753 0x3c62, 0x6c3e, 0x8486, 0x241a, 0x54aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4754 0x4862, 0x783e, 0x0c86, 0x301a, 0x60aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4755 0x5462, 0x843e, 0x1886, 0x3c1a, 0x6caa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4756 0x6062, 0x0c3e, 0x2486, 0x481a, 0x78aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4757 0x6c62, 0x183e, 0x3086, 0x541a, 0x84aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4758 0x7862, 0x243e, 0x3c86, 0x601a, 0x0caa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4759 0x8462, 0x303e, 0x4886, 0x6c1a, 0x18aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4760 0x0c62, 0x3c3e, 0x5486, 0x781a, 0x24aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4761 0x1862, 0x483e, 0x6086, 0x841a, 0x30aa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4762 0x2462, 0x543e, 0x6c86, 0x0c1a, 0x3caa, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4763 0x3064, 0x6040, 0x7888, 0x181c, 0x48ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4764 0x3c64, 0x6c40, 0x8488, 0x241c, 0x54ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4765 0x4864, 0x7840, 0x0c88, 0x301c, 0x60ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4766 0x5464, 0x8440, 0x1888, 0x3c1c, 0x6cac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4767 0x6064, 0x0c40, 0x2488, 0x481c, 0x78ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4768 0x6c64, 0x1840, 0x3088, 0x541c, 0x84ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4769 0x7864, 0x2440, 0x3c88, 0x601c, 0x0cac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4770 0x8464, 0x3040, 0x4888, 0x6c1c, 0x18ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4771 0x0c64, 0x3c40, 0x5488, 0x781c, 0x24ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4772 0x1864, 0x4840, 0x6088, 0x841c, 0x30ac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4773 0x2464, 0x5440, 0x6c88, 0x0c1c, 0x3cac, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4774 0x3066, 0x6042, 0x788a, 0x181e, 0x48ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4775 0x3c66, 0x6c42, 0x848a, 0x241e, 0x54ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4776 0x4866, 0x7842, 0x0c8a, 0x301e, 0x60ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4777 0x5466, 0x8442, 0x188a, 0x3c1e, 0x6cae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4778 0x6066, 0x0c42, 0x248a, 0x481e, 0x78ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4779 0x6c66, 0x1842, 0x308a, 0x541e, 0x84ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4780 0x7866, 0x2442, 0x3c8a, 0x601e, 0x0cae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4781 0x8466, 0x3042, 0x488a, 0x6c1e, 0x18ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4782 0x0c66, 0x3c42, 0x548a, 0x781e, 0x24ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4783 0x1866, 0x4842, 0x608a, 0x841e, 0x30ae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4784 0x2466, 0x5442, 0x6c8a, 0x0c1e, 0x3cae, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4785 0x3068, 0x6044, 0x788c, 0x1820, 0x48b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4786 0x3c68, 0x6c44, 0x848c, 0x2420, 0x54b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4787 0x4868, 0x7844, 0x0c8c, 0x3020, 0x60b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4788 0x5468, 0x8444, 0x188c, 0x3c20, 0x6cb0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4789 0x6068, 0x0c44, 0x248c, 0x4820, 0x78b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4790 0x6c68, 0x1844, 0x308c, 0x5420, 0x84b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4791 0x7868, 0x2444, 0x3c8c, 0x6020, 0x0cb0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4792 0x8468, 0x3044, 0x488c, 0x6c20, 0x18b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4793 0x0c68, 0x3c44, 0x548c, 0x7820, 0x24b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4794 0x1868, 0x4844, 0x608c, 0x8420, 0x30b0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4795 0x2468, 0x5444, 0x6c8c, 0x0c20, 0x3cb0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4796 0x306a, 0x6046, 0x788e, 0x1822, 0x48b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4797 0x3c6a, 0x6c46, 0x848e, 0x2422, 0x54b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4798 0x486a, 0x7846, 0x0c8e, 0x3022, 0x60b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4799 0x546a, 0x8446, 0x188e, 0x3c22, 0x6cb2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4800 0x606a, 0x0c46, 0x248e, 0x4822, 0x78b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4801 0x6c6a, 0x1846, 0x308e, 0x5422, 0x84b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4802 0x786a, 0x2446, 0x3c8e, 0x6022, 0x0cb2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4803 0x846a, 0x3046, 0x488e, 0x6c22, 0x18b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4804 0x0c6a, 0x3c46, 0x548e, 0x7822, 0x24b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4805 0x186a, 0x4846, 0x608e, 0x8422, 0x30b2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4806 0x246a, 0x5446, 0x6c8e, 0x0c22, 0x3cb2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4807 0x285a, 0x5836, 0x707e, 0x1012, 0x40a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4808 0x345a, 0x6436, 0x7c7e, 0x1c12, 0x4ca2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4809 0x405a, 0x7036, 0x047e, 0x2812, 0x58a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4810 0x4c5a, 0x7c36, 0x107e, 0x3412, 0x64a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4811 0x585a, 0x0436, 0x1c7e, 0x4012, 0x70a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4812 0x645a, 0x1036, 0x287e, 0x4c12, 0x7ca2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4813 0x705a, 0x1c36, 0x347e, 0x5812, 0x04a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4814 0x7c5a, 0x2836, 0x407e, 0x6412, 0x10a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4815 0x045a, 0x3436, 0x4c7e, 0x7012, 0x1ca2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4816 0x105a, 0x4036, 0x587e, 0x7c12, 0x28a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4817 0x1c5a, 0x4c36, 0x647e, 0x0412, 0x34a2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4818 0x285c, 0x5838, 0x7080, 0x1014, 0x40a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4819 0x345c, 0x6438, 0x7c80, 0x1c14, 0x4ca4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4820 0x405c, 0x7038, 0x0480, 0x2814, 0x58a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4821 0x4c5c, 0x7c38, 0x1080, 0x3414, 0x64a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4822 0x585c, 0x0438, 0x1c80, 0x4014, 0x70a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4823 0x645c, 0x1038, 0x2880, 0x4c14, 0x7ca4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4824 0x705c, 0x1c38, 0x3480, 0x5814, 0x04a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4825 0x7c5c, 0x2838, 0x4080, 0x6414, 0x10a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4826 0x045c, 0x3438, 0x4c80, 0x7014, 0x1ca4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4827 0x105c, 0x4038, 0x5880, 0x7c14, 0x28a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4828 0x1c5c, 0x4c38, 0x6480, 0x0414, 0x34a4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4829 0x285e, 0x583a, 0x7082, 0x1016, 0x40a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4830 0x345e, 0x643a, 0x7c82, 0x1c16, 0x4ca6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4831 0x405e, 0x703a, 0x0482, 0x2816, 0x58a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4832 0x4c5e, 0x7c3a, 0x1082, 0x3416, 0x64a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4833 0x585e, 0x043a, 0x1c82, 0x4016, 0x70a6, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4834 }; |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4835 |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4836 static const uint16_t dv_place_720p60[2*10*27*5] = { |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4837 0x1230, 0x3618, 0x4848, 0x0000, 0x2460, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4838 0x2430, 0x4818, 0x0048, 0x1200, 0x3660, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4839 0x3630, 0x0018, 0x1248, 0x2400, 0x4860, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4840 0x4830, 0x1218, 0x2448, 0x3600, 0x0060, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4841 0x0030, 0x2418, 0x3648, 0x4800, 0x1260, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4842 0x1232, 0x361a, 0x484a, 0x0002, 0x2462, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4843 0x2432, 0x481a, 0x004a, 0x1202, 0x3662, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4844 0x3632, 0x001a, 0x124a, 0x2402, 0x4862, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4845 0x4832, 0x121a, 0x244a, 0x3602, 0x0062, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4846 0x0032, 0x241a, 0x364a, 0x4802, 0x1262, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4847 0x1234, 0x361c, 0x484c, 0x0004, 0x2464, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4848 0x2434, 0x481c, 0x004c, 0x1204, 0x3664, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4849 0x3634, 0x001c, 0x124c, 0x2404, 0x4864, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4850 0x4834, 0x121c, 0x244c, 0x3604, 0x0064, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4851 0x0034, 0x241c, 0x364c, 0x4804, 0x1264, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4852 0x1236, 0x361e, 0x484e, 0x0006, 0x2466, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4853 0x2436, 0x481e, 0x004e, 0x1206, 0x3666, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4854 0x3636, 0x001e, 0x124e, 0x2406, 0x4866, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4855 0x4836, 0x121e, 0x244e, 0x3606, 0x0066, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4856 0x0036, 0x241e, 0x364e, 0x4806, 0x1266, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4857 0x1238, 0x3620, 0x4850, 0x0008, 0x2468, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4858 0x2438, 0x4820, 0x0050, 0x1208, 0x3668, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4859 0x3638, 0x0020, 0x1250, 0x2408, 0x4868, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4860 0x4838, 0x1220, 0x2450, 0x3608, 0x0068, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4861 0x0038, 0x2420, 0x3650, 0x4808, 0x1268, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4862 0x123a, 0x3622, 0x4852, 0x000a, 0x246a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4863 0x243a, 0x4822, 0x0052, 0x120a, 0x366a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4864 0x363a, 0x0022, 0x1252, 0x240a, 0x486a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4865 0x483a, 0x1222, 0x2452, 0x360a, 0x006a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4866 0x003a, 0x2422, 0x3652, 0x480a, 0x126a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4867 0x1430, 0x3818, 0x4a48, 0x0200, 0x2660, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4868 0x2630, 0x4a18, 0x0248, 0x1400, 0x3860, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4869 0x3830, 0x0218, 0x1448, 0x2600, 0x4a60, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4870 0x4a30, 0x1418, 0x2648, 0x3800, 0x0260, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4871 0x0230, 0x2618, 0x3848, 0x4a00, 0x1460, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4872 0x1432, 0x381a, 0x4a4a, 0x0202, 0x2662, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4873 0x2632, 0x4a1a, 0x024a, 0x1402, 0x3862, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4874 0x3832, 0x021a, 0x144a, 0x2602, 0x4a62, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4875 0x4a32, 0x141a, 0x264a, 0x3802, 0x0262, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4876 0x0232, 0x261a, 0x384a, 0x4a02, 0x1462, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4877 0x1434, 0x381c, 0x4a4c, 0x0204, 0x2664, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4878 0x2634, 0x4a1c, 0x024c, 0x1404, 0x3864, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4879 0x3834, 0x021c, 0x144c, 0x2604, 0x4a64, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4880 0x4a34, 0x141c, 0x264c, 0x3804, 0x0264, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4881 0x0234, 0x261c, 0x384c, 0x4a04, 0x1464, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4882 0x1436, 0x381e, 0x4a4e, 0x0206, 0x2666, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4883 0x2636, 0x4a1e, 0x024e, 0x1406, 0x3866, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4884 0x3836, 0x021e, 0x144e, 0x2606, 0x4a66, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4885 0x4a36, 0x141e, 0x264e, 0x3806, 0x0266, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4886 0x0236, 0x261e, 0x384e, 0x4a06, 0x1466, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4887 0x1438, 0x3820, 0x4a50, 0x0208, 0x2668, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4888 0x2638, 0x4a20, 0x0250, 0x1408, 0x3868, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4889 0x3838, 0x0220, 0x1450, 0x2608, 0x4a68, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4890 0x4a38, 0x1420, 0x2650, 0x3808, 0x0268, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4891 0x0238, 0x2620, 0x3850, 0x4a08, 0x1468, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4892 0x143a, 0x3822, 0x4a52, 0x020a, 0x266a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4893 0x263a, 0x4a22, 0x0252, 0x140a, 0x386a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4894 0x383a, 0x0222, 0x1452, 0x260a, 0x4a6a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4895 0x4a3a, 0x1422, 0x2652, 0x380a, 0x026a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4896 0x023a, 0x2622, 0x3852, 0x4a0a, 0x146a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4897 0x1630, 0x3a18, 0x4c48, 0x0400, 0x2860, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4898 0x2830, 0x4c18, 0x0448, 0x1600, 0x3a60, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4899 0x3a30, 0x0418, 0x1648, 0x2800, 0x4c60, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4900 0x4c30, 0x1618, 0x2848, 0x3a00, 0x0460, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4901 0x0430, 0x2818, 0x3a48, 0x4c00, 0x1660, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4902 0x1632, 0x3a1a, 0x4c4a, 0x0402, 0x2862, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4903 0x2832, 0x4c1a, 0x044a, 0x1602, 0x3a62, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4904 0x3a32, 0x041a, 0x164a, 0x2802, 0x4c62, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4905 0x4c32, 0x161a, 0x284a, 0x3a02, 0x0462, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4906 0x0432, 0x281a, 0x3a4a, 0x4c02, 0x1662, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4907 0x1634, 0x3a1c, 0x4c4c, 0x0404, 0x2864, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4908 0x2834, 0x4c1c, 0x044c, 0x1604, 0x3a64, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4909 0x3a34, 0x041c, 0x164c, 0x2804, 0x4c64, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4910 0x4c34, 0x161c, 0x284c, 0x3a04, 0x0464, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4911 0x0434, 0x281c, 0x3a4c, 0x4c04, 0x1664, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4912 0x1636, 0x3a1e, 0x4c4e, 0x0406, 0x2866, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4913 0x2836, 0x4c1e, 0x044e, 0x1606, 0x3a66, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4914 0x3a36, 0x041e, 0x164e, 0x2806, 0x4c66, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4915 0x4c36, 0x161e, 0x284e, 0x3a06, 0x0466, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4916 0x0436, 0x281e, 0x3a4e, 0x4c06, 0x1666, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4917 0x1638, 0x3a20, 0x4c50, 0x0408, 0x2868, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4918 0x2838, 0x4c20, 0x0450, 0x1608, 0x3a68, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4919 0x3a38, 0x0420, 0x1650, 0x2808, 0x4c68, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4920 0x4c38, 0x1620, 0x2850, 0x3a08, 0x0468, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4921 0x0438, 0x2820, 0x3a50, 0x4c08, 0x1668, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4922 0x163a, 0x3a22, 0x4c52, 0x040a, 0x286a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4923 0x283a, 0x4c22, 0x0452, 0x160a, 0x3a6a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4924 0x3a3a, 0x0422, 0x1652, 0x280a, 0x4c6a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4925 0x4c3a, 0x1622, 0x2852, 0x3a0a, 0x046a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4926 0x043a, 0x2822, 0x3a52, 0x4c0a, 0x166a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4927 0x1830, 0x3c18, 0x4e48, 0x0600, 0x2a60, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4928 0x2a30, 0x4e18, 0x0648, 0x1800, 0x3c60, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4929 0x3c30, 0x0618, 0x1848, 0x2a00, 0x4e60, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4930 0x4e30, 0x1818, 0x2a48, 0x3c00, 0x0660, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4931 0x0630, 0x2a18, 0x3c48, 0x4e00, 0x1860, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4932 0x1832, 0x3c1a, 0x4e4a, 0x0602, 0x2a62, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4933 0x2a32, 0x4e1a, 0x064a, 0x1802, 0x3c62, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4934 0x3c32, 0x061a, 0x184a, 0x2a02, 0x4e62, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4935 0x4e32, 0x181a, 0x2a4a, 0x3c02, 0x0662, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4936 0x0632, 0x2a1a, 0x3c4a, 0x4e02, 0x1862, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4937 0x1834, 0x3c1c, 0x4e4c, 0x0604, 0x2a64, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4938 0x2a34, 0x4e1c, 0x064c, 0x1804, 0x3c64, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4939 0x3c34, 0x061c, 0x184c, 0x2a04, 0x4e64, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4940 0x4e34, 0x181c, 0x2a4c, 0x3c04, 0x0664, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4941 0x0634, 0x2a1c, 0x3c4c, 0x4e04, 0x1864, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4942 0x1836, 0x3c1e, 0x4e4e, 0x0606, 0x2a66, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4943 0x2a36, 0x4e1e, 0x064e, 0x1806, 0x3c66, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4944 0x3c36, 0x061e, 0x184e, 0x2a06, 0x4e66, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4945 0x4e36, 0x181e, 0x2a4e, 0x3c06, 0x0666, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4946 0x0636, 0x2a1e, 0x3c4e, 0x4e06, 0x1866, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4947 0x1838, 0x3c20, 0x4e50, 0x0608, 0x2a68, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4948 0x2a38, 0x4e20, 0x0650, 0x1808, 0x3c68, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4949 0x3c38, 0x0620, 0x1850, 0x2a08, 0x4e68, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4950 0x4e38, 0x1820, 0x2a50, 0x3c08, 0x0668, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4951 0x0638, 0x2a20, 0x3c50, 0x4e08, 0x1868, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4952 0x183a, 0x3c22, 0x4e52, 0x060a, 0x2a6a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4953 0x2a3a, 0x4e22, 0x0652, 0x180a, 0x3c6a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4954 0x3c3a, 0x0622, 0x1852, 0x2a0a, 0x4e6a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4955 0x4e3a, 0x1822, 0x2a52, 0x3c0a, 0x066a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4956 0x063a, 0x2a22, 0x3c52, 0x4e0a, 0x186a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4957 0x1a30, 0x3e18, 0x5048, 0x0800, 0x2c60, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4958 0x2c30, 0x5018, 0x0848, 0x1a00, 0x3e60, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4959 0x3e30, 0x0818, 0x1a48, 0x2c00, 0x5060, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4960 0x5030, 0x1a18, 0x2c48, 0x3e00, 0x0860, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4961 0x0830, 0x2c18, 0x3e48, 0x5000, 0x1a60, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4962 0x1a32, 0x3e1a, 0x504a, 0x0802, 0x2c62, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4963 0x2c32, 0x501a, 0x084a, 0x1a02, 0x3e62, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4964 0x3e32, 0x081a, 0x1a4a, 0x2c02, 0x5062, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4965 0x5032, 0x1a1a, 0x2c4a, 0x3e02, 0x0862, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4966 0x0832, 0x2c1a, 0x3e4a, 0x5002, 0x1a62, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4967 0x1a34, 0x3e1c, 0x504c, 0x0804, 0x2c64, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4968 0x2c34, 0x501c, 0x084c, 0x1a04, 0x3e64, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4969 0x3e34, 0x081c, 0x1a4c, 0x2c04, 0x5064, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4970 0x5034, 0x1a1c, 0x2c4c, 0x3e04, 0x0864, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4971 0x0834, 0x2c1c, 0x3e4c, 0x5004, 0x1a64, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4972 0x1a36, 0x3e1e, 0x504e, 0x0806, 0x2c66, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4973 0x2c36, 0x501e, 0x084e, 0x1a06, 0x3e66, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4974 0x3e36, 0x081e, 0x1a4e, 0x2c06, 0x5066, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4975 0x5036, 0x1a1e, 0x2c4e, 0x3e06, 0x0866, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4976 0x0836, 0x2c1e, 0x3e4e, 0x5006, 0x1a66, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4977 0x1a38, 0x3e20, 0x5050, 0x0808, 0x2c68, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4978 0x2c38, 0x5020, 0x0850, 0x1a08, 0x3e68, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4979 0x3e38, 0x0820, 0x1a50, 0x2c08, 0x5068, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4980 0x5038, 0x1a20, 0x2c50, 0x3e08, 0x0868, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4981 0x0838, 0x2c20, 0x3e50, 0x5008, 0x1a68, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4982 0x1a3a, 0x3e22, 0x5052, 0x080a, 0x2c6a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4983 0x2c3a, 0x5022, 0x0852, 0x1a0a, 0x3e6a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4984 0x3e3a, 0x0822, 0x1a52, 0x2c0a, 0x506a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4985 0x503a, 0x1a22, 0x2c52, 0x3e0a, 0x086a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4986 0x083a, 0x2c22, 0x3e52, 0x500a, 0x1a6a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4987 0x1c30, 0x4018, 0x5248, 0x0a00, 0x2e60, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4988 0x2e30, 0x5218, 0x0a48, 0x1c00, 0x4060, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4989 0x4030, 0x0a18, 0x1c48, 0x2e00, 0x5260, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4990 0x5230, 0x1c18, 0x2e48, 0x4000, 0x0a60, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4991 0x0a30, 0x2e18, 0x4048, 0x5200, 0x1c60, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4992 0x1c32, 0x401a, 0x524a, 0x0a02, 0x2e62, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4993 0x2e32, 0x521a, 0x0a4a, 0x1c02, 0x4062, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4994 0x4032, 0x0a1a, 0x1c4a, 0x2e02, 0x5262, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4995 0x5232, 0x1c1a, 0x2e4a, 0x4002, 0x0a62, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4996 0x0a32, 0x2e1a, 0x404a, 0x5202, 0x1c62, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4997 0x1c34, 0x401c, 0x524c, 0x0a04, 0x2e64, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4998 0x2e34, 0x521c, 0x0a4c, 0x1c04, 0x4064, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
4999 0x4034, 0x0a1c, 0x1c4c, 0x2e04, 0x5264, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5000 0x5234, 0x1c1c, 0x2e4c, 0x4004, 0x0a64, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5001 0x0a34, 0x2e1c, 0x404c, 0x5204, 0x1c64, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5002 0x1c36, 0x401e, 0x524e, 0x0a06, 0x2e66, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5003 0x2e36, 0x521e, 0x0a4e, 0x1c06, 0x4066, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5004 0x4036, 0x0a1e, 0x1c4e, 0x2e06, 0x5266, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5005 0x5236, 0x1c1e, 0x2e4e, 0x4006, 0x0a66, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5006 0x0a36, 0x2e1e, 0x404e, 0x5206, 0x1c66, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5007 0x1c38, 0x4020, 0x5250, 0x0a08, 0x2e68, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5008 0x2e38, 0x5220, 0x0a50, 0x1c08, 0x4068, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5009 0x4038, 0x0a20, 0x1c50, 0x2e08, 0x5268, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5010 0x5238, 0x1c20, 0x2e50, 0x4008, 0x0a68, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5011 0x0a38, 0x2e20, 0x4050, 0x5208, 0x1c68, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5012 0x1c3a, 0x4022, 0x5252, 0x0a0a, 0x2e6a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5013 0x2e3a, 0x5222, 0x0a52, 0x1c0a, 0x406a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5014 0x403a, 0x0a22, 0x1c52, 0x2e0a, 0x526a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5015 0x523a, 0x1c22, 0x2e52, 0x400a, 0x0a6a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5016 0x0a3a, 0x2e22, 0x4052, 0x520a, 0x1c6a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5017 0x1e30, 0x4218, 0x5448, 0x0c00, 0x3060, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5018 0x3030, 0x5418, 0x0c48, 0x1e00, 0x4260, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5019 0x4230, 0x0c18, 0x1e48, 0x3000, 0x5460, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5020 0x5430, 0x1e18, 0x3048, 0x4200, 0x0c60, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5021 0x0c30, 0x3018, 0x4248, 0x5400, 0x1e60, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5022 0x1e32, 0x421a, 0x544a, 0x0c02, 0x3062, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5023 0x3032, 0x541a, 0x0c4a, 0x1e02, 0x4262, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5024 0x4232, 0x0c1a, 0x1e4a, 0x3002, 0x5462, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5025 0x5432, 0x1e1a, 0x304a, 0x4202, 0x0c62, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5026 0x0c32, 0x301a, 0x424a, 0x5402, 0x1e62, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5027 0x1e34, 0x421c, 0x544c, 0x0c04, 0x3064, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5028 0x3034, 0x541c, 0x0c4c, 0x1e04, 0x4264, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5029 0x4234, 0x0c1c, 0x1e4c, 0x3004, 0x5464, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5030 0x5434, 0x1e1c, 0x304c, 0x4204, 0x0c64, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5031 0x0c34, 0x301c, 0x424c, 0x5404, 0x1e64, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5032 0x1e36, 0x421e, 0x544e, 0x0c06, 0x3066, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5033 0x3036, 0x541e, 0x0c4e, 0x1e06, 0x4266, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5034 0x4236, 0x0c1e, 0x1e4e, 0x3006, 0x5466, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5035 0x5436, 0x1e1e, 0x304e, 0x4206, 0x0c66, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5036 0x0c36, 0x301e, 0x424e, 0x5406, 0x1e66, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5037 0x1e38, 0x4220, 0x5450, 0x0c08, 0x3068, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5038 0x3038, 0x5420, 0x0c50, 0x1e08, 0x4268, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5039 0x4238, 0x0c20, 0x1e50, 0x3008, 0x5468, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5040 0x5438, 0x1e20, 0x3050, 0x4208, 0x0c68, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5041 0x0c38, 0x3020, 0x4250, 0x5408, 0x1e68, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5042 0x1e3a, 0x4222, 0x5452, 0x0c0a, 0x306a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5043 0x303a, 0x5422, 0x0c52, 0x1e0a, 0x426a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5044 0x423a, 0x0c22, 0x1e52, 0x300a, 0x546a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5045 0x543a, 0x1e22, 0x3052, 0x420a, 0x0c6a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5046 0x0c3a, 0x3022, 0x4252, 0x540a, 0x1e6a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5047 0x2030, 0x4418, 0x5648, 0x0e00, 0x3260, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5048 0x3230, 0x5618, 0x0e48, 0x2000, 0x4460, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5049 0x4430, 0x0e18, 0x2048, 0x3200, 0x5660, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5050 0x5630, 0x2018, 0x3248, 0x4400, 0x0e60, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5051 0x0e30, 0x3218, 0x4448, 0x5600, 0x2060, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5052 0x2032, 0x441a, 0x564a, 0x0e02, 0x3262, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5053 0x3232, 0x561a, 0x0e4a, 0x2002, 0x4462, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5054 0x4432, 0x0e1a, 0x204a, 0x3202, 0x5662, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5055 0x5632, 0x201a, 0x324a, 0x4402, 0x0e62, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5056 0x0e32, 0x321a, 0x444a, 0x5602, 0x2062, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5057 0x2034, 0x441c, 0x564c, 0x0e04, 0x3264, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5058 0x3234, 0x561c, 0x0e4c, 0x2004, 0x4464, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5059 0x4434, 0x0e1c, 0x204c, 0x3204, 0x5664, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5060 0x5634, 0x201c, 0x324c, 0x4404, 0x0e64, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5061 0x0e34, 0x321c, 0x444c, 0x5604, 0x2064, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5062 0x2036, 0x441e, 0x564e, 0x0e06, 0x3266, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5063 0x3236, 0x561e, 0x0e4e, 0x2006, 0x4466, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5064 0x4436, 0x0e1e, 0x204e, 0x3206, 0x5666, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5065 0x5636, 0x201e, 0x324e, 0x4406, 0x0e66, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5066 0x0e36, 0x321e, 0x444e, 0x5606, 0x2066, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5067 0x2038, 0x4420, 0x5650, 0x0e08, 0x3268, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5068 0x3238, 0x5620, 0x0e50, 0x2008, 0x4468, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5069 0x4438, 0x0e20, 0x2050, 0x3208, 0x5668, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5070 0x5638, 0x2020, 0x3250, 0x4408, 0x0e68, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5071 0x0e38, 0x3220, 0x4450, 0x5608, 0x2068, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5072 0x203a, 0x4422, 0x5652, 0x0e0a, 0x326a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5073 0x323a, 0x5622, 0x0e52, 0x200a, 0x446a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5074 0x443a, 0x0e22, 0x2052, 0x320a, 0x566a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5075 0x563a, 0x2022, 0x3252, 0x440a, 0x0e6a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5076 0x0e3a, 0x3222, 0x4452, 0x560a, 0x206a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5077 0x2230, 0x4618, 0x5848, 0x1000, 0x3460, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5078 0x3430, 0x5818, 0x1048, 0x2200, 0x4660, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5079 0x4630, 0x1018, 0x2248, 0x3400, 0x5860, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5080 0x5830, 0x2218, 0x3448, 0x4600, 0x1060, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5081 0x1030, 0x3418, 0x4648, 0x5800, 0x2260, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5082 0x2232, 0x461a, 0x584a, 0x1002, 0x3462, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5083 0x3432, 0x581a, 0x104a, 0x2202, 0x4662, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5084 0x4632, 0x101a, 0x224a, 0x3402, 0x5862, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5085 0x5832, 0x221a, 0x344a, 0x4602, 0x1062, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5086 0x1032, 0x341a, 0x464a, 0x5802, 0x2262, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5087 0x2234, 0x461c, 0x584c, 0x1004, 0x3464, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5088 0x3434, 0x581c, 0x104c, 0x2204, 0x4664, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5089 0x4634, 0x101c, 0x224c, 0x3404, 0x5864, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5090 0x5834, 0x221c, 0x344c, 0x4604, 0x1064, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5091 0x1034, 0x341c, 0x464c, 0x5804, 0x2264, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5092 0x2236, 0x461e, 0x584e, 0x1006, 0x3466, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5093 0x3436, 0x581e, 0x104e, 0x2206, 0x4666, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5094 0x4636, 0x101e, 0x224e, 0x3406, 0x5866, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5095 0x5836, 0x221e, 0x344e, 0x4606, 0x1066, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5096 0x1036, 0x341e, 0x464e, 0x5806, 0x2266, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5097 0x2238, 0x4620, 0x5850, 0x1008, 0x3468, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5098 0x3438, 0x5820, 0x1050, 0x2208, 0x4668, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5099 0x4638, 0x1020, 0x2250, 0x3408, 0x5868, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5100 0x5838, 0x2220, 0x3450, 0x4608, 0x1068, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5101 0x1038, 0x3420, 0x4650, 0x5808, 0x2268, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5102 0x223a, 0x4622, 0x5852, 0x100a, 0x346a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5103 0x343a, 0x5822, 0x1052, 0x220a, 0x466a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5104 0x463a, 0x1022, 0x2252, 0x340a, 0x586a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5105 0x583a, 0x2222, 0x3452, 0x460a, 0x106a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5106 0x103a, 0x3422, 0x4652, 0x580a, 0x226a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5107 0x363c, 0x0024, 0x1254, 0x240c, 0x486c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5108 0x483c, 0x1224, 0x2454, 0x360c, 0x006c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5109 0x003c, 0x2424, 0x3654, 0x480c, 0x126c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5110 0x123c, 0x3624, 0x4854, 0x000c, 0x246c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5111 0x243c, 0x4824, 0x0054, 0x120c, 0x366c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5112 0x363e, 0x0026, 0x1256, 0x240e, 0x486e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5113 0x483e, 0x1226, 0x2456, 0x360e, 0x006e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5114 0x003e, 0x2426, 0x3656, 0x480e, 0x126e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5115 0x123e, 0x3626, 0x4856, 0x000e, 0x246e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5116 0x243e, 0x4826, 0x0056, 0x120e, 0x366e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5117 0x3640, 0x0028, 0x1258, 0x2410, 0x4870, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5118 0x4840, 0x1228, 0x2458, 0x3610, 0x0070, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5119 0x0040, 0x2428, 0x3658, 0x4810, 0x1270, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5120 0x1240, 0x3628, 0x4858, 0x0010, 0x2470, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5121 0x2440, 0x4828, 0x0058, 0x1210, 0x3670, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5122 0x3642, 0x002a, 0x125a, 0x2412, 0x4872, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5123 0x4842, 0x122a, 0x245a, 0x3612, 0x0072, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5124 0x0042, 0x242a, 0x365a, 0x4812, 0x1272, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5125 0x1242, 0x362a, 0x485a, 0x0012, 0x2472, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5126 0x2442, 0x482a, 0x005a, 0x1212, 0x3672, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5127 0x3644, 0x002c, 0x125c, 0x2414, 0x4874, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5128 0x4844, 0x122c, 0x245c, 0x3614, 0x0074, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5129 0x0044, 0x242c, 0x365c, 0x4814, 0x1274, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5130 0x1244, 0x362c, 0x485c, 0x0014, 0x2474, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5131 0x2444, 0x482c, 0x005c, 0x1214, 0x3674, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5132 0x3646, 0x002e, 0x125e, 0x2416, 0x4876, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5133 0x4846, 0x122e, 0x245e, 0x3616, 0x0076, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5134 0x0046, 0x242e, 0x365e, 0x4816, 0x1276, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5135 0x1246, 0x362e, 0x485e, 0x0016, 0x2476, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5136 0x2446, 0x482e, 0x005e, 0x1216, 0x3676, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5137 0x383c, 0x0224, 0x1454, 0x260c, 0x4a6c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5138 0x4a3c, 0x1424, 0x2654, 0x380c, 0x026c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5139 0x023c, 0x2624, 0x3854, 0x4a0c, 0x146c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5140 0x143c, 0x3824, 0x4a54, 0x020c, 0x266c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5141 0x263c, 0x4a24, 0x0254, 0x140c, 0x386c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5142 0x383e, 0x0226, 0x1456, 0x260e, 0x4a6e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5143 0x4a3e, 0x1426, 0x2656, 0x380e, 0x026e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5144 0x023e, 0x2626, 0x3856, 0x4a0e, 0x146e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5145 0x143e, 0x3826, 0x4a56, 0x020e, 0x266e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5146 0x263e, 0x4a26, 0x0256, 0x140e, 0x386e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5147 0x3840, 0x0228, 0x1458, 0x2610, 0x4a70, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5148 0x4a40, 0x1428, 0x2658, 0x3810, 0x0270, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5149 0x0240, 0x2628, 0x3858, 0x4a10, 0x1470, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5150 0x1440, 0x3828, 0x4a58, 0x0210, 0x2670, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5151 0x2640, 0x4a28, 0x0258, 0x1410, 0x3870, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5152 0x3842, 0x022a, 0x145a, 0x2612, 0x4a72, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5153 0x4a42, 0x142a, 0x265a, 0x3812, 0x0272, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5154 0x0242, 0x262a, 0x385a, 0x4a12, 0x1472, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5155 0x1442, 0x382a, 0x4a5a, 0x0212, 0x2672, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5156 0x2642, 0x4a2a, 0x025a, 0x1412, 0x3872, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5157 0x3844, 0x022c, 0x145c, 0x2614, 0x4a74, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5158 0x4a44, 0x142c, 0x265c, 0x3814, 0x0274, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5159 0x0244, 0x262c, 0x385c, 0x4a14, 0x1474, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5160 0x1444, 0x382c, 0x4a5c, 0x0214, 0x2674, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5161 0x2644, 0x4a2c, 0x025c, 0x1414, 0x3874, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5162 0x3846, 0x022e, 0x145e, 0x2616, 0x4a76, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5163 0x4a46, 0x142e, 0x265e, 0x3816, 0x0276, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5164 0x0246, 0x262e, 0x385e, 0x4a16, 0x1476, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5165 0x1446, 0x382e, 0x4a5e, 0x0216, 0x2676, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5166 0x2646, 0x4a2e, 0x025e, 0x1416, 0x3876, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5167 0x3a3c, 0x0424, 0x1654, 0x280c, 0x4c6c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5168 0x4c3c, 0x1624, 0x2854, 0x3a0c, 0x046c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5169 0x043c, 0x2824, 0x3a54, 0x4c0c, 0x166c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5170 0x163c, 0x3a24, 0x4c54, 0x040c, 0x286c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5171 0x283c, 0x4c24, 0x0454, 0x160c, 0x3a6c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5172 0x3a3e, 0x0426, 0x1656, 0x280e, 0x4c6e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5173 0x4c3e, 0x1626, 0x2856, 0x3a0e, 0x046e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5174 0x043e, 0x2826, 0x3a56, 0x4c0e, 0x166e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5175 0x163e, 0x3a26, 0x4c56, 0x040e, 0x286e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5176 0x283e, 0x4c26, 0x0456, 0x160e, 0x3a6e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5177 0x3a40, 0x0428, 0x1658, 0x2810, 0x4c70, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5178 0x4c40, 0x1628, 0x2858, 0x3a10, 0x0470, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5179 0x0440, 0x2828, 0x3a58, 0x4c10, 0x1670, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5180 0x1640, 0x3a28, 0x4c58, 0x0410, 0x2870, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5181 0x2840, 0x4c28, 0x0458, 0x1610, 0x3a70, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5182 0x3a42, 0x042a, 0x165a, 0x2812, 0x4c72, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5183 0x4c42, 0x162a, 0x285a, 0x3a12, 0x0472, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5184 0x0442, 0x282a, 0x3a5a, 0x4c12, 0x1672, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5185 0x1642, 0x3a2a, 0x4c5a, 0x0412, 0x2872, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5186 0x2842, 0x4c2a, 0x045a, 0x1612, 0x3a72, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5187 0x3a44, 0x042c, 0x165c, 0x2814, 0x4c74, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5188 0x4c44, 0x162c, 0x285c, 0x3a14, 0x0474, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5189 0x0444, 0x282c, 0x3a5c, 0x4c14, 0x1674, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5190 0x1644, 0x3a2c, 0x4c5c, 0x0414, 0x2874, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5191 0x2844, 0x4c2c, 0x045c, 0x1614, 0x3a74, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5192 0x3a46, 0x042e, 0x165e, 0x2816, 0x4c76, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5193 0x4c46, 0x162e, 0x285e, 0x3a16, 0x0476, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5194 0x0446, 0x282e, 0x3a5e, 0x4c16, 0x1676, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5195 0x1646, 0x3a2e, 0x4c5e, 0x0416, 0x2876, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5196 0x2846, 0x4c2e, 0x045e, 0x1616, 0x3a76, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5197 0x3c3c, 0x0624, 0x1854, 0x2a0c, 0x4e6c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5198 0x4e3c, 0x1824, 0x2a54, 0x3c0c, 0x066c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5199 0x063c, 0x2a24, 0x3c54, 0x4e0c, 0x186c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5200 0x183c, 0x3c24, 0x4e54, 0x060c, 0x2a6c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5201 0x2a3c, 0x4e24, 0x0654, 0x180c, 0x3c6c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5202 0x3c3e, 0x0626, 0x1856, 0x2a0e, 0x4e6e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5203 0x4e3e, 0x1826, 0x2a56, 0x3c0e, 0x066e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5204 0x063e, 0x2a26, 0x3c56, 0x4e0e, 0x186e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5205 0x183e, 0x3c26, 0x4e56, 0x060e, 0x2a6e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5206 0x2a3e, 0x4e26, 0x0656, 0x180e, 0x3c6e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5207 0x3c40, 0x0628, 0x1858, 0x2a10, 0x4e70, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5208 0x4e40, 0x1828, 0x2a58, 0x3c10, 0x0670, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5209 0x0640, 0x2a28, 0x3c58, 0x4e10, 0x1870, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5210 0x1840, 0x3c28, 0x4e58, 0x0610, 0x2a70, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5211 0x2a40, 0x4e28, 0x0658, 0x1810, 0x3c70, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5212 0x3c42, 0x062a, 0x185a, 0x2a12, 0x4e72, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5213 0x4e42, 0x182a, 0x2a5a, 0x3c12, 0x0672, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5214 0x0642, 0x2a2a, 0x3c5a, 0x4e12, 0x1872, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5215 0x1842, 0x3c2a, 0x4e5a, 0x0612, 0x2a72, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5216 0x2a42, 0x4e2a, 0x065a, 0x1812, 0x3c72, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5217 0x3c44, 0x062c, 0x185c, 0x2a14, 0x4e74, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5218 0x4e44, 0x182c, 0x2a5c, 0x3c14, 0x0674, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5219 0x0644, 0x2a2c, 0x3c5c, 0x4e14, 0x1874, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5220 0x1844, 0x3c2c, 0x4e5c, 0x0614, 0x2a74, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5221 0x2a44, 0x4e2c, 0x065c, 0x1814, 0x3c74, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5222 0x3c46, 0x062e, 0x185e, 0x2a16, 0x4e76, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5223 0x4e46, 0x182e, 0x2a5e, 0x3c16, 0x0676, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5224 0x0646, 0x2a2e, 0x3c5e, 0x4e16, 0x1876, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5225 0x1846, 0x3c2e, 0x4e5e, 0x0616, 0x2a76, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5226 0x2a46, 0x4e2e, 0x065e, 0x1816, 0x3c76, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5227 0x3e3c, 0x0824, 0x1a54, 0x2c0c, 0x506c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5228 0x503c, 0x1a24, 0x2c54, 0x3e0c, 0x086c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5229 0x083c, 0x2c24, 0x3e54, 0x500c, 0x1a6c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5230 0x1a3c, 0x3e24, 0x5054, 0x080c, 0x2c6c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5231 0x2c3c, 0x5024, 0x0854, 0x1a0c, 0x3e6c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5232 0x3e3e, 0x0826, 0x1a56, 0x2c0e, 0x506e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5233 0x503e, 0x1a26, 0x2c56, 0x3e0e, 0x086e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5234 0x083e, 0x2c26, 0x3e56, 0x500e, 0x1a6e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5235 0x1a3e, 0x3e26, 0x5056, 0x080e, 0x2c6e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5236 0x2c3e, 0x5026, 0x0856, 0x1a0e, 0x3e6e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5237 0x3e40, 0x0828, 0x1a58, 0x2c10, 0x5070, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5238 0x5040, 0x1a28, 0x2c58, 0x3e10, 0x0870, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5239 0x0840, 0x2c28, 0x3e58, 0x5010, 0x1a70, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5240 0x1a40, 0x3e28, 0x5058, 0x0810, 0x2c70, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5241 0x2c40, 0x5028, 0x0858, 0x1a10, 0x3e70, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5242 0x3e42, 0x082a, 0x1a5a, 0x2c12, 0x5072, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5243 0x5042, 0x1a2a, 0x2c5a, 0x3e12, 0x0872, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5244 0x0842, 0x2c2a, 0x3e5a, 0x5012, 0x1a72, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5245 0x1a42, 0x3e2a, 0x505a, 0x0812, 0x2c72, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5246 0x2c42, 0x502a, 0x085a, 0x1a12, 0x3e72, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5247 0x3e44, 0x082c, 0x1a5c, 0x2c14, 0x5074, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5248 0x5044, 0x1a2c, 0x2c5c, 0x3e14, 0x0874, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5249 0x0844, 0x2c2c, 0x3e5c, 0x5014, 0x1a74, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5250 0x1a44, 0x3e2c, 0x505c, 0x0814, 0x2c74, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5251 0x2c44, 0x502c, 0x085c, 0x1a14, 0x3e74, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5252 0x3e46, 0x082e, 0x1a5e, 0x2c16, 0x5076, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5253 0x5046, 0x1a2e, 0x2c5e, 0x3e16, 0x0876, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5254 0x0846, 0x2c2e, 0x3e5e, 0x5016, 0x1a76, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5255 0x1a46, 0x3e2e, 0x505e, 0x0816, 0x2c76, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5256 0x2c46, 0x502e, 0x085e, 0x1a16, 0x3e76, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5257 0x403c, 0x0a24, 0x1c54, 0x2e0c, 0x526c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5258 0x523c, 0x1c24, 0x2e54, 0x400c, 0x0a6c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5259 0x0a3c, 0x2e24, 0x4054, 0x520c, 0x1c6c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5260 0x1c3c, 0x4024, 0x5254, 0x0a0c, 0x2e6c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5261 0x2e3c, 0x5224, 0x0a54, 0x1c0c, 0x406c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5262 0x403e, 0x0a26, 0x1c56, 0x2e0e, 0x526e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5263 0x523e, 0x1c26, 0x2e56, 0x400e, 0x0a6e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5264 0x0a3e, 0x2e26, 0x4056, 0x520e, 0x1c6e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5265 0x1c3e, 0x4026, 0x5256, 0x0a0e, 0x2e6e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5266 0x2e3e, 0x5226, 0x0a56, 0x1c0e, 0x406e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5267 0x4040, 0x0a28, 0x1c58, 0x2e10, 0x5270, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5268 0x5240, 0x1c28, 0x2e58, 0x4010, 0x0a70, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5269 0x0a40, 0x2e28, 0x4058, 0x5210, 0x1c70, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5270 0x1c40, 0x4028, 0x5258, 0x0a10, 0x2e70, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5271 0x2e40, 0x5228, 0x0a58, 0x1c10, 0x4070, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5272 0x4042, 0x0a2a, 0x1c5a, 0x2e12, 0x5272, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5273 0x5242, 0x1c2a, 0x2e5a, 0x4012, 0x0a72, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5274 0x0a42, 0x2e2a, 0x405a, 0x5212, 0x1c72, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5275 0x1c42, 0x402a, 0x525a, 0x0a12, 0x2e72, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5276 0x2e42, 0x522a, 0x0a5a, 0x1c12, 0x4072, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5277 0x4044, 0x0a2c, 0x1c5c, 0x2e14, 0x5274, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5278 0x5244, 0x1c2c, 0x2e5c, 0x4014, 0x0a74, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5279 0x0a44, 0x2e2c, 0x405c, 0x5214, 0x1c74, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5280 0x1c44, 0x402c, 0x525c, 0x0a14, 0x2e74, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5281 0x2e44, 0x522c, 0x0a5c, 0x1c14, 0x4074, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5282 0x4046, 0x0a2e, 0x1c5e, 0x2e16, 0x5276, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5283 0x5246, 0x1c2e, 0x2e5e, 0x4016, 0x0a76, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5284 0x0a46, 0x2e2e, 0x405e, 0x5216, 0x1c76, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5285 0x1c46, 0x402e, 0x525e, 0x0a16, 0x2e76, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5286 0x2e46, 0x522e, 0x0a5e, 0x1c16, 0x4076, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5287 0x423c, 0x0c24, 0x1e54, 0x300c, 0x546c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5288 0x543c, 0x1e24, 0x3054, 0x420c, 0x0c6c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5289 0x0c3c, 0x3024, 0x4254, 0x540c, 0x1e6c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5290 0x1e3c, 0x4224, 0x5454, 0x0c0c, 0x306c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5291 0x303c, 0x5424, 0x0c54, 0x1e0c, 0x426c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5292 0x423e, 0x0c26, 0x1e56, 0x300e, 0x546e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5293 0x543e, 0x1e26, 0x3056, 0x420e, 0x0c6e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5294 0x0c3e, 0x3026, 0x4256, 0x540e, 0x1e6e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5295 0x1e3e, 0x4226, 0x5456, 0x0c0e, 0x306e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5296 0x303e, 0x5426, 0x0c56, 0x1e0e, 0x426e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5297 0x4240, 0x0c28, 0x1e58, 0x3010, 0x5470, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5298 0x5440, 0x1e28, 0x3058, 0x4210, 0x0c70, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5299 0x0c40, 0x3028, 0x4258, 0x5410, 0x1e70, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5300 0x1e40, 0x4228, 0x5458, 0x0c10, 0x3070, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5301 0x3040, 0x5428, 0x0c58, 0x1e10, 0x4270, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5302 0x4242, 0x0c2a, 0x1e5a, 0x3012, 0x5472, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5303 0x5442, 0x1e2a, 0x305a, 0x4212, 0x0c72, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5304 0x0c42, 0x302a, 0x425a, 0x5412, 0x1e72, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5305 0x1e42, 0x422a, 0x545a, 0x0c12, 0x3072, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5306 0x3042, 0x542a, 0x0c5a, 0x1e12, 0x4272, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5307 0x4244, 0x0c2c, 0x1e5c, 0x3014, 0x5474, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5308 0x5444, 0x1e2c, 0x305c, 0x4214, 0x0c74, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5309 0x0c44, 0x302c, 0x425c, 0x5414, 0x1e74, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5310 0x1e44, 0x422c, 0x545c, 0x0c14, 0x3074, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5311 0x3044, 0x542c, 0x0c5c, 0x1e14, 0x4274, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5312 0x4246, 0x0c2e, 0x1e5e, 0x3016, 0x5476, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5313 0x5446, 0x1e2e, 0x305e, 0x4216, 0x0c76, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5314 0x0c46, 0x302e, 0x425e, 0x5416, 0x1e76, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5315 0x1e46, 0x422e, 0x545e, 0x0c16, 0x3076, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5316 0x3046, 0x542e, 0x0c5e, 0x1e16, 0x4276, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5317 0x443c, 0x0e24, 0x2054, 0x320c, 0x566c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5318 0x563c, 0x2024, 0x3254, 0x440c, 0x0e6c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5319 0x0e3c, 0x3224, 0x4454, 0x560c, 0x206c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5320 0x203c, 0x4424, 0x5654, 0x0e0c, 0x326c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5321 0x323c, 0x5624, 0x0e54, 0x200c, 0x446c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5322 0x443e, 0x0e26, 0x2056, 0x320e, 0x566e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5323 0x563e, 0x2026, 0x3256, 0x440e, 0x0e6e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5324 0x0e3e, 0x3226, 0x4456, 0x560e, 0x206e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5325 0x203e, 0x4426, 0x5656, 0x0e0e, 0x326e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5326 0x323e, 0x5626, 0x0e56, 0x200e, 0x446e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5327 0x4440, 0x0e28, 0x2058, 0x3210, 0x5670, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5328 0x5640, 0x2028, 0x3258, 0x4410, 0x0e70, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5329 0x0e40, 0x3228, 0x4458, 0x5610, 0x2070, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5330 0x2040, 0x4428, 0x5658, 0x0e10, 0x3270, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5331 0x3240, 0x5628, 0x0e58, 0x2010, 0x4470, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5332 0x4442, 0x0e2a, 0x205a, 0x3212, 0x5672, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5333 0x5642, 0x202a, 0x325a, 0x4412, 0x0e72, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5334 0x0e42, 0x322a, 0x445a, 0x5612, 0x2072, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5335 0x2042, 0x442a, 0x565a, 0x0e12, 0x3272, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5336 0x3242, 0x562a, 0x0e5a, 0x2012, 0x4472, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5337 0x4444, 0x0e2c, 0x205c, 0x3214, 0x5674, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5338 0x5644, 0x202c, 0x325c, 0x4414, 0x0e74, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5339 0x0e44, 0x322c, 0x445c, 0x5614, 0x2074, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5340 0x2044, 0x442c, 0x565c, 0x0e14, 0x3274, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5341 0x3244, 0x562c, 0x0e5c, 0x2014, 0x4474, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5342 0x4446, 0x0e2e, 0x205e, 0x3216, 0x5676, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5343 0x5646, 0x202e, 0x325e, 0x4416, 0x0e76, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5344 0x0e46, 0x322e, 0x445e, 0x5616, 0x2076, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5345 0x2046, 0x442e, 0x565e, 0x0e16, 0x3276, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5346 0x3246, 0x562e, 0x0e5e, 0x2016, 0x4476, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5347 0x463c, 0x1024, 0x2254, 0x340c, 0x586c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5348 0x583c, 0x2224, 0x3454, 0x460c, 0x106c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5349 0x103c, 0x3424, 0x4654, 0x580c, 0x226c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5350 0x223c, 0x4624, 0x5854, 0x100c, 0x346c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5351 0x343c, 0x5824, 0x1054, 0x220c, 0x466c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5352 0x463e, 0x1026, 0x2256, 0x340e, 0x586e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5353 0x583e, 0x2226, 0x3456, 0x460e, 0x106e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5354 0x103e, 0x3426, 0x4656, 0x580e, 0x226e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5355 0x223e, 0x4626, 0x5856, 0x100e, 0x346e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5356 0x343e, 0x5826, 0x1056, 0x220e, 0x466e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5357 0x4640, 0x1028, 0x2258, 0x3410, 0x5870, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5358 0x5840, 0x2228, 0x3458, 0x4610, 0x1070, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5359 0x1040, 0x3428, 0x4658, 0x5810, 0x2270, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5360 0x2240, 0x4628, 0x5858, 0x1010, 0x3470, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5361 0x3440, 0x5828, 0x1058, 0x2210, 0x4670, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5362 0x4642, 0x102a, 0x225a, 0x3412, 0x5872, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5363 0x5842, 0x222a, 0x345a, 0x4612, 0x1072, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5364 0x1042, 0x342a, 0x465a, 0x5812, 0x2272, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5365 0x2242, 0x462a, 0x585a, 0x1012, 0x3472, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5366 0x3442, 0x582a, 0x105a, 0x2212, 0x4672, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5367 0x4644, 0x102c, 0x225c, 0x3414, 0x5874, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5368 0x5844, 0x222c, 0x345c, 0x4614, 0x1074, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5369 0x1044, 0x342c, 0x465c, 0x5814, 0x2274, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5370 0x2244, 0x462c, 0x585c, 0x1014, 0x3474, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5371 0x3444, 0x582c, 0x105c, 0x2214, 0x4674, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5372 0x4646, 0x102e, 0x225e, 0x3416, 0x5876, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5373 0x5846, 0x222e, 0x345e, 0x4616, 0x1076, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5374 0x1046, 0x342e, 0x465e, 0x5816, 0x2276, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5375 0x2246, 0x462e, 0x585e, 0x1016, 0x3476, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5376 0x3446, 0x582e, 0x105e, 0x2216, 0x4676, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5377 }; |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5378 |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5379 static const uint16_t dv_place_720p50[2*12*27*5] = { |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5380 0x1230, 0x3618, 0x4848, 0x0000, 0x2460, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5381 0x2430, 0x4818, 0x0048, 0x1200, 0x3660, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5382 0x3630, 0x0018, 0x1248, 0x2400, 0x4860, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5383 0x4830, 0x1218, 0x2448, 0x3600, 0x0060, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5384 0x0030, 0x2418, 0x3648, 0x4800, 0x1260, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5385 0x1232, 0x361a, 0x484a, 0x0002, 0x2462, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5386 0x2432, 0x481a, 0x004a, 0x1202, 0x3662, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5387 0x3632, 0x001a, 0x124a, 0x2402, 0x4862, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5388 0x4832, 0x121a, 0x244a, 0x3602, 0x0062, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5389 0x0032, 0x241a, 0x364a, 0x4802, 0x1262, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5390 0x1234, 0x361c, 0x484c, 0x0004, 0x2464, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5391 0x2434, 0x481c, 0x004c, 0x1204, 0x3664, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5392 0x3634, 0x001c, 0x124c, 0x2404, 0x4864, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5393 0x4834, 0x121c, 0x244c, 0x3604, 0x0064, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5394 0x0034, 0x241c, 0x364c, 0x4804, 0x1264, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5395 0x1236, 0x361e, 0x484e, 0x0006, 0x2466, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5396 0x2436, 0x481e, 0x004e, 0x1206, 0x3666, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5397 0x3636, 0x001e, 0x124e, 0x2406, 0x4866, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5398 0x4836, 0x121e, 0x244e, 0x3606, 0x0066, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5399 0x0036, 0x241e, 0x364e, 0x4806, 0x1266, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5400 0x1238, 0x3620, 0x4850, 0x0008, 0x2468, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5401 0x2438, 0x4820, 0x0050, 0x1208, 0x3668, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5402 0x3638, 0x0020, 0x1250, 0x2408, 0x4868, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5403 0x4838, 0x1220, 0x2450, 0x3608, 0x0068, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5404 0x0038, 0x2420, 0x3650, 0x4808, 0x1268, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5405 0x123a, 0x3622, 0x4852, 0x000a, 0x246a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5406 0x243a, 0x4822, 0x0052, 0x120a, 0x366a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5407 0x363a, 0x0022, 0x1252, 0x240a, 0x486a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5408 0x483a, 0x1222, 0x2452, 0x360a, 0x006a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5409 0x003a, 0x2422, 0x3652, 0x480a, 0x126a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5410 0x1430, 0x3818, 0x4a48, 0x0200, 0x2660, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5411 0x2630, 0x4a18, 0x0248, 0x1400, 0x3860, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5412 0x3830, 0x0218, 0x1448, 0x2600, 0x4a60, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5413 0x4a30, 0x1418, 0x2648, 0x3800, 0x0260, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5414 0x0230, 0x2618, 0x3848, 0x4a00, 0x1460, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5415 0x1432, 0x381a, 0x4a4a, 0x0202, 0x2662, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5416 0x2632, 0x4a1a, 0x024a, 0x1402, 0x3862, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5417 0x3832, 0x021a, 0x144a, 0x2602, 0x4a62, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5418 0x4a32, 0x141a, 0x264a, 0x3802, 0x0262, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5419 0x0232, 0x261a, 0x384a, 0x4a02, 0x1462, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5420 0x1434, 0x381c, 0x4a4c, 0x0204, 0x2664, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5421 0x2634, 0x4a1c, 0x024c, 0x1404, 0x3864, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5422 0x3834, 0x021c, 0x144c, 0x2604, 0x4a64, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5423 0x4a34, 0x141c, 0x264c, 0x3804, 0x0264, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5424 0x0234, 0x261c, 0x384c, 0x4a04, 0x1464, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5425 0x1436, 0x381e, 0x4a4e, 0x0206, 0x2666, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5426 0x2636, 0x4a1e, 0x024e, 0x1406, 0x3866, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5427 0x3836, 0x021e, 0x144e, 0x2606, 0x4a66, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5428 0x4a36, 0x141e, 0x264e, 0x3806, 0x0266, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5429 0x0236, 0x261e, 0x384e, 0x4a06, 0x1466, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5430 0x1438, 0x3820, 0x4a50, 0x0208, 0x2668, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5431 0x2638, 0x4a20, 0x0250, 0x1408, 0x3868, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5432 0x3838, 0x0220, 0x1450, 0x2608, 0x4a68, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5433 0x4a38, 0x1420, 0x2650, 0x3808, 0x0268, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5434 0x0238, 0x2620, 0x3850, 0x4a08, 0x1468, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5435 0x143a, 0x3822, 0x4a52, 0x020a, 0x266a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5436 0x263a, 0x4a22, 0x0252, 0x140a, 0x386a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5437 0x383a, 0x0222, 0x1452, 0x260a, 0x4a6a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5438 0x4a3a, 0x1422, 0x2652, 0x380a, 0x026a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5439 0x023a, 0x2622, 0x3852, 0x4a0a, 0x146a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5440 0x1630, 0x3a18, 0x4c48, 0x0400, 0x2860, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5441 0x2830, 0x4c18, 0x0448, 0x1600, 0x3a60, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5442 0x3a30, 0x0418, 0x1648, 0x2800, 0x4c60, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5443 0x4c30, 0x1618, 0x2848, 0x3a00, 0x0460, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5444 0x0430, 0x2818, 0x3a48, 0x4c00, 0x1660, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5445 0x1632, 0x3a1a, 0x4c4a, 0x0402, 0x2862, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5446 0x2832, 0x4c1a, 0x044a, 0x1602, 0x3a62, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5447 0x3a32, 0x041a, 0x164a, 0x2802, 0x4c62, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5448 0x4c32, 0x161a, 0x284a, 0x3a02, 0x0462, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5449 0x0432, 0x281a, 0x3a4a, 0x4c02, 0x1662, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5450 0x1634, 0x3a1c, 0x4c4c, 0x0404, 0x2864, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5451 0x2834, 0x4c1c, 0x044c, 0x1604, 0x3a64, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5452 0x3a34, 0x041c, 0x164c, 0x2804, 0x4c64, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5453 0x4c34, 0x161c, 0x284c, 0x3a04, 0x0464, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5454 0x0434, 0x281c, 0x3a4c, 0x4c04, 0x1664, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5455 0x1636, 0x3a1e, 0x4c4e, 0x0406, 0x2866, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5456 0x2836, 0x4c1e, 0x044e, 0x1606, 0x3a66, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5457 0x3a36, 0x041e, 0x164e, 0x2806, 0x4c66, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5458 0x4c36, 0x161e, 0x284e, 0x3a06, 0x0466, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5459 0x0436, 0x281e, 0x3a4e, 0x4c06, 0x1666, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5460 0x1638, 0x3a20, 0x4c50, 0x0408, 0x2868, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5461 0x2838, 0x4c20, 0x0450, 0x1608, 0x3a68, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5462 0x3a38, 0x0420, 0x1650, 0x2808, 0x4c68, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5463 0x4c38, 0x1620, 0x2850, 0x3a08, 0x0468, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5464 0x0438, 0x2820, 0x3a50, 0x4c08, 0x1668, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5465 0x163a, 0x3a22, 0x4c52, 0x040a, 0x286a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5466 0x283a, 0x4c22, 0x0452, 0x160a, 0x3a6a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5467 0x3a3a, 0x0422, 0x1652, 0x280a, 0x4c6a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5468 0x4c3a, 0x1622, 0x2852, 0x3a0a, 0x046a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5469 0x043a, 0x2822, 0x3a52, 0x4c0a, 0x166a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5470 0x1830, 0x3c18, 0x4e48, 0x0600, 0x2a60, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5471 0x2a30, 0x4e18, 0x0648, 0x1800, 0x3c60, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5472 0x3c30, 0x0618, 0x1848, 0x2a00, 0x4e60, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5473 0x4e30, 0x1818, 0x2a48, 0x3c00, 0x0660, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5474 0x0630, 0x2a18, 0x3c48, 0x4e00, 0x1860, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5475 0x1832, 0x3c1a, 0x4e4a, 0x0602, 0x2a62, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5476 0x2a32, 0x4e1a, 0x064a, 0x1802, 0x3c62, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5477 0x3c32, 0x061a, 0x184a, 0x2a02, 0x4e62, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5478 0x4e32, 0x181a, 0x2a4a, 0x3c02, 0x0662, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5479 0x0632, 0x2a1a, 0x3c4a, 0x4e02, 0x1862, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5480 0x1834, 0x3c1c, 0x4e4c, 0x0604, 0x2a64, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5481 0x2a34, 0x4e1c, 0x064c, 0x1804, 0x3c64, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5482 0x3c34, 0x061c, 0x184c, 0x2a04, 0x4e64, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5483 0x4e34, 0x181c, 0x2a4c, 0x3c04, 0x0664, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5484 0x0634, 0x2a1c, 0x3c4c, 0x4e04, 0x1864, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5485 0x1836, 0x3c1e, 0x4e4e, 0x0606, 0x2a66, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5486 0x2a36, 0x4e1e, 0x064e, 0x1806, 0x3c66, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5487 0x3c36, 0x061e, 0x184e, 0x2a06, 0x4e66, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5488 0x4e36, 0x181e, 0x2a4e, 0x3c06, 0x0666, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5489 0x0636, 0x2a1e, 0x3c4e, 0x4e06, 0x1866, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5490 0x1838, 0x3c20, 0x4e50, 0x0608, 0x2a68, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5491 0x2a38, 0x4e20, 0x0650, 0x1808, 0x3c68, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5492 0x3c38, 0x0620, 0x1850, 0x2a08, 0x4e68, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5493 0x4e38, 0x1820, 0x2a50, 0x3c08, 0x0668, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5494 0x0638, 0x2a20, 0x3c50, 0x4e08, 0x1868, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5495 0x183a, 0x3c22, 0x4e52, 0x060a, 0x2a6a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5496 0x2a3a, 0x4e22, 0x0652, 0x180a, 0x3c6a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5497 0x3c3a, 0x0622, 0x1852, 0x2a0a, 0x4e6a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5498 0x4e3a, 0x1822, 0x2a52, 0x3c0a, 0x066a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5499 0x063a, 0x2a22, 0x3c52, 0x4e0a, 0x186a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5500 0x1a30, 0x3e18, 0x5048, 0x0800, 0x2c60, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5501 0x2c30, 0x5018, 0x0848, 0x1a00, 0x3e60, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5502 0x3e30, 0x0818, 0x1a48, 0x2c00, 0x5060, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5503 0x5030, 0x1a18, 0x2c48, 0x3e00, 0x0860, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5504 0x0830, 0x2c18, 0x3e48, 0x5000, 0x1a60, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5505 0x1a32, 0x3e1a, 0x504a, 0x0802, 0x2c62, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5506 0x2c32, 0x501a, 0x084a, 0x1a02, 0x3e62, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5507 0x3e32, 0x081a, 0x1a4a, 0x2c02, 0x5062, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5508 0x5032, 0x1a1a, 0x2c4a, 0x3e02, 0x0862, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5509 0x0832, 0x2c1a, 0x3e4a, 0x5002, 0x1a62, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5510 0x1a34, 0x3e1c, 0x504c, 0x0804, 0x2c64, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5511 0x2c34, 0x501c, 0x084c, 0x1a04, 0x3e64, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5512 0x3e34, 0x081c, 0x1a4c, 0x2c04, 0x5064, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5513 0x5034, 0x1a1c, 0x2c4c, 0x3e04, 0x0864, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5514 0x0834, 0x2c1c, 0x3e4c, 0x5004, 0x1a64, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5515 0x1a36, 0x3e1e, 0x504e, 0x0806, 0x2c66, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5516 0x2c36, 0x501e, 0x084e, 0x1a06, 0x3e66, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5517 0x3e36, 0x081e, 0x1a4e, 0x2c06, 0x5066, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5518 0x5036, 0x1a1e, 0x2c4e, 0x3e06, 0x0866, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5519 0x0836, 0x2c1e, 0x3e4e, 0x5006, 0x1a66, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5520 0x1a38, 0x3e20, 0x5050, 0x0808, 0x2c68, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5521 0x2c38, 0x5020, 0x0850, 0x1a08, 0x3e68, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5522 0x3e38, 0x0820, 0x1a50, 0x2c08, 0x5068, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5523 0x5038, 0x1a20, 0x2c50, 0x3e08, 0x0868, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5524 0x0838, 0x2c20, 0x3e50, 0x5008, 0x1a68, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5525 0x1a3a, 0x3e22, 0x5052, 0x080a, 0x2c6a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5526 0x2c3a, 0x5022, 0x0852, 0x1a0a, 0x3e6a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5527 0x3e3a, 0x0822, 0x1a52, 0x2c0a, 0x506a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5528 0x503a, 0x1a22, 0x2c52, 0x3e0a, 0x086a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5529 0x083a, 0x2c22, 0x3e52, 0x500a, 0x1a6a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5530 0x1c30, 0x4018, 0x5248, 0x0a00, 0x2e60, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5531 0x2e30, 0x5218, 0x0a48, 0x1c00, 0x4060, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5532 0x4030, 0x0a18, 0x1c48, 0x2e00, 0x5260, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5533 0x5230, 0x1c18, 0x2e48, 0x4000, 0x0a60, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5534 0x0a30, 0x2e18, 0x4048, 0x5200, 0x1c60, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5535 0x1c32, 0x401a, 0x524a, 0x0a02, 0x2e62, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5536 0x2e32, 0x521a, 0x0a4a, 0x1c02, 0x4062, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5537 0x4032, 0x0a1a, 0x1c4a, 0x2e02, 0x5262, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5538 0x5232, 0x1c1a, 0x2e4a, 0x4002, 0x0a62, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5539 0x0a32, 0x2e1a, 0x404a, 0x5202, 0x1c62, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5540 0x1c34, 0x401c, 0x524c, 0x0a04, 0x2e64, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5541 0x2e34, 0x521c, 0x0a4c, 0x1c04, 0x4064, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5542 0x4034, 0x0a1c, 0x1c4c, 0x2e04, 0x5264, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5543 0x5234, 0x1c1c, 0x2e4c, 0x4004, 0x0a64, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5544 0x0a34, 0x2e1c, 0x404c, 0x5204, 0x1c64, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5545 0x1c36, 0x401e, 0x524e, 0x0a06, 0x2e66, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5546 0x2e36, 0x521e, 0x0a4e, 0x1c06, 0x4066, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5547 0x4036, 0x0a1e, 0x1c4e, 0x2e06, 0x5266, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5548 0x5236, 0x1c1e, 0x2e4e, 0x4006, 0x0a66, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5549 0x0a36, 0x2e1e, 0x404e, 0x5206, 0x1c66, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5550 0x1c38, 0x4020, 0x5250, 0x0a08, 0x2e68, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5551 0x2e38, 0x5220, 0x0a50, 0x1c08, 0x4068, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5552 0x4038, 0x0a20, 0x1c50, 0x2e08, 0x5268, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5553 0x5238, 0x1c20, 0x2e50, 0x4008, 0x0a68, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5554 0x0a38, 0x2e20, 0x4050, 0x5208, 0x1c68, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5555 0x1c3a, 0x4022, 0x5252, 0x0a0a, 0x2e6a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5556 0x2e3a, 0x5222, 0x0a52, 0x1c0a, 0x406a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5557 0x403a, 0x0a22, 0x1c52, 0x2e0a, 0x526a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5558 0x523a, 0x1c22, 0x2e52, 0x400a, 0x0a6a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5559 0x0a3a, 0x2e22, 0x4052, 0x520a, 0x1c6a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5560 0x1e30, 0x4218, 0x5448, 0x0c00, 0x3060, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5561 0x3030, 0x5418, 0x0c48, 0x1e00, 0x4260, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5562 0x4230, 0x0c18, 0x1e48, 0x3000, 0x5460, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5563 0x5430, 0x1e18, 0x3048, 0x4200, 0x0c60, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5564 0x0c30, 0x3018, 0x4248, 0x5400, 0x1e60, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5565 0x1e32, 0x421a, 0x544a, 0x0c02, 0x3062, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5566 0x3032, 0x541a, 0x0c4a, 0x1e02, 0x4262, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5567 0x4232, 0x0c1a, 0x1e4a, 0x3002, 0x5462, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5568 0x5432, 0x1e1a, 0x304a, 0x4202, 0x0c62, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5569 0x0c32, 0x301a, 0x424a, 0x5402, 0x1e62, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5570 0x1e34, 0x421c, 0x544c, 0x0c04, 0x3064, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5571 0x3034, 0x541c, 0x0c4c, 0x1e04, 0x4264, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5572 0x4234, 0x0c1c, 0x1e4c, 0x3004, 0x5464, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5573 0x5434, 0x1e1c, 0x304c, 0x4204, 0x0c64, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5574 0x0c34, 0x301c, 0x424c, 0x5404, 0x1e64, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5575 0x1e36, 0x421e, 0x544e, 0x0c06, 0x3066, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5576 0x3036, 0x541e, 0x0c4e, 0x1e06, 0x4266, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5577 0x4236, 0x0c1e, 0x1e4e, 0x3006, 0x5466, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5578 0x5436, 0x1e1e, 0x304e, 0x4206, 0x0c66, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5579 0x0c36, 0x301e, 0x424e, 0x5406, 0x1e66, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5580 0x1e38, 0x4220, 0x5450, 0x0c08, 0x3068, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5581 0x3038, 0x5420, 0x0c50, 0x1e08, 0x4268, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5582 0x4238, 0x0c20, 0x1e50, 0x3008, 0x5468, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5583 0x5438, 0x1e20, 0x3050, 0x4208, 0x0c68, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5584 0x0c38, 0x3020, 0x4250, 0x5408, 0x1e68, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5585 0x1e3a, 0x4222, 0x5452, 0x0c0a, 0x306a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5586 0x303a, 0x5422, 0x0c52, 0x1e0a, 0x426a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5587 0x423a, 0x0c22, 0x1e52, 0x300a, 0x546a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5588 0x543a, 0x1e22, 0x3052, 0x420a, 0x0c6a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5589 0x0c3a, 0x3022, 0x4252, 0x540a, 0x1e6a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5590 0x2030, 0x4418, 0x5648, 0x0e00, 0x3260, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5591 0x3230, 0x5618, 0x0e48, 0x2000, 0x4460, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5592 0x4430, 0x0e18, 0x2048, 0x3200, 0x5660, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5593 0x5630, 0x2018, 0x3248, 0x4400, 0x0e60, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5594 0x0e30, 0x3218, 0x4448, 0x5600, 0x2060, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5595 0x2032, 0x441a, 0x564a, 0x0e02, 0x3262, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5596 0x3232, 0x561a, 0x0e4a, 0x2002, 0x4462, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5597 0x4432, 0x0e1a, 0x204a, 0x3202, 0x5662, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5598 0x5632, 0x201a, 0x324a, 0x4402, 0x0e62, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5599 0x0e32, 0x321a, 0x444a, 0x5602, 0x2062, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5600 0x2034, 0x441c, 0x564c, 0x0e04, 0x3264, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5601 0x3234, 0x561c, 0x0e4c, 0x2004, 0x4464, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5602 0x4434, 0x0e1c, 0x204c, 0x3204, 0x5664, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5603 0x5634, 0x201c, 0x324c, 0x4404, 0x0e64, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5604 0x0e34, 0x321c, 0x444c, 0x5604, 0x2064, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5605 0x2036, 0x441e, 0x564e, 0x0e06, 0x3266, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5606 0x3236, 0x561e, 0x0e4e, 0x2006, 0x4466, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5607 0x4436, 0x0e1e, 0x204e, 0x3206, 0x5666, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5608 0x5636, 0x201e, 0x324e, 0x4406, 0x0e66, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5609 0x0e36, 0x321e, 0x444e, 0x5606, 0x2066, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5610 0x2038, 0x4420, 0x5650, 0x0e08, 0x3268, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5611 0x3238, 0x5620, 0x0e50, 0x2008, 0x4468, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5612 0x4438, 0x0e20, 0x2050, 0x3208, 0x5668, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5613 0x5638, 0x2020, 0x3250, 0x4408, 0x0e68, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5614 0x0e38, 0x3220, 0x4450, 0x5608, 0x2068, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5615 0x203a, 0x4422, 0x5652, 0x0e0a, 0x326a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5616 0x323a, 0x5622, 0x0e52, 0x200a, 0x446a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5617 0x443a, 0x0e22, 0x2052, 0x320a, 0x566a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5618 0x563a, 0x2022, 0x3252, 0x440a, 0x0e6a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5619 0x0e3a, 0x3222, 0x4452, 0x560a, 0x206a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5620 0x2230, 0x4618, 0x5848, 0x1000, 0x3460, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5621 0x3430, 0x5818, 0x1048, 0x2200, 0x4660, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5622 0x4630, 0x1018, 0x2248, 0x3400, 0x5860, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5623 0x5830, 0x2218, 0x3448, 0x4600, 0x1060, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5624 0x1030, 0x3418, 0x4648, 0x5800, 0x2260, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5625 0x2232, 0x461a, 0x584a, 0x1002, 0x3462, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5626 0x3432, 0x581a, 0x104a, 0x2202, 0x4662, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5627 0x4632, 0x101a, 0x224a, 0x3402, 0x5862, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5628 0x5832, 0x221a, 0x344a, 0x4602, 0x1062, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5629 0x1032, 0x341a, 0x464a, 0x5802, 0x2262, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5630 0x2234, 0x461c, 0x584c, 0x1004, 0x3464, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5631 0x3434, 0x581c, 0x104c, 0x2204, 0x4664, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5632 0x4634, 0x101c, 0x224c, 0x3404, 0x5864, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5633 0x5834, 0x221c, 0x344c, 0x4604, 0x1064, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5634 0x1034, 0x341c, 0x464c, 0x5804, 0x2264, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5635 0x2236, 0x461e, 0x584e, 0x1006, 0x3466, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5636 0x3436, 0x581e, 0x104e, 0x2206, 0x4666, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5637 0x4636, 0x101e, 0x224e, 0x3406, 0x5866, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5638 0x5836, 0x221e, 0x344e, 0x4606, 0x1066, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5639 0x1036, 0x341e, 0x464e, 0x5806, 0x2266, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5640 0x2238, 0x4620, 0x5850, 0x1008, 0x3468, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5641 0x3438, 0x5820, 0x1050, 0x2208, 0x4668, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5642 0x4638, 0x1020, 0x2250, 0x3408, 0x5868, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5643 0x5838, 0x2220, 0x3450, 0x4608, 0x1068, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5644 0x1038, 0x3420, 0x4650, 0x5808, 0x2268, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5645 0x223a, 0x4622, 0x5852, 0x100a, 0x346a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5646 0x343a, 0x5822, 0x1052, 0x220a, 0x466a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5647 0x463a, 0x1022, 0x2252, 0x340a, 0x586a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5648 0x583a, 0x2222, 0x3452, 0x460a, 0x106a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5649 0x103a, 0x3422, 0x4652, 0x580a, 0x226a, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5650 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5651 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5652 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5653 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5654 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5655 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5656 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5657 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5658 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5659 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5660 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5661 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5662 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5663 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5664 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5665 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5666 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5667 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5668 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5669 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5670 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5671 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5672 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5673 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5674 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5675 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5676 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5677 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5678 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5679 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5680 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5681 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5682 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5683 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5684 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5685 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5686 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5687 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5688 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5689 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5690 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5691 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5692 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5693 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5694 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5695 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5696 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5697 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5698 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5699 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5700 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5701 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5702 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5703 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5704 0x363c, 0x0024, 0x1254, 0x240c, 0x486c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5705 0x483c, 0x1224, 0x2454, 0x360c, 0x006c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5706 0x003c, 0x2424, 0x3654, 0x480c, 0x126c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5707 0x123c, 0x3624, 0x4854, 0x000c, 0x246c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5708 0x243c, 0x4824, 0x0054, 0x120c, 0x366c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5709 0x363e, 0x0026, 0x1256, 0x240e, 0x486e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5710 0x483e, 0x1226, 0x2456, 0x360e, 0x006e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5711 0x003e, 0x2426, 0x3656, 0x480e, 0x126e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5712 0x123e, 0x3626, 0x4856, 0x000e, 0x246e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5713 0x243e, 0x4826, 0x0056, 0x120e, 0x366e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5714 0x3640, 0x0028, 0x1258, 0x2410, 0x4870, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5715 0x4840, 0x1228, 0x2458, 0x3610, 0x0070, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5716 0x0040, 0x2428, 0x3658, 0x4810, 0x1270, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5717 0x1240, 0x3628, 0x4858, 0x0010, 0x2470, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5718 0x2440, 0x4828, 0x0058, 0x1210, 0x3670, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5719 0x3642, 0x002a, 0x125a, 0x2412, 0x4872, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5720 0x4842, 0x122a, 0x245a, 0x3612, 0x0072, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5721 0x0042, 0x242a, 0x365a, 0x4812, 0x1272, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5722 0x1242, 0x362a, 0x485a, 0x0012, 0x2472, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5723 0x2442, 0x482a, 0x005a, 0x1212, 0x3672, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5724 0x3644, 0x002c, 0x125c, 0x2414, 0x4874, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5725 0x4844, 0x122c, 0x245c, 0x3614, 0x0074, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5726 0x0044, 0x242c, 0x365c, 0x4814, 0x1274, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5727 0x1244, 0x362c, 0x485c, 0x0014, 0x2474, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5728 0x2444, 0x482c, 0x005c, 0x1214, 0x3674, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5729 0x3646, 0x002e, 0x125e, 0x2416, 0x4876, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5730 0x4846, 0x122e, 0x245e, 0x3616, 0x0076, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5731 0x0046, 0x242e, 0x365e, 0x4816, 0x1276, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5732 0x1246, 0x362e, 0x485e, 0x0016, 0x2476, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5733 0x2446, 0x482e, 0x005e, 0x1216, 0x3676, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5734 0x383c, 0x0224, 0x1454, 0x260c, 0x4a6c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5735 0x4a3c, 0x1424, 0x2654, 0x380c, 0x026c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5736 0x023c, 0x2624, 0x3854, 0x4a0c, 0x146c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5737 0x143c, 0x3824, 0x4a54, 0x020c, 0x266c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5738 0x263c, 0x4a24, 0x0254, 0x140c, 0x386c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5739 0x383e, 0x0226, 0x1456, 0x260e, 0x4a6e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5740 0x4a3e, 0x1426, 0x2656, 0x380e, 0x026e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5741 0x023e, 0x2626, 0x3856, 0x4a0e, 0x146e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5742 0x143e, 0x3826, 0x4a56, 0x020e, 0x266e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5743 0x263e, 0x4a26, 0x0256, 0x140e, 0x386e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5744 0x3840, 0x0228, 0x1458, 0x2610, 0x4a70, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5745 0x4a40, 0x1428, 0x2658, 0x3810, 0x0270, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5746 0x0240, 0x2628, 0x3858, 0x4a10, 0x1470, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5747 0x1440, 0x3828, 0x4a58, 0x0210, 0x2670, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5748 0x2640, 0x4a28, 0x0258, 0x1410, 0x3870, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5749 0x3842, 0x022a, 0x145a, 0x2612, 0x4a72, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5750 0x4a42, 0x142a, 0x265a, 0x3812, 0x0272, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5751 0x0242, 0x262a, 0x385a, 0x4a12, 0x1472, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5752 0x1442, 0x382a, 0x4a5a, 0x0212, 0x2672, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5753 0x2642, 0x4a2a, 0x025a, 0x1412, 0x3872, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5754 0x3844, 0x022c, 0x145c, 0x2614, 0x4a74, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5755 0x4a44, 0x142c, 0x265c, 0x3814, 0x0274, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5756 0x0244, 0x262c, 0x385c, 0x4a14, 0x1474, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5757 0x1444, 0x382c, 0x4a5c, 0x0214, 0x2674, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5758 0x2644, 0x4a2c, 0x025c, 0x1414, 0x3874, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5759 0x3846, 0x022e, 0x145e, 0x2616, 0x4a76, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5760 0x4a46, 0x142e, 0x265e, 0x3816, 0x0276, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5761 0x0246, 0x262e, 0x385e, 0x4a16, 0x1476, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5762 0x1446, 0x382e, 0x4a5e, 0x0216, 0x2676, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5763 0x2646, 0x4a2e, 0x025e, 0x1416, 0x3876, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5764 0x3a3c, 0x0424, 0x1654, 0x280c, 0x4c6c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5765 0x4c3c, 0x1624, 0x2854, 0x3a0c, 0x046c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5766 0x043c, 0x2824, 0x3a54, 0x4c0c, 0x166c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5767 0x163c, 0x3a24, 0x4c54, 0x040c, 0x286c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5768 0x283c, 0x4c24, 0x0454, 0x160c, 0x3a6c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5769 0x3a3e, 0x0426, 0x1656, 0x280e, 0x4c6e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5770 0x4c3e, 0x1626, 0x2856, 0x3a0e, 0x046e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5771 0x043e, 0x2826, 0x3a56, 0x4c0e, 0x166e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5772 0x163e, 0x3a26, 0x4c56, 0x040e, 0x286e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5773 0x283e, 0x4c26, 0x0456, 0x160e, 0x3a6e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5774 0x3a40, 0x0428, 0x1658, 0x2810, 0x4c70, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5775 0x4c40, 0x1628, 0x2858, 0x3a10, 0x0470, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5776 0x0440, 0x2828, 0x3a58, 0x4c10, 0x1670, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5777 0x1640, 0x3a28, 0x4c58, 0x0410, 0x2870, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5778 0x2840, 0x4c28, 0x0458, 0x1610, 0x3a70, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5779 0x3a42, 0x042a, 0x165a, 0x2812, 0x4c72, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5780 0x4c42, 0x162a, 0x285a, 0x3a12, 0x0472, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5781 0x0442, 0x282a, 0x3a5a, 0x4c12, 0x1672, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5782 0x1642, 0x3a2a, 0x4c5a, 0x0412, 0x2872, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5783 0x2842, 0x4c2a, 0x045a, 0x1612, 0x3a72, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5784 0x3a44, 0x042c, 0x165c, 0x2814, 0x4c74, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5785 0x4c44, 0x162c, 0x285c, 0x3a14, 0x0474, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5786 0x0444, 0x282c, 0x3a5c, 0x4c14, 0x1674, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5787 0x1644, 0x3a2c, 0x4c5c, 0x0414, 0x2874, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5788 0x2844, 0x4c2c, 0x045c, 0x1614, 0x3a74, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5789 0x3a46, 0x042e, 0x165e, 0x2816, 0x4c76, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5790 0x4c46, 0x162e, 0x285e, 0x3a16, 0x0476, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5791 0x0446, 0x282e, 0x3a5e, 0x4c16, 0x1676, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5792 0x1646, 0x3a2e, 0x4c5e, 0x0416, 0x2876, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5793 0x2846, 0x4c2e, 0x045e, 0x1616, 0x3a76, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5794 0x3c3c, 0x0624, 0x1854, 0x2a0c, 0x4e6c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5795 0x4e3c, 0x1824, 0x2a54, 0x3c0c, 0x066c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5796 0x063c, 0x2a24, 0x3c54, 0x4e0c, 0x186c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5797 0x183c, 0x3c24, 0x4e54, 0x060c, 0x2a6c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5798 0x2a3c, 0x4e24, 0x0654, 0x180c, 0x3c6c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5799 0x3c3e, 0x0626, 0x1856, 0x2a0e, 0x4e6e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5800 0x4e3e, 0x1826, 0x2a56, 0x3c0e, 0x066e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5801 0x063e, 0x2a26, 0x3c56, 0x4e0e, 0x186e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5802 0x183e, 0x3c26, 0x4e56, 0x060e, 0x2a6e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5803 0x2a3e, 0x4e26, 0x0656, 0x180e, 0x3c6e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5804 0x3c40, 0x0628, 0x1858, 0x2a10, 0x4e70, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5805 0x4e40, 0x1828, 0x2a58, 0x3c10, 0x0670, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5806 0x0640, 0x2a28, 0x3c58, 0x4e10, 0x1870, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5807 0x1840, 0x3c28, 0x4e58, 0x0610, 0x2a70, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5808 0x2a40, 0x4e28, 0x0658, 0x1810, 0x3c70, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5809 0x3c42, 0x062a, 0x185a, 0x2a12, 0x4e72, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5810 0x4e42, 0x182a, 0x2a5a, 0x3c12, 0x0672, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5811 0x0642, 0x2a2a, 0x3c5a, 0x4e12, 0x1872, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5812 0x1842, 0x3c2a, 0x4e5a, 0x0612, 0x2a72, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5813 0x2a42, 0x4e2a, 0x065a, 0x1812, 0x3c72, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5814 0x3c44, 0x062c, 0x185c, 0x2a14, 0x4e74, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5815 0x4e44, 0x182c, 0x2a5c, 0x3c14, 0x0674, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5816 0x0644, 0x2a2c, 0x3c5c, 0x4e14, 0x1874, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5817 0x1844, 0x3c2c, 0x4e5c, 0x0614, 0x2a74, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5818 0x2a44, 0x4e2c, 0x065c, 0x1814, 0x3c74, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5819 0x3c46, 0x062e, 0x185e, 0x2a16, 0x4e76, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5820 0x4e46, 0x182e, 0x2a5e, 0x3c16, 0x0676, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5821 0x0646, 0x2a2e, 0x3c5e, 0x4e16, 0x1876, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5822 0x1846, 0x3c2e, 0x4e5e, 0x0616, 0x2a76, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5823 0x2a46, 0x4e2e, 0x065e, 0x1816, 0x3c76, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5824 0x3e3c, 0x0824, 0x1a54, 0x2c0c, 0x506c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5825 0x503c, 0x1a24, 0x2c54, 0x3e0c, 0x086c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5826 0x083c, 0x2c24, 0x3e54, 0x500c, 0x1a6c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5827 0x1a3c, 0x3e24, 0x5054, 0x080c, 0x2c6c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5828 0x2c3c, 0x5024, 0x0854, 0x1a0c, 0x3e6c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5829 0x3e3e, 0x0826, 0x1a56, 0x2c0e, 0x506e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5830 0x503e, 0x1a26, 0x2c56, 0x3e0e, 0x086e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5831 0x083e, 0x2c26, 0x3e56, 0x500e, 0x1a6e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5832 0x1a3e, 0x3e26, 0x5056, 0x080e, 0x2c6e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5833 0x2c3e, 0x5026, 0x0856, 0x1a0e, 0x3e6e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5834 0x3e40, 0x0828, 0x1a58, 0x2c10, 0x5070, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5835 0x5040, 0x1a28, 0x2c58, 0x3e10, 0x0870, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5836 0x0840, 0x2c28, 0x3e58, 0x5010, 0x1a70, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5837 0x1a40, 0x3e28, 0x5058, 0x0810, 0x2c70, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5838 0x2c40, 0x5028, 0x0858, 0x1a10, 0x3e70, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5839 0x3e42, 0x082a, 0x1a5a, 0x2c12, 0x5072, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5840 0x5042, 0x1a2a, 0x2c5a, 0x3e12, 0x0872, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5841 0x0842, 0x2c2a, 0x3e5a, 0x5012, 0x1a72, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5842 0x1a42, 0x3e2a, 0x505a, 0x0812, 0x2c72, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5843 0x2c42, 0x502a, 0x085a, 0x1a12, 0x3e72, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5844 0x3e44, 0x082c, 0x1a5c, 0x2c14, 0x5074, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5845 0x5044, 0x1a2c, 0x2c5c, 0x3e14, 0x0874, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5846 0x0844, 0x2c2c, 0x3e5c, 0x5014, 0x1a74, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5847 0x1a44, 0x3e2c, 0x505c, 0x0814, 0x2c74, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5848 0x2c44, 0x502c, 0x085c, 0x1a14, 0x3e74, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5849 0x3e46, 0x082e, 0x1a5e, 0x2c16, 0x5076, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5850 0x5046, 0x1a2e, 0x2c5e, 0x3e16, 0x0876, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5851 0x0846, 0x2c2e, 0x3e5e, 0x5016, 0x1a76, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5852 0x1a46, 0x3e2e, 0x505e, 0x0816, 0x2c76, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5853 0x2c46, 0x502e, 0x085e, 0x1a16, 0x3e76, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5854 0x403c, 0x0a24, 0x1c54, 0x2e0c, 0x526c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5855 0x523c, 0x1c24, 0x2e54, 0x400c, 0x0a6c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5856 0x0a3c, 0x2e24, 0x4054, 0x520c, 0x1c6c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5857 0x1c3c, 0x4024, 0x5254, 0x0a0c, 0x2e6c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5858 0x2e3c, 0x5224, 0x0a54, 0x1c0c, 0x406c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5859 0x403e, 0x0a26, 0x1c56, 0x2e0e, 0x526e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5860 0x523e, 0x1c26, 0x2e56, 0x400e, 0x0a6e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5861 0x0a3e, 0x2e26, 0x4056, 0x520e, 0x1c6e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5862 0x1c3e, 0x4026, 0x5256, 0x0a0e, 0x2e6e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5863 0x2e3e, 0x5226, 0x0a56, 0x1c0e, 0x406e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5864 0x4040, 0x0a28, 0x1c58, 0x2e10, 0x5270, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5865 0x5240, 0x1c28, 0x2e58, 0x4010, 0x0a70, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5866 0x0a40, 0x2e28, 0x4058, 0x5210, 0x1c70, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5867 0x1c40, 0x4028, 0x5258, 0x0a10, 0x2e70, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5868 0x2e40, 0x5228, 0x0a58, 0x1c10, 0x4070, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5869 0x4042, 0x0a2a, 0x1c5a, 0x2e12, 0x5272, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5870 0x5242, 0x1c2a, 0x2e5a, 0x4012, 0x0a72, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5871 0x0a42, 0x2e2a, 0x405a, 0x5212, 0x1c72, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5872 0x1c42, 0x402a, 0x525a, 0x0a12, 0x2e72, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5873 0x2e42, 0x522a, 0x0a5a, 0x1c12, 0x4072, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5874 0x4044, 0x0a2c, 0x1c5c, 0x2e14, 0x5274, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5875 0x5244, 0x1c2c, 0x2e5c, 0x4014, 0x0a74, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5876 0x0a44, 0x2e2c, 0x405c, 0x5214, 0x1c74, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5877 0x1c44, 0x402c, 0x525c, 0x0a14, 0x2e74, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5878 0x2e44, 0x522c, 0x0a5c, 0x1c14, 0x4074, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5879 0x4046, 0x0a2e, 0x1c5e, 0x2e16, 0x5276, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5880 0x5246, 0x1c2e, 0x2e5e, 0x4016, 0x0a76, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5881 0x0a46, 0x2e2e, 0x405e, 0x5216, 0x1c76, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5882 0x1c46, 0x402e, 0x525e, 0x0a16, 0x2e76, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5883 0x2e46, 0x522e, 0x0a5e, 0x1c16, 0x4076, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5884 0x423c, 0x0c24, 0x1e54, 0x300c, 0x546c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5885 0x543c, 0x1e24, 0x3054, 0x420c, 0x0c6c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5886 0x0c3c, 0x3024, 0x4254, 0x540c, 0x1e6c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5887 0x1e3c, 0x4224, 0x5454, 0x0c0c, 0x306c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5888 0x303c, 0x5424, 0x0c54, 0x1e0c, 0x426c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5889 0x423e, 0x0c26, 0x1e56, 0x300e, 0x546e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5890 0x543e, 0x1e26, 0x3056, 0x420e, 0x0c6e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5891 0x0c3e, 0x3026, 0x4256, 0x540e, 0x1e6e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5892 0x1e3e, 0x4226, 0x5456, 0x0c0e, 0x306e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5893 0x303e, 0x5426, 0x0c56, 0x1e0e, 0x426e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5894 0x4240, 0x0c28, 0x1e58, 0x3010, 0x5470, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5895 0x5440, 0x1e28, 0x3058, 0x4210, 0x0c70, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5896 0x0c40, 0x3028, 0x4258, 0x5410, 0x1e70, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5897 0x1e40, 0x4228, 0x5458, 0x0c10, 0x3070, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5898 0x3040, 0x5428, 0x0c58, 0x1e10, 0x4270, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5899 0x4242, 0x0c2a, 0x1e5a, 0x3012, 0x5472, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5900 0x5442, 0x1e2a, 0x305a, 0x4212, 0x0c72, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5901 0x0c42, 0x302a, 0x425a, 0x5412, 0x1e72, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5902 0x1e42, 0x422a, 0x545a, 0x0c12, 0x3072, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5903 0x3042, 0x542a, 0x0c5a, 0x1e12, 0x4272, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5904 0x4244, 0x0c2c, 0x1e5c, 0x3014, 0x5474, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5905 0x5444, 0x1e2c, 0x305c, 0x4214, 0x0c74, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5906 0x0c44, 0x302c, 0x425c, 0x5414, 0x1e74, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5907 0x1e44, 0x422c, 0x545c, 0x0c14, 0x3074, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5908 0x3044, 0x542c, 0x0c5c, 0x1e14, 0x4274, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5909 0x4246, 0x0c2e, 0x1e5e, 0x3016, 0x5476, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5910 0x5446, 0x1e2e, 0x305e, 0x4216, 0x0c76, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5911 0x0c46, 0x302e, 0x425e, 0x5416, 0x1e76, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5912 0x1e46, 0x422e, 0x545e, 0x0c16, 0x3076, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5913 0x3046, 0x542e, 0x0c5e, 0x1e16, 0x4276, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5914 0x443c, 0x0e24, 0x2054, 0x320c, 0x566c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5915 0x563c, 0x2024, 0x3254, 0x440c, 0x0e6c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5916 0x0e3c, 0x3224, 0x4454, 0x560c, 0x206c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5917 0x203c, 0x4424, 0x5654, 0x0e0c, 0x326c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5918 0x323c, 0x5624, 0x0e54, 0x200c, 0x446c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5919 0x443e, 0x0e26, 0x2056, 0x320e, 0x566e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5920 0x563e, 0x2026, 0x3256, 0x440e, 0x0e6e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5921 0x0e3e, 0x3226, 0x4456, 0x560e, 0x206e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5922 0x203e, 0x4426, 0x5656, 0x0e0e, 0x326e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5923 0x323e, 0x5626, 0x0e56, 0x200e, 0x446e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5924 0x4440, 0x0e28, 0x2058, 0x3210, 0x5670, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5925 0x5640, 0x2028, 0x3258, 0x4410, 0x0e70, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5926 0x0e40, 0x3228, 0x4458, 0x5610, 0x2070, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5927 0x2040, 0x4428, 0x5658, 0x0e10, 0x3270, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5928 0x3240, 0x5628, 0x0e58, 0x2010, 0x4470, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5929 0x4442, 0x0e2a, 0x205a, 0x3212, 0x5672, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5930 0x5642, 0x202a, 0x325a, 0x4412, 0x0e72, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5931 0x0e42, 0x322a, 0x445a, 0x5612, 0x2072, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5932 0x2042, 0x442a, 0x565a, 0x0e12, 0x3272, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5933 0x3242, 0x562a, 0x0e5a, 0x2012, 0x4472, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5934 0x4444, 0x0e2c, 0x205c, 0x3214, 0x5674, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5935 0x5644, 0x202c, 0x325c, 0x4414, 0x0e74, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5936 0x0e44, 0x322c, 0x445c, 0x5614, 0x2074, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5937 0x2044, 0x442c, 0x565c, 0x0e14, 0x3274, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5938 0x3244, 0x562c, 0x0e5c, 0x2014, 0x4474, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5939 0x4446, 0x0e2e, 0x205e, 0x3216, 0x5676, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5940 0x5646, 0x202e, 0x325e, 0x4416, 0x0e76, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5941 0x0e46, 0x322e, 0x445e, 0x5616, 0x2076, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5942 0x2046, 0x442e, 0x565e, 0x0e16, 0x3276, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5943 0x3246, 0x562e, 0x0e5e, 0x2016, 0x4476, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5944 0x463c, 0x1024, 0x2254, 0x340c, 0x586c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5945 0x583c, 0x2224, 0x3454, 0x460c, 0x106c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5946 0x103c, 0x3424, 0x4654, 0x580c, 0x226c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5947 0x223c, 0x4624, 0x5854, 0x100c, 0x346c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5948 0x343c, 0x5824, 0x1054, 0x220c, 0x466c, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5949 0x463e, 0x1026, 0x2256, 0x340e, 0x586e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5950 0x583e, 0x2226, 0x3456, 0x460e, 0x106e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5951 0x103e, 0x3426, 0x4656, 0x580e, 0x226e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5952 0x223e, 0x4626, 0x5856, 0x100e, 0x346e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5953 0x343e, 0x5826, 0x1056, 0x220e, 0x466e, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5954 0x4640, 0x1028, 0x2258, 0x3410, 0x5870, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5955 0x5840, 0x2228, 0x3458, 0x4610, 0x1070, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5956 0x1040, 0x3428, 0x4658, 0x5810, 0x2270, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5957 0x2240, 0x4628, 0x5858, 0x1010, 0x3470, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5958 0x3440, 0x5828, 0x1058, 0x2210, 0x4670, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5959 0x4642, 0x102a, 0x225a, 0x3412, 0x5872, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5960 0x5842, 0x222a, 0x345a, 0x4612, 0x1072, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5961 0x1042, 0x342a, 0x465a, 0x5812, 0x2272, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5962 0x2242, 0x462a, 0x585a, 0x1012, 0x3472, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5963 0x3442, 0x582a, 0x105a, 0x2212, 0x4672, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5964 0x4644, 0x102c, 0x225c, 0x3414, 0x5874, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5965 0x5844, 0x222c, 0x345c, 0x4614, 0x1074, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5966 0x1044, 0x342c, 0x465c, 0x5814, 0x2274, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5967 0x2244, 0x462c, 0x585c, 0x1014, 0x3474, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5968 0x3444, 0x582c, 0x105c, 0x2214, 0x4674, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5969 0x4646, 0x102e, 0x225e, 0x3416, 0x5876, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5970 0x5846, 0x222e, 0x345e, 0x4616, 0x1076, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5971 0x1046, 0x342e, 0x465e, 0x5816, 0x2276, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5972 0x2246, 0x462e, 0x585e, 0x1016, 0x3476, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5973 0x3446, 0x582e, 0x105e, 0x2216, 0x4676, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5974 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5975 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5976 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5977 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5978 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5979 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5980 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5981 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5982 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5983 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5984 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5985 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5986 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5987 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5988 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5989 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5990 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5991 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5992 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5993 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5994 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5995 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5996 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5997 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5998 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
5999 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6000 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6001 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6002 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6003 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6004 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6005 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6006 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6007 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6008 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6009 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6010 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6011 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6012 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6013 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6014 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6015 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6016 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6017 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6018 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6019 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6020 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6021 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6022 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6023 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6024 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6025 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6026 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6027 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6028 }; |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6029 |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6030 |
3149
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6031 /* DV25/50 DCT coefficient weights and inverse weights */ |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6032 /* created by dvtables.py */ |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6033 static const int dv_weight_bits = 18; |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6034 static const int dv_weight_88[64] = { |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6035 131072, 257107, 257107, 242189, 252167, 242189, 235923, 237536, |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6036 237536, 235923, 229376, 231390, 223754, 231390, 229376, 222935, |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6037 224969, 217965, 217965, 224969, 222935, 200636, 218652, 211916, |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6038 212325, 211916, 218652, 200636, 188995, 196781, 205965, 206433, |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6039 206433, 205965, 196781, 188995, 185364, 185364, 200636, 200704, |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6040 200636, 185364, 185364, 174609, 180568, 195068, 195068, 180568, |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6041 174609, 170091, 175557, 189591, 175557, 170091, 165371, 170627, |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6042 170627, 165371, 160727, 153560, 160727, 144651, 144651, 136258, |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6043 }; |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6044 static const int dv_weight_248[64] = { |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6045 131072, 242189, 257107, 237536, 229376, 200636, 242189, 223754, |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6046 224969, 196781, 262144, 242189, 229376, 200636, 257107, 237536, |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6047 211916, 185364, 235923, 217965, 229376, 211916, 206433, 180568, |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6048 242189, 223754, 224969, 196781, 211916, 185364, 235923, 217965, |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6049 200704, 175557, 222935, 205965, 200636, 185364, 195068, 170627, |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6050 229376, 211916, 206433, 180568, 200704, 175557, 222935, 205965, |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6051 175557, 153560, 188995, 174609, 165371, 144651, 200636, 185364, |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6052 195068, 170627, 175557, 153560, 188995, 174609, 165371, 144651, |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6053 }; |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6054 static const int dv_iweight_bits = 14; |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6055 static const int dv_iweight_88[64] = { |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6056 32768, 16710, 16710, 17735, 17015, 17735, 18197, 18079, |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6057 18079, 18197, 18725, 18559, 19196, 18559, 18725, 19284, |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6058 19108, 19692, 19692, 19108, 19284, 21400, 19645, 20262, |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6059 20214, 20262, 19645, 21400, 22733, 21845, 20867, 20815, |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6060 20815, 20867, 21845, 22733, 23173, 23173, 21400, 21400, |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6061 21400, 23173, 23173, 24600, 23764, 22017, 22017, 23764, |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6062 24600, 25267, 24457, 22672, 24457, 25267, 25971, 25191, |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6063 25191, 25971, 26715, 27962, 26715, 29642, 29642, 31536, |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6064 }; |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6065 static const int dv_iweight_248[64] = { |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6066 32768, 17735, 16710, 18079, 18725, 21400, 17735, 19196, |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6067 19108, 21845, 16384, 17735, 18725, 21400, 16710, 18079, |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6068 20262, 23173, 18197, 19692, 18725, 20262, 20815, 23764, |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6069 17735, 19196, 19108, 21845, 20262, 23173, 18197, 19692, |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6070 21400, 24457, 19284, 20867, 21400, 23173, 22017, 25191, |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6071 18725, 20262, 20815, 23764, 21400, 24457, 19284, 20867, |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6072 24457, 27962, 22733, 24600, 25971, 29642, 21400, 23173, |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6073 22017, 25191, 24457, 27962, 22733, 24600, 25971, 29642, |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6074 }; |
2679184e8be0
AC coefficient weighing (per SMPTE 314M) for the DV encoder and decoder. The
romansh
parents:
3036
diff
changeset
|
6075 |
7715
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6076 /* the "inverse" DV100 weights are actually just the spec weights (zig-zagged) */ |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6077 static const int dv_iweight_1080_y[64] = { |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6078 128, 16, 16, 17, 17, 17, 18, 18, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6079 18, 18, 18, 18, 19, 18, 18, 19, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6080 19, 19, 19, 19, 19, 42, 38, 40, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6081 40, 40, 38, 42, 44, 43, 41, 41, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6082 41, 41, 43, 44, 45, 45, 42, 42, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6083 42, 45, 45, 48, 46, 43, 43, 46, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6084 48, 49, 48, 44, 48, 49, 101, 98, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6085 98, 101, 104, 109, 104, 116, 116, 123, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6086 }; |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6087 static const int dv_iweight_1080_c[64] = { |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6088 128, 16, 16, 17, 17, 17, 25, 25, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6089 25, 25, 26, 25, 26, 25, 26, 26, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6090 26, 27, 27, 26, 26, 42, 38, 40, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6091 40, 40, 38, 42, 44, 43, 41, 41, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6092 41, 41, 43, 44, 91, 91, 84, 84, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6093 84, 91, 91, 96, 93, 86, 86, 93, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6094 96, 197, 191, 177, 191, 197, 203, 197, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6095 197, 203, 209, 219, 209, 232, 232, 246, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6096 }; |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6097 static const int dv_iweight_720_y[64] = { |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6098 128, 16, 16, 17, 17, 17, 18, 18, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6099 18, 18, 18, 18, 19, 18, 18, 19, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6100 19, 19, 19, 19, 19, 42, 38, 40, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6101 40, 40, 38, 42, 44, 43, 41, 41, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6102 41, 41, 43, 44, 68, 68, 63, 63, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6103 63, 68, 68, 96, 92, 86, 86, 92, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6104 96, 98, 96, 88, 96, 98, 202, 196, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6105 196, 202, 208, 218, 208, 232, 232, 246, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6106 }; |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6107 static const int dv_iweight_720_c[64] = { |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6108 128, 24, 24, 26, 26, 26, 36, 36, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6109 36, 36, 36, 36, 38, 36, 36, 38, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6110 38, 38, 38, 38, 38, 84, 76, 80, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6111 80, 80, 76, 84, 88, 86, 82, 82, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6112 82, 82, 86, 88, 182, 182, 168, 168, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6113 168, 182, 182, 192, 186, 192, 172, 186, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6114 192, 394, 382, 354, 382, 394, 406, 394, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6115 394, 406, 418, 438, 418, 464, 464, 492, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6116 }; |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6117 |
4361 | 6118 static const uint8_t dv_audio_shuffle525[10][9] = { |
1036 | 6119 { 0, 30, 60, 20, 50, 80, 10, 40, 70 }, /* 1st channel */ |
6120 { 6, 36, 66, 26, 56, 86, 16, 46, 76 }, | |
6121 { 12, 42, 72, 2, 32, 62, 22, 52, 82 }, | |
6122 { 18, 48, 78, 8, 38, 68, 28, 58, 88 }, | |
6123 { 24, 54, 84, 14, 44, 74, 4, 34, 64 }, | |
2967 | 6124 |
1036 | 6125 { 1, 31, 61, 21, 51, 81, 11, 41, 71 }, /* 2nd channel */ |
6126 { 7, 37, 67, 27, 57, 87, 17, 47, 77 }, | |
6127 { 13, 43, 73, 3, 33, 63, 23, 53, 83 }, | |
6128 { 19, 49, 79, 9, 39, 69, 29, 59, 89 }, | |
6129 { 25, 55, 85, 15, 45, 75, 5, 35, 65 }, | |
6130 }; | |
6131 | |
4361 | 6132 static const uint8_t dv_audio_shuffle625[12][9] = { |
1036 | 6133 { 0, 36, 72, 26, 62, 98, 16, 52, 88}, /* 1st channel */ |
6134 { 6, 42, 78, 32, 68, 104, 22, 58, 94}, | |
6135 { 12, 48, 84, 2, 38, 74, 28, 64, 100}, | |
6136 { 18, 54, 90, 8, 44, 80, 34, 70, 106}, | |
2967 | 6137 { 24, 60, 96, 14, 50, 86, 4, 40, 76}, |
1036 | 6138 { 30, 66, 102, 20, 56, 92, 10, 46, 82}, |
2967 | 6139 |
1036 | 6140 { 1, 37, 73, 27, 63, 99, 17, 53, 89}, /* 2nd channel */ |
6141 { 7, 43, 79, 33, 69, 105, 23, 59, 95}, | |
6142 { 13, 49, 85, 3, 39, 75, 29, 65, 101}, | |
6143 { 19, 55, 91, 9, 45, 81, 35, 71, 107}, | |
2967 | 6144 { 25, 61, 97, 15, 51, 87, 5, 41, 77}, |
1036 | 6145 { 31, 67, 103, 21, 57, 93, 11, 47, 83}, |
6146 }; | |
6147 | |
5083
ce36118abbbb
rename attribute_unused to av_unused and moves its declaration to common.h
benoit
parents:
5006
diff
changeset
|
6148 static const av_unused int dv_audio_frequency[3] = { |
1489
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6149 48000, 44100, 32000, |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6150 }; |
2967 | 6151 |
7616
685ef77c9fe5
Making block size in bits variable and dependent on the DV spec
romansh
parents:
7615
diff
changeset
|
6152 /* macroblock bit budgets */ |
685ef77c9fe5
Making block size in bits variable and dependent on the DV spec
romansh
parents:
7615
diff
changeset
|
6153 static const uint8_t block_sizes_dv2550[8] = { |
685ef77c9fe5
Making block size in bits variable and dependent on the DV spec
romansh
parents:
7615
diff
changeset
|
6154 112, 112, 112, 112, 80, 80, 0, 0, |
685ef77c9fe5
Making block size in bits variable and dependent on the DV spec
romansh
parents:
7615
diff
changeset
|
6155 }; |
685ef77c9fe5
Making block size in bits variable and dependent on the DV spec
romansh
parents:
7615
diff
changeset
|
6156 |
685ef77c9fe5
Making block size in bits variable and dependent on the DV spec
romansh
parents:
7615
diff
changeset
|
6157 static const uint8_t block_sizes_dv100[8] = { |
685ef77c9fe5
Making block size in bits variable and dependent on the DV spec
romansh
parents:
7615
diff
changeset
|
6158 80, 80, 80, 80, 80, 80, 64, 64, |
685ef77c9fe5
Making block size in bits variable and dependent on the DV spec
romansh
parents:
7615
diff
changeset
|
6159 }; |
685ef77c9fe5
Making block size in bits variable and dependent on the DV spec
romansh
parents:
7615
diff
changeset
|
6160 |
1489
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6161 static const DVprofile dv_profiles[] = { |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6162 { .dsf = 0, |
7714
f0f8bb920b24
Introducing video_stype for holding the value of VAUX source pack
romansh
parents:
7616
diff
changeset
|
6163 .video_stype = 0x0, |
1489
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6164 .frame_size = 120000, /* IEC 61834, SMPTE-314M - 525/60 (NTSC) */ |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6165 .difseg_size = 10, |
3167 | 6166 .n_difchan = 1, |
1489
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6167 .frame_rate = 30000, |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6168 .ltc_divisor = 30, |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6169 .frame_rate_base = 1001, |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6170 .height = 480, |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6171 .width = 720, |
2228
f9411c92f7e6
* I was finally convinced. And besides, if err it's better to err with
romansh
parents:
1886
diff
changeset
|
6172 .sar = {{10, 11}, {40, 33}}, |
1489
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6173 .video_place = dv_place_411, |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6174 .pix_fmt = PIX_FMT_YUV411P, |
7615
290fd3ae1219
Making the number of blocks per macroblock dependent on the DV stream
romansh
parents:
7614
diff
changeset
|
6175 .bpm = 6, |
7616
685ef77c9fe5
Making block size in bits variable and dependent on the DV spec
romansh
parents:
7615
diff
changeset
|
6176 .block_sizes = block_sizes_dv2550, |
1489
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6177 .audio_stride = 90, |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6178 .audio_min_samples = { 1580, 1452, 1053 }, /* for 48, 44.1 and 32Khz */ |
3167 | 6179 .audio_samples_dist = { 1600, 1602, 1602, 1602, 1602 }, /* per SMPTE-314M */ |
1489
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6180 .audio_shuffle = dv_audio_shuffle525, |
2967 | 6181 }, |
1489
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6182 { .dsf = 1, |
7714
f0f8bb920b24
Introducing video_stype for holding the value of VAUX source pack
romansh
parents:
7616
diff
changeset
|
6183 .video_stype = 0x0, |
1489
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6184 .frame_size = 144000, /* IEC 61834 - 625/50 (PAL) */ |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6185 .difseg_size = 12, |
3167 | 6186 .n_difchan = 1, |
1489
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6187 .frame_rate = 25, |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6188 .frame_rate_base = 1, |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6189 .ltc_divisor = 25, |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6190 .height = 576, |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6191 .width = 720, |
2228
f9411c92f7e6
* I was finally convinced. And besides, if err it's better to err with
romansh
parents:
1886
diff
changeset
|
6192 .sar = {{59, 54}, {118, 81}}, |
1489
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6193 .video_place = dv_place_420, |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6194 .pix_fmt = PIX_FMT_YUV420P, |
7615
290fd3ae1219
Making the number of blocks per macroblock dependent on the DV stream
romansh
parents:
7614
diff
changeset
|
6195 .bpm = 6, |
7616
685ef77c9fe5
Making block size in bits variable and dependent on the DV spec
romansh
parents:
7615
diff
changeset
|
6196 .block_sizes = block_sizes_dv2550, |
1489
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6197 .audio_stride = 108, |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6198 .audio_min_samples = { 1896, 1742, 1264 }, /* for 48, 44.1 and 32Khz */ |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6199 .audio_samples_dist = { 1920, 1920, 1920, 1920, 1920 }, |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6200 .audio_shuffle = dv_audio_shuffle625, |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6201 }, |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6202 { .dsf = 1, |
7714
f0f8bb920b24
Introducing video_stype for holding the value of VAUX source pack
romansh
parents:
7616
diff
changeset
|
6203 .video_stype = 0x0, |
1489
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6204 .frame_size = 144000, /* SMPTE-314M - 625/50 (PAL) */ |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6205 .difseg_size = 12, |
3167 | 6206 .n_difchan = 1, |
1489
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6207 .frame_rate = 25, |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6208 .frame_rate_base = 1, |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6209 .ltc_divisor = 25, |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6210 .height = 576, |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6211 .width = 720, |
2228
f9411c92f7e6
* I was finally convinced. And besides, if err it's better to err with
romansh
parents:
1886
diff
changeset
|
6212 .sar = {{59, 54}, {118, 81}}, |
1489
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6213 .video_place = dv_place_411P, |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6214 .pix_fmt = PIX_FMT_YUV411P, |
7615
290fd3ae1219
Making the number of blocks per macroblock dependent on the DV stream
romansh
parents:
7614
diff
changeset
|
6215 .bpm = 6, |
7616
685ef77c9fe5
Making block size in bits variable and dependent on the DV spec
romansh
parents:
7615
diff
changeset
|
6216 .block_sizes = block_sizes_dv2550, |
1489
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6217 .audio_stride = 108, |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6218 .audio_min_samples = { 1896, 1742, 1264 }, /* for 48, 44.1 and 32Khz */ |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6219 .audio_samples_dist = { 1920, 1920, 1920, 1920, 1920 }, |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6220 .audio_shuffle = dv_audio_shuffle625, |
3167 | 6221 }, |
6222 { .dsf = 0, | |
7714
f0f8bb920b24
Introducing video_stype for holding the value of VAUX source pack
romansh
parents:
7616
diff
changeset
|
6223 .video_stype = 0x4, |
3167 | 6224 .frame_size = 240000, /* SMPTE-314M - 525/60 (NTSC) 50 Mbps */ |
6225 .difseg_size = 10, /* also known as "DVCPRO50" */ | |
6226 .n_difchan = 2, | |
6227 .frame_rate = 30000, | |
6228 .ltc_divisor = 30, | |
6229 .frame_rate_base = 1001, | |
6230 .height = 480, | |
6231 .width = 720, | |
6232 .sar = {{10, 11}, {40, 33}}, | |
6233 .video_place = dv_place_422_525, | |
6234 .pix_fmt = PIX_FMT_YUV422P, | |
7615
290fd3ae1219
Making the number of blocks per macroblock dependent on the DV stream
romansh
parents:
7614
diff
changeset
|
6235 .bpm = 6, |
7616
685ef77c9fe5
Making block size in bits variable and dependent on the DV spec
romansh
parents:
7615
diff
changeset
|
6236 .block_sizes = block_sizes_dv2550, |
3167 | 6237 .audio_stride = 90, |
6238 .audio_min_samples = { 1580, 1452, 1053 }, /* for 48, 44.1 and 32Khz */ | |
6239 .audio_samples_dist = { 1600, 1602, 1602, 1602, 1602 }, /* per SMPTE-314M */ | |
6240 .audio_shuffle = dv_audio_shuffle525, | |
6241 }, | |
6242 { .dsf = 1, | |
7714
f0f8bb920b24
Introducing video_stype for holding the value of VAUX source pack
romansh
parents:
7616
diff
changeset
|
6243 .video_stype = 0x4, |
3167 | 6244 .frame_size = 288000, /* SMPTE-314M - 625/50 (PAL) 50 Mbps */ |
6245 .difseg_size = 12, /* also known as "DVCPRO50" */ | |
6246 .n_difchan = 2, | |
6247 .frame_rate = 25, | |
6248 .frame_rate_base = 1, | |
6249 .ltc_divisor = 25, | |
6250 .height = 576, | |
6251 .width = 720, | |
6252 .sar = {{59, 54}, {118, 81}}, | |
6253 .video_place = dv_place_422_625, | |
6254 .pix_fmt = PIX_FMT_YUV422P, | |
7615
290fd3ae1219
Making the number of blocks per macroblock dependent on the DV stream
romansh
parents:
7614
diff
changeset
|
6255 .bpm = 6, |
7616
685ef77c9fe5
Making block size in bits variable and dependent on the DV spec
romansh
parents:
7615
diff
changeset
|
6256 .block_sizes = block_sizes_dv2550, |
3167 | 6257 .audio_stride = 108, |
6258 .audio_min_samples = { 1896, 1742, 1264 }, /* for 48, 44.1 and 32Khz */ | |
6259 .audio_samples_dist = { 1920, 1920, 1920, 1920, 1920 }, | |
6260 .audio_shuffle = dv_audio_shuffle625, | |
7715
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6261 }, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6262 { .dsf = 0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6263 .video_stype = 0x14, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6264 .frame_size = 480000, /* SMPTE-370M - 1080i60 100 Mbps */ |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6265 .difseg_size = 10, /* also known as "DVCPRO HD" */ |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6266 .n_difchan = 4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6267 .frame_rate = 30000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6268 .ltc_divisor = 30, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6269 .frame_rate_base = 1001, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6270 .height = 1080, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6271 .width = 1280, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6272 .sar = {{1, 1}, {1, 1}}, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6273 .video_place = dv_place_1080i60, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6274 .pix_fmt = PIX_FMT_YUV422P, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6275 .bpm = 8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6276 .block_sizes = block_sizes_dv100, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6277 .audio_stride = 90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6278 .audio_min_samples = { 1580, 1452, 1053 }, /* for 48, 44.1 and 32Khz */ |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6279 .audio_samples_dist = { 1600, 1602, 1602, 1602, 1602 }, /* per SMPTE-314M */ |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6280 .audio_shuffle = dv_audio_shuffle525, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6281 }, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6282 { .dsf = 1, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6283 .video_stype = 0x14, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6284 .frame_size = 576000, /* SMPTE-370M - 1080i50 100 Mbps */ |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6285 .difseg_size = 12, /* also known as "DVCPRO HD" */ |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6286 .n_difchan = 4, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6287 .frame_rate = 25, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6288 .frame_rate_base = 1, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6289 .ltc_divisor = 25, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6290 .height = 1080, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6291 .width = 1440, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6292 .sar = {{1, 1}, {1, 1}}, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6293 .video_place = dv_place_1080i50, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6294 .pix_fmt = PIX_FMT_YUV422P, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6295 .bpm = 8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6296 .block_sizes = block_sizes_dv100, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6297 .audio_stride = 108, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6298 .audio_min_samples = { 1896, 1742, 1264 }, /* for 48, 44.1 and 32Khz */ |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6299 .audio_samples_dist = { 1920, 1920, 1920, 1920, 1920 }, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6300 .audio_shuffle = dv_audio_shuffle625, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6301 }, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6302 { .dsf = 0, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6303 .video_stype = 0x18, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6304 .frame_size = 240000, /* SMPTE-370M - 720p60 100 Mbps */ |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6305 .difseg_size = 10, /* also known as "DVCPRO HD" */ |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6306 .n_difchan = 2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6307 .frame_rate = 60000, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6308 .ltc_divisor = 60, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6309 .frame_rate_base = 1001, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6310 .height = 720, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6311 .width = 960, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6312 .sar = {{1, 1}, {1, 1}}, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6313 .video_place = dv_place_720p60, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6314 .pix_fmt = PIX_FMT_YUV422P, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6315 .bpm = 8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6316 .block_sizes = block_sizes_dv100, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6317 .audio_stride = 90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6318 .audio_min_samples = { 1580, 1452, 1053 }, /* for 48, 44.1 and 32Khz */ |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6319 .audio_samples_dist = { 1600, 1602, 1602, 1602, 1602 }, /* per SMPTE-314M */ |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6320 .audio_shuffle = dv_audio_shuffle525, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6321 }, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6322 { .dsf = 1, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6323 .video_stype = 0x18, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6324 .frame_size = 288000, /* SMPTE-370M - 720p50 100 Mbps */ |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6325 .difseg_size = 12, /* also known as "DVCPRO HD" */ |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6326 .n_difchan = 2, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6327 .frame_rate = 50, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6328 .ltc_divisor = 50, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6329 .frame_rate_base = 1, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6330 .height = 720, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6331 .width = 960, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6332 .sar = {{1, 1}, {1, 1}}, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6333 .video_place = dv_place_720p50, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6334 .pix_fmt = PIX_FMT_YUV422P, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6335 .bpm = 8, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6336 .block_sizes = block_sizes_dv100, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6337 .audio_stride = 90, |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6338 .audio_min_samples = { 1580, 1452, 1053 }, /* for 48, 44.1 and 32Khz */ |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6339 .audio_samples_dist = { 1600, 1602, 1602, 1602, 1602 }, /* per SMPTE-314M */ |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6340 .audio_shuffle = dv_audio_shuffle525, |
3167 | 6341 } |
1036 | 6342 }; |
6343 | |
3671
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6344 enum dv_section_type { |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6345 dv_sect_header = 0x1f, |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6346 dv_sect_subcode = 0x3f, |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6347 dv_sect_vaux = 0x56, |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6348 dv_sect_audio = 0x76, |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6349 dv_sect_video = 0x96, |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6350 }; |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6351 |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6352 enum dv_pack_type { |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6353 dv_header525 = 0x3f, /* see dv_write_pack for important details on */ |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6354 dv_header625 = 0xbf, /* these two packs */ |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6355 dv_timecode = 0x13, |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6356 dv_audio_source = 0x50, |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6357 dv_audio_control = 0x51, |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6358 dv_audio_recdate = 0x52, |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6359 dv_audio_rectime = 0x53, |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6360 dv_video_source = 0x60, |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6361 dv_video_control = 0x61, |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6362 dv_video_recdate = 0x62, |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6363 dv_video_rectime = 0x63, |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6364 dv_unknown_pack = 0xff, |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6365 }; |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6366 |
7715
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6367 #define DV_PROFILE_IS_HD(p) ((p)->video_stype & 0x10) |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6368 #define DV_PROFILE_IS_1080i50(p) (((p)->video_stype == 0x14) && ((p)->dsf == 1)) |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6369 #define DV_PROFILE_IS_720p50(p) (((p)->video_stype == 0x18) && ((p)->dsf == 1)) |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6370 |
3167 | 6371 /* minimum number of bytes to read from a DV stream in order to determine the profile */ |
6372 #define DV_PROFILE_BYTES (6*80) /* 6 DIF blocks */ | |
6373 | |
7715
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6374 /* largest possible DV frame, in bytes (1080i50) */ |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6375 #define DV_MAX_FRAME_SIZE 576000 |
3167 | 6376 |
7614
1afa1171b7b2
Introducing DV_MAX_BPM macro instead of a hardcoded value for the
romansh
parents:
7538
diff
changeset
|
6377 /* maximum number of blocks per macroblock in any DV format */ |
1afa1171b7b2
Introducing DV_MAX_BPM macro instead of a hardcoded value for the
romansh
parents:
7538
diff
changeset
|
6378 #define DV_MAX_BPM 8 |
1afa1171b7b2
Introducing DV_MAX_BPM macro instead of a hardcoded value for the
romansh
parents:
7538
diff
changeset
|
6379 |
6266 | 6380 static inline const DVprofile* dv_frame_profile(const uint8_t* frame) |
1489
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6381 { |
7714
f0f8bb920b24
Introducing video_stype for holding the value of VAUX source pack
romansh
parents:
7616
diff
changeset
|
6382 int i; |
f0f8bb920b24
Introducing video_stype for holding the value of VAUX source pack
romansh
parents:
7616
diff
changeset
|
6383 |
f0f8bb920b24
Introducing video_stype for holding the value of VAUX source pack
romansh
parents:
7616
diff
changeset
|
6384 int dsf = (frame[3] & 0x80) >> 7; |
f0f8bb920b24
Introducing video_stype for holding the value of VAUX source pack
romansh
parents:
7616
diff
changeset
|
6385 |
f0f8bb920b24
Introducing video_stype for holding the value of VAUX source pack
romansh
parents:
7616
diff
changeset
|
6386 int stype = frame[80*5 + 48 + 3] & 0x1f; |
f0f8bb920b24
Introducing video_stype for holding the value of VAUX source pack
romansh
parents:
7616
diff
changeset
|
6387 |
f0f8bb920b24
Introducing video_stype for holding the value of VAUX source pack
romansh
parents:
7616
diff
changeset
|
6388 /* 576i50 25Mbps 4:1:1 is a special case */ |
f0f8bb920b24
Introducing video_stype for holding the value of VAUX source pack
romansh
parents:
7616
diff
changeset
|
6389 if (dsf == 1 && stype == 0 && frame[5] & 0x07) { |
f0f8bb920b24
Introducing video_stype for holding the value of VAUX source pack
romansh
parents:
7616
diff
changeset
|
6390 return &dv_profiles[2]; |
f0f8bb920b24
Introducing video_stype for holding the value of VAUX source pack
romansh
parents:
7616
diff
changeset
|
6391 } |
f0f8bb920b24
Introducing video_stype for holding the value of VAUX source pack
romansh
parents:
7616
diff
changeset
|
6392 |
f0f8bb920b24
Introducing video_stype for holding the value of VAUX source pack
romansh
parents:
7616
diff
changeset
|
6393 for (i=0; i<sizeof(dv_profiles)/sizeof(DVprofile); i++) |
f0f8bb920b24
Introducing video_stype for holding the value of VAUX source pack
romansh
parents:
7616
diff
changeset
|
6394 if (dsf == dv_profiles[i].dsf && stype == dv_profiles[i].video_stype) |
f0f8bb920b24
Introducing video_stype for holding the value of VAUX source pack
romansh
parents:
7616
diff
changeset
|
6395 return &dv_profiles[i]; |
f0f8bb920b24
Introducing video_stype for holding the value of VAUX source pack
romansh
parents:
7616
diff
changeset
|
6396 |
f0f8bb920b24
Introducing video_stype for holding the value of VAUX source pack
romansh
parents:
7616
diff
changeset
|
6397 return NULL; |
1489
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6398 } |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6399 |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6400 static inline const DVprofile* dv_codec_profile(AVCodecContext* codec) |
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6401 { |
3167 | 6402 int i; |
6403 | |
6404 for (i=0; i<sizeof(dv_profiles)/sizeof(DVprofile); i++) | |
7715
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6405 if (codec->height == dv_profiles[i].height && codec->pix_fmt == dv_profiles[i].pix_fmt && |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6406 codec->width == dv_profiles[i].width) |
e8f71784062e
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
7714
diff
changeset
|
6407 return &dv_profiles[i]; |
3167 | 6408 |
6409 return NULL; | |
1489
337d13aee605
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
1167
diff
changeset
|
6410 } |
3671
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6411 |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6412 static inline int dv_write_dif_id(enum dv_section_type t, uint8_t chan_num, uint8_t seq_num, |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6413 uint8_t dif_num, uint8_t* buf) |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6414 { |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6415 buf[0] = (uint8_t)t; /* Section type */ |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6416 buf[1] = (seq_num<<4) | /* DIF seq number 0-9 for 525/60; 0-11 for 625/50 */ |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6417 (chan_num << 3) | /* FSC: for 50Mb/s 0 - first channel; 1 - second */ |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6418 7; /* reserved -- always 1 */ |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6419 buf[2] = dif_num; /* DIF block number Video: 0-134, Audio: 0-8 */ |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6420 return 3; |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6421 } |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6422 |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6423 |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6424 static inline int dv_write_ssyb_id(uint8_t syb_num, uint8_t fr, uint8_t* buf) |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6425 { |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6426 if (syb_num == 0 || syb_num == 6) { |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6427 buf[0] = (fr<<7) | /* FR ID 1 - first half of each channel; 0 - second */ |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6428 (0<<4) | /* AP3 (Subcode application ID) */ |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6429 0x0f; /* reserved -- always 1 */ |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6430 } |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6431 else if (syb_num == 11) { |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6432 buf[0] = (fr<<7) | /* FR ID 1 - first half of each channel; 0 - second */ |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6433 0x7f; /* reserved -- always 1 */ |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6434 } |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6435 else { |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6436 buf[0] = (fr<<7) | /* FR ID 1 - first half of each channel; 0 - second */ |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6437 (0<<4) | /* APT (Track application ID) */ |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6438 0x0f; /* reserved -- always 1 */ |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6439 } |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6440 buf[1] = 0xf0 | /* reserved -- always 1 */ |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6441 (syb_num & 0x0f); /* SSYB number 0 - 11 */ |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6442 buf[2] = 0xff; /* reserved -- always 1 */ |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6443 return 3; |
18113845d891
* Restructuring the division of labor between DV codec and DV format
romansh
parents:
3167
diff
changeset
|
6444 } |
5163 | 6445 |
5830
1d83e9c34641
Add FFMPEG_ prefix to all multiple inclusion guards.
diego
parents:
5351
diff
changeset
|
6446 #endif /* FFMPEG_DVDATA_H */ |