Mercurial > mplayer.hg
annotate DOCS/tech/mpcf.txt @ 10824:d163db068a12
reserved_bytes & byte order stuff
author | michael |
---|---|
date | Sat, 06 Sep 2003 13:21:08 +0000 |
parents | 59ac254c2541 |
children | 85179ecb5a6e |
rev | line source |
---|---|
10817 | 1 NUT Open Container Format DRAFT 20030906 |
2 ---------------------------------------- | |
9294 | 3 |
4 | |
5 | |
6 Intro: | |
7 | |
8 Features / goals: | |
9 (supported by the format, not necessary by a specific implementation) | |
10 | |
11 Simple | |
12 use the same encoding for nearly all fields | |
10158
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
13 simple decoding, so slow cpus (and embedded systems) can handle it |
9294 | 14 Extendible |
15 no limit for the possible values for all fields (using universal vlc) | |
16 allow adding of new headers in the future | |
17 allow adding more fields at the end of headers | |
18 Compact | |
19 ~0.2% overhead, for normal bitrates | |
20 index is <10kb per hour (1 keyframe every 3sec) | |
21 Error resistant | |
22 seeking / playback without an index | |
23 headers & index can be repeated | |
24 audio packet reshuffle | |
25 checksums to allow quick redownloading of damaged parts | |
10158
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
26 damaged files can be played back with minimal data lost and fast |
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
27 resyncing times |
9294 | 28 |
29 | |
30 | |
31 Definitions: | |
32 | |
33 MUST the specific part must be done to conform to this standard | |
34 SHOULD its recommanded to be done that way but its not strictly required | |
35 | |
36 | |
37 | |
38 Syntax: | |
39 | |
9295 | 40 Type definitions: |
41 v | |
42 value=0 | |
43 do{ | |
44 more_data u(1) | |
45 data u(7) | |
46 value= 128*value + data | |
47 }while(more_data) | |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
48 |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
49 s |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
50 temp v |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
51 temp++ |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
52 if(temp&1) value= -(temp>>1) |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
53 else value= (temp>>1) |
9323 | 54 |
55 b (binary data or string) | |
56 length v | |
57 for(i=0; i<length; i++){ | |
58 data[i] u(8) | |
9295 | 59 } |
9335
de287fe94511
lang & country codes from ISO & utf8 requirement (ideas from Tobias Diedrich <td at sim dot uni-hannover dot de>
michael
parents:
9325
diff
changeset
|
60 Note: strings MUST be encoded in utf8 |
9295 | 61 |
9323 | 62 |
10824 | 63 f(x) n fixed bits in big endian order |
9295 | 64 u(x) unsigned number encoded in x bits in MSB first order |
65 | |
66 | |
67 Bitstream syntax: | |
9294 | 68 packet header |
69 forward ptr v | |
70 backward ptr v | |
71 | |
72 align_byte | |
73 while(not byte aligned) | |
74 one f(1) | |
75 | |
76 reserved_bytes | |
77 for(i=0; i<forward_ptr - length_of_non_reserved; i++) | |
78 reserved u(8) | |
10824 | 79 a decoder MUST ignore any reserved bytes |
80 a encoder MUST NOT write any reserved bytes, as this would make it | |
81 inpossible to add new fields at the end of packets in the future in | |
82 a compatible way | |
83 | |
9294 | 84 main header: |
85 packet header | |
86 main_startcode f(64) | |
87 version v | |
88 stream_count v | |
89 file_size v | |
9310 | 90 length_in_msec v |
9294 | 91 reserved_bytes |
92 checksum u(32) | |
93 | |
94 stream_header: | |
95 packet_header | |
96 stream_startcode f(64) | |
97 stream_id v | |
98 stream_class v | |
9323 | 99 fourcc b |
9294 | 100 average_bitrate v |
9325 | 101 language_code b |
9297 | 102 time_base_nom v |
103 time_base_denom v | |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
104 msb_timestamp_shift v |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
105 shuffle_type v |
9294 | 106 fixed_fps u(1) |
9347
97888c25ae60
changing name to "nut" for now, we can change it again if we agree on something else
michael
parents:
9335
diff
changeset
|
107 index_flag u(1) |
9356 | 108 reserved u(6) |
9357
21347f49e8d8
supprting various codec specific/private headers for different APIs (ideas by arpi/alex/fabian)
michael
parents:
9356
diff
changeset
|
109 for(;;){ |
9361 | 110 codec_specific_data_type v |
111 if(codec_specific_data_type==0) break; | |
9357
21347f49e8d8
supprting various codec specific/private headers for different APIs (ideas by arpi/alex/fabian)
michael
parents:
9356
diff
changeset
|
112 codec_specific_data b |
21347f49e8d8
supprting various codec specific/private headers for different APIs (ideas by arpi/alex/fabian)
michael
parents:
9356
diff
changeset
|
113 } |
9294 | 114 |
115 video_stream_header: | |
116 stream_header | |
117 width v | |
118 height v | |
119 sample_width v | |
120 sample_height v | |
121 colorspace_type v | |
122 reserved_bytes | |
123 checksum u(32) | |
124 | |
125 audio_stream_header: | |
126 stream_header | |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
127 samplerate_mul v |
9294 | 128 channel_count v |
129 reserved_bytes | |
130 checksum u(32) | |
9420 | 131 |
9294 | 132 frame |
133 packet header | |
134 if(keyframe){ | |
135 keyframe_startcode f(64) | |
136 } | |
9311
4b04416ada91
zero_bit for normal frames, so we can distinguish them from other packets
michael
parents:
9310
diff
changeset
|
137 zero_bit f(1) |
9294 | 138 priority u(2) |
139 checksum_flag u(1) | |
140 msb_timestamp_flag u(1) | |
9420 | 141 subpacket_type u(2) |
142 reserved u(1) | |
9311
4b04416ada91
zero_bit for normal frames, so we can distinguish them from other packets
michael
parents:
9310
diff
changeset
|
143 stream_id v |
9294 | 144 if(msb_timestamp_flag) |
145 msb_timestamp v | |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
146 lsb_timestamp s |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
147 if(sub_packet_type==01) |
9420 | 148 sub_packet[0] |
149 else{ | |
150 subpacket_count v | |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
151 if(sub_packet_type&01) |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
152 for(i=0; ; i++) |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
153 keyframe_run[i] v |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
154 for(i=0; ; i++){ |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
155 timestamp_diff[i] v |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
156 if(timestamp_diff[i] & 1) |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
157 timestamp_diff_run[i] v |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
158 } |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
159 if(sub_packet_type&10){ |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
160 for(i=0; i<subpacket_count-1; i++) |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
161 subpacket_size_diff[i] s |
9420 | 162 } |
163 for(i=0; i<subpacket_count; i++) | |
164 subpacket[i] | |
165 } | |
166 } | |
167 if(checksum_flag) | |
9312 | 168 frame_checksum u(32) |
9294 | 169 |
170 Index: | |
171 packet header | |
172 index_startcode f(64) | |
173 stream_id v | |
174 index_length v | |
175 for(i=0; i<index_length; i++){ | |
176 index_timestamp v | |
177 index_position v | |
178 } | |
9310 | 179 reserved_bytes |
9294 | 180 checksum u(32) |
181 | |
9310 | 182 info_packet: (optional) |
9294 | 183 packet header |
184 info_startcode f(64) | |
9323 | 185 for(;;){ |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
186 id v |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
187 if(id==0) break |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
188 name= info_table[id][0] |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
189 type= info_table[id][1] |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
190 if(type==NULL) |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
191 type b |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
192 if(name==NULL) |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
193 name b |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
194 if(type=="v") |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
195 value v |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
196 else if(type=="s") |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
197 value s |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
198 else |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
199 value b |
9323 | 200 } |
9310 | 201 reserved_bytes |
9294 | 202 checksum u(32) |
9323 | 203 |
204 | |
9294 | 205 forward_ptr |
206 backward_ptr | |
207 pointer to the next / previous packet | |
9323 | 208 pointers are relative and backward pointer is implicitelly negative |
9294 | 209 Note: a frame with 0 bytes means that its skiped |
9323 | 210 Note: the forward pointer is equal to the size of this packet including |
211 the header | |
212 the backward pointer is equal to the size of the previous packet | |
213 Example: | |
214 0 | |
215 size1 (size of frame1 including header) | |
216 frame1 | |
217 | |
218 size1 | |
219 size2 | |
220 frame2 | |
221 | |
222 size2 | |
223 size3 | |
224 frame3 | |
225 | |
226 | |
227 *_startcode | |
228 the first bit is allways set | |
9294 | 229 |
230 version | |
231 0 for now | |
232 | |
233 file_size | |
10817 | 234 size in bytes. 0 invalidates the field |
9294 | 235 |
236 length_in_msec | |
10817 | 237 length of the file in milli seconds (0 invalidates the field) |
9347
97888c25ae60
changing name to "nut" for now, we can change it again if we agree on something else
michael
parents:
9335
diff
changeset
|
238 |
9294 | 239 stream_id |
240 Note: streams with a lower relative class MUST have a lower relative id | |
241 so a stream with class 0 MUST allways have a id which is lower then any | |
242 stream with class > 0 | |
9295 | 243 streams should use low ids |
9294 | 244 |
245 stream_class | |
246 0 video | |
247 32 audio | |
248 64 subtiles | |
249 Note the remaining values are reserved and MUST NOT be used | |
9312 | 250 a decoder MUST ignore streams with reserved classes |
9294 | 251 |
252 fourcc | |
253 identification for the codec | |
9323 | 254 example: "H264" |
10817 | 255 MUST contain 2 or 4 bytes, note, this might be increased in the future |
256 if needed | |
257 | |
9294 | 258 language_code |
9335
de287fe94511
lang & country codes from ISO & utf8 requirement (ideas from Tobias Diedrich <td at sim dot uni-hannover dot de>
michael
parents:
9325
diff
changeset
|
259 ISO 639 and ISO 3166 for language/country code |
9325 | 260 something like "usen" (US english), can be 0 |
9294 | 261 if unknown |
9335
de287fe94511
lang & country codes from ISO & utf8 requirement (ideas from Tobias Diedrich <td at sim dot uni-hannover dot de>
michael
parents:
9325
diff
changeset
|
262 see http://www.loc.gov/standards/iso639-2/englangn.html |
de287fe94511
lang & country codes from ISO & utf8 requirement (ideas from Tobias Diedrich <td at sim dot uni-hannover dot de>
michael
parents:
9325
diff
changeset
|
263 and http://www.din.de/gremien/nas/nabd/iso3166ma/codlstp1/en_listp1.html |
9294 | 264 |
9297 | 265 time_base_nom / time_base_denom = time_base |
9294 | 266 the number of timer ticks per second, this MUST be equal to the fps |
267 if the fixed_fps is 1 | |
9297 | 268 time_base_denom MUST not be 0 |
269 time_base_nom and time_base_denom MUST be relative prime | |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
270 time_base_nom MUST be < 2^16 |
9297 | 271 examples: |
272 fps time_base_nom time_base_denom | |
273 30 30 1 | |
274 29.97 30000 1001 | |
275 23.976 24000 1001 | |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
276 sample_rate sample_rate_mul time_base_nom time_base_denom |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
277 44100 1 44100 1 |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
278 44100 64 11025 16 |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
279 48000 1024 375 8 |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
280 Note: the advantage to using a large sample_rate_mul is that the |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
281 timestamps need fewer bits |
9294 | 282 |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
283 msb_timestamp_shift |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
284 amount of bits msb_timestamp is shifted left before adding lsb_timestamp |
9294 | 285 MUST be <16 |
286 | |
287 fixed_fps | |
288 1 indicates that the fps is fixed | |
289 | |
10158
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
290 index_flag |
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
291 1 indicates that this file has an index |
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
292 Note, all files SHOULD have an index at the end except, (realtime) streams |
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
293 Note, all streams SHOULD have an index |
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
294 |
9357
21347f49e8d8
supprting various codec specific/private headers for different APIs (ideas by arpi/alex/fabian)
michael
parents:
9356
diff
changeset
|
295 codec_specific_data_type |
10817 | 296 0 none/end |
9361 | 297 1 native |
298 2 bitmapinfoheader | |
299 3 waveformatex | |
300 4 imagedesc | |
301 5 sounddesc | |
9357
21347f49e8d8
supprting various codec specific/private headers for different APIs (ideas by arpi/alex/fabian)
michael
parents:
9356
diff
changeset
|
302 "native", means a simple api & container independanet storage form, |
21347f49e8d8
supprting various codec specific/private headers for different APIs (ideas by arpi/alex/fabian)
michael
parents:
9356
diff
changeset
|
303 for example some mpeg4-es headers |
21347f49e8d8
supprting various codec specific/private headers for different APIs (ideas by arpi/alex/fabian)
michael
parents:
9356
diff
changeset
|
304 |
9356 | 305 codec_specific_data |
306 private global data for a codec (could be huffman tables or ...) | |
9294 | 307 |
308 msb_timestamp_flag | |
309 indicates that the msb_timestamp is coded | |
310 MUST be 1 for keyframes | |
311 | |
9420 | 312 subpacket_type |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
313 subpacket_count subpacket_size keyframe_flag |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
314 00 >1 constant constant |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
315 01 1 NA NA |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
316 10 >1 variable constant |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
317 11 >1 variable variable |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
318 the only legal subpacket_type for video streams is 01, so video streams |
9422
5e990417accf
disallow multiple subpackets per packet for video streams idea by (me & Moritz Bunkus <moritz at bunkus dot org>)
michael
parents:
9421
diff
changeset
|
319 MUST NOT contain multiple subpackets per packet |
9420 | 320 Note, if there are multiple subpackets then the timestamp of the packet |
321 is the timestamp of the first subpacket | |
322 Note, if multiple subpackets are stored in one frame then the resulting | |
323 framesize SHOULD be < 16kbyte and not more then 0.5 sec of data SHOULD | |
324 be put in a single packet | |
325 | |
326 subpacket_count | |
327 the number of subpackets, if not pressent then 1 | |
328 | |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
329 keyframe_run[i] |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
330 the number of subpackets with an identical keyframe_flag |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
331 Note, the value of first flag is stored in the packet header |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
332 is equal to subpacket count if not coded |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
333 |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
334 timestamp_diff[i] |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
335 the difference from the last subpacket timestamp to the current one in |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
336 time_base precission |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
337 the lowwest bit is used to indicate if timestamp_diff_run[i] is coded |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
338 |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
339 timestamp_diff_run[i] |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
340 the number of subpackets which have the same timestamp_diff |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
341 if not coded than 1 |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
342 0 is forbidden |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
343 |
9420 | 344 subpacket_size_diff |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
345 the difference between the predicted size of this subpacket and the |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
346 actual size |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
347 the predicted size is 64 for the first subpacket in a packet |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
348 otherwise it is MAX(64, last_subpacket_size) |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
349 the size of the last subpacket is not coded and is simply the space left |
9420 | 350 Note a subpacket MUST be in exactly one packet, it cannot be split |
351 | |
9294 | 352 msb_timestamp |
353 most significant bits of the timestamp, SHOULD be 0 for the first frame | |
354 | |
355 lsb_timestamp | |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
356 difference from the msb_timestamp in time_base precission |
9294 | 357 Example: IBBP display order |
358 keyframe msb_timestamp=0 lsb_timestamp=0 -> timestamp=0 | |
359 frame lsb_timestamp=3 -> timestamp=3 | |
360 frame lsb_timestamp=1 -> timestamp=1 | |
361 frame lsb_timestamp=2 -> timestamp=2 | |
362 ... | |
363 keyframe msb_timestamp=1 lsb_timestamp=1 -> timestamp=257 | |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
364 frame lsb_timestamp=-1-> timestamp=255 |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
365 frame lsb_timestamp=0 -> timestamp=256 |
9294 | 366 frame lsb_timestamp=4 -> timestamp=260 |
367 frame lsb_timestamp=2 -> timestamp=258 | |
368 frame lsb_timestamp=3 -> timestamp=259 | |
369 | |
370 width/height | |
371 MUST be set to the coded width/height | |
372 | |
373 sample_width/sample_height (aspect ratio) | |
374 sample_width is the horizontal distance between samples | |
375 sample_width and sample_height MUST be relative prime if not zero | |
376 MUST be 0 if unknown | |
377 | |
10158
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
378 colorspace_type |
10166 | 379 0 unknown |
380 1 ITU Rec 624 / ITU Rec 601 Y range: 16..235 Cb/Cr range: 16..240 | |
381 2 ITU Rec 709 Y range: 16..235 Cb/Cr range: 16..240 | |
382 17 ITU Rec 624 / ITU Rec 601 Y range: 0..255 Cb/Cr range: 0..255 | |
383 18 ITU Rec 709 Y range: 0..255 Cb/Cr range: 0..255 | |
384 | |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
385 samplerate_mul |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
386 the number of samples per second in one time_base unit |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
387 samplerate = time_base*samplerate_mul |
9294 | 388 |
9311
4b04416ada91
zero_bit for normal frames, so we can distinguish them from other packets
michael
parents:
9310
diff
changeset
|
389 zero_bit |
4b04416ada91
zero_bit for normal frames, so we can distinguish them from other packets
michael
parents:
9310
diff
changeset
|
390 MUST be 0, its there to distinguish non keyframes from other packets, |
4b04416ada91
zero_bit for normal frames, so we can distinguish them from other packets
michael
parents:
9310
diff
changeset
|
391 Note: all packets have a 64-bit startcode except non-keyframes to reduce |
4b04416ada91
zero_bit for normal frames, so we can distinguish them from other packets
michael
parents:
9310
diff
changeset
|
392 their size, and all startcodes start with a 1 bit |
4b04416ada91
zero_bit for normal frames, so we can distinguish them from other packets
michael
parents:
9310
diff
changeset
|
393 |
9294 | 394 priority |
395 if 0 then the frame isnt used as reference (b frame) and can be droped | |
396 MUST be > 0 for keyframes | |
397 | |
398 shuffle_type | |
9420 | 399 audio is often encoded in small subpackets, and to increase the |
9294 | 400 error robustness these can be shuffled |
401 0 -> no shuffle | |
402 1-16 -> interleave packets by 2^n | |
403 | |
404 checksum | |
9307
ec18ad315bbe
10l (copy & pasting the generator poly for crc32 from ogg was a bad idea...)
michael
parents:
9299
diff
changeset
|
405 crc32 checksum using the generator polynomial 0x104c11db7 (same as ogg) |
9294 | 406 |
407 checksum_flag | |
408 indicates that the frame_checksum is coded | |
409 must be 1 for the last non keyframe before a keyframe | |
410 | |
411 frame_checksum | |
412 identical to checksum, but instead of covering just the current | |
413 packet, it covers all frames of the same stream id since the last | |
9312 | 414 frame_checksum |
9294 | 415 this field is only coded if checksum_flag=1 |
416 | |
417 index_timestamp | |
418 value in time_base precission, relative to the last index_timestamp | |
419 | |
420 index_position | |
421 position in bytes of the first byte of the keyframe header, relative | |
422 to the last index_position | |
423 | |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
424 id |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
425 the id of the type/name pair, so its more compact |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
426 0 means end |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
427 |
9323 | 428 type |
9347
97888c25ae60
changing name to "nut" for now, we can change it again if we agree on something else
michael
parents:
9335
diff
changeset
|
429 for example: "UTF8" -> String or "JPEG" -> jpeg image |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
430 Note: nonstandard fields should be prefixed by "X-" |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
431 Note: MUST be less than 6 byte long (might be increased to 64 later) |
9323 | 432 |
9295 | 433 name |
434 the name of the info entry, valid names are | |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
435 "StreamId" the stream(s) to which the info packet applies |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
436 "StartTimestamp" |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
437 "EndTimestamp" the time range in msecs to which the info applies |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
438 "SegmentId" a unique id for the streams + time specified |
9347
97888c25ae60
changing name to "nut" for now, we can change it again if we agree on something else
michael
parents:
9335
diff
changeset
|
439 "Author" |
97888c25ae60
changing name to "nut" for now, we can change it again if we agree on something else
michael
parents:
9335
diff
changeset
|
440 "Description" |
97888c25ae60
changing name to "nut" for now, we can change it again if we agree on something else
michael
parents:
9335
diff
changeset
|
441 "Copyright" |
9369 | 442 "Encoder" the name & version of the software used for encoding |
9347
97888c25ae60
changing name to "nut" for now, we can change it again if we agree on something else
michael
parents:
9335
diff
changeset
|
443 "Title" |
9373 | 444 "Cover" an image of the (cd,dvd,vhs,..) cover (preferable PNG or JPEG) |
9350 | 445 "Source" "DVD", "VCD", "CD", "MD", "FM radio", "VHS", "TV", |
446 "LD" | |
9373 | 447 Optional: appended PAL,NTSC,SECAM, ... in parentheses |
9350 | 448 "CaptureDevice" "BT878", "BT848", "webcam", ... (more exact names are fine too) |
449 "CreationTime" "2003-01-20 20:13:15Z", ... | |
450 (ISO 8601 format, see http://www.cl.cam.ac.uk/~mgk25/iso-time.html) | |
451 Note: dont forget the timezone | |
9360
add934b25d6d
"X-" prefix for nonstd fields & "keywords" idea by (Andreas Hess <jaska at gmx dot net>)
michael
parents:
9357
diff
changeset
|
452 "Keywords" |
9295 | 453 Note: if someone needs some others, please tell us about them, so we can |
454 add them to the official standard (if they are sane) | |
9360
add934b25d6d
"X-" prefix for nonstd fields & "keywords" idea by (Andreas Hess <jaska at gmx dot net>)
michael
parents:
9357
diff
changeset
|
455 Note: nonstandard fields should be prefixed by "X-" |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
456 Note: MUST be less than 64 bytes long |
9295 | 457 |
458 value | |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
459 value of this name/type pair |
9295 | 460 |
9310 | 461 stuffing |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
462 0x80 can be placed infront of any type v entry for stuffing |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
463 purposes |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
464 |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
465 info_table[][2]={ |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
466 {NULL , NULL }, // end |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
467 {NULL , NULL }, |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
468 {NULL , "UTF8"}, |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
469 {NULL , "v"}, |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
470 {NULL , "s"}, |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
471 {"StreamId" , "v"}, |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
472 {"SegmentId" , "v"}, |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
473 {"StartTimestamp" , "v"}, |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
474 {"EndTimestamp" , "v"}, |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
475 {"Author" , "UTF8"}, |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
476 {"Titel" , "UTF8"}, |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
477 {"Description" , "UTF8"}, |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
478 {"Copyright" , "UTF8"}, |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
479 {"Encoder" , "UTF8"}, |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
480 {"Keyword" , "UTF8"}, |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
481 {"Cover" , "JPEG"}, |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
482 {"Cover" , "PNG"}, |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
483 }; |
9294 | 484 |
485 Structure: | |
486 | |
487 the headers MUST be in exactly the following order (to simplify demuxer design) | |
488 main header | |
489 stream_header (id=0) | |
490 stream_header (id=1) | |
491 ... | |
492 stream_header (id=n) | |
493 | |
494 headers may be repated, but if they are then they MUST all be repeated together | |
495 and repeated headers MUST be identical | |
496 | |
497 headers MUST be repeated every 10sec at least ? FIXME | |
10817 | 498 headers MUST be repeated BEFORE keyframes |
9310 | 499 headers MUST be repeated at least twice (so they exist 3 times in a file) |
9295 | 500 |
9310 | 501 Index |
9580 | 502 the index can be repeated but there SHOULD be at least one for each stream at |
503 the end | |
9311
4b04416ada91
zero_bit for normal frames, so we can distinguish them from other packets
michael
parents:
9310
diff
changeset
|
504 Note: in case of realtime streaming there is no end, so no index there either |
9310 | 505 |
506 Info packets | |
507 the info_packet can be repeated, it can also contain different names & values | |
508 each time but only if allso the time is different | |
509 Info packets can be used to describe the file or some part of it (chapters) | |
510 | |
511 info packets, SHOULD be placed at the begin of the file at least | |
512 for realtime streaming info packets will normally be transmitted when they apply | |
513 for example, the current song title & artist of the currently shown music video | |
514 | |
515 Stuffing packets | |
516 can be used as a filler, for example to leave some empty space at the begin for | |
517 a copy of the index | |
518 | |
519 Unknown packets | |
520 MUST be ignored by the decoder | |
521 | |
9294 | 522 Sample code (GPL, & untested) |
523 | |
524 typedef BufferContext{ | |
525 uint8_t *buf; | |
526 uint8_t *buf_ptr; | |
527 }BufferContext; | |
528 | |
529 static inline uint64_t get_bytes(BufferContext *bc, int count){ | |
530 uint64_t val=0; | |
531 | |
532 assert(count>0 && count<9) | |
533 | |
534 for(i=0; i<count; i++){ | |
535 val <<=8; | |
536 val += *(bc->buf_ptr++); | |
537 } | |
538 | |
539 return val; | |
540 } | |
541 | |
542 static inline void put_bytes(BufferContext *bc, int count, uint64_t val){ | |
543 uint64_t val=0; | |
544 | |
545 assert(count>0 && count<9) | |
546 | |
547 for(i=count-1; i>=0; i--){ | |
548 *(bc->buf_ptr++)= val >> (8*i); | |
549 } | |
550 | |
551 return val; | |
552 } | |
553 | |
10061 | 554 static inline uint64_t get_v(BufferContext *bc){ |
9294 | 555 uint64_t val= 0; |
556 | |
10158
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
557 for(; space_left(bc) > 0; ){ |
9294 | 558 int tmp= *(bc->buf_ptr++); |
559 if(tmp&0x80) | |
560 val= (val<<7) + tmp - 0x80; | |
561 else | |
9299 | 562 return (val<<7) + tmp; |
9294 | 563 } |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
564 |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
565 return -1; |
9294 | 566 } |
567 | |
10061 | 568 static inline int put_v(BufferContext *bc, uint64_t val){ |
9294 | 569 int i; |
570 | |
10158
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
571 if(space_left(bc) < 9) return -1; |
9294 | 572 |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
573 val &= 0x7FFFFFFFFFFFFFFFULL; // FIXME can only encode upto 63 bits currently |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
574 for(i=7; ; i+=7){ |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
575 if(val>>i == 0) break; |
9294 | 576 } |
577 | |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
578 for(i-=7; i>0; i-=8){ |
9294 | 579 *(bc->buf_ptr++)= 0x80 | (val>>i); |
580 } | |
581 *(bc->buf_ptr++)= val&0x7F; | |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
582 |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
583 return 0; |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
584 } |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
585 |
10061 | 586 static inline int put_s(BufferContext *bc, uint64_t val){ |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
587 if(val<=0) return put_v(bc, -2*val ); |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
588 else return put_v(bc, 2*val-1); |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
589 } |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
590 |
10061 | 591 static inline int64_t get_s(BufferContext *bc){ |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
592 int64_t v= get_v(bc) + 1; |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
593 if(v&1) return -(v>>1); |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
594 else return (v>>1); |
9294 | 595 } |
596 | |
597 | |
598 Example stream | |
599 | |
600 main header | |
601 video_stream_header (stream 0, video jpjp, timebase 30, lsb_timestamp_length=8) | |
602 video_stream_header (stream 1 subtitle usen, timebase 30, lsb_timestamp_length=8) | |
603 video_stream_header (stream 2 subtitle atde, timebase 30, lsb_timestamp_length=8) | |
604 audio_stream_header (stream 3, audio jpjp, timebase 1 , lsb_timestamp_length=8) | |
605 audio_stream_header (stream 4, audio usen, timebase 1 , lsb_timestamp_length=8) | |
606 index (stream 0) | |
607 keyframe (stream 0, msb_timestamp=0, lsb_timestamp=0) | |
608 keyframe (stream 1, msb_timestamp=0, lsb_timestamp=0) | |
609 keyframe (stream 2, msb_timestamp=0, lsb_timestamp=0) | |
610 keyframe (stream 3, msb_timestamp=0, lsb_timestamp=0) | |
611 keyframe (stream 4, msb_timestamp=0, lsb_timestamp=0) | |
612 frame (stream 0, lsb_timestamp=1) | |
613 frame (stream 0, lsb_timestamp=2) | |
614 ... | |
615 frame (stream 0, lsb_timestamp=30) | |
616 keyframe (stream 3, msb_timestamp=0, lsb_timestamp=1) | |
617 keyframe (stream 4, msb_timestamp=0, lsb_timestamp=1) | |
618 frame (stream 0, lsb_timestamp=31) | |
619 frame (stream 0, lsb_timestamp=32) | |
620 ... | |
621 frame (stream 0, lsb_timestamp=60) | |
622 frame (stream 1, lsb_timestamp=60) | |
623 frame (stream 2, lsb_timestamp=60) | |
624 keyframe (stream 3, msb_timestamp=0, lsb_timestamp=2) | |
625 keyframe (stream 4, msb_timestamp=0, lsb_timestamp=2) | |
626 frame (stream 0, lsb_timestamp=61) | |
627 frame (stream 0, lsb_timestamp=62) | |
628 ... | |
629 main header | |
630 video_stream_header (stream 0, video jpjp, timebase 30, lsb_timestamp_length=8) | |
631 video_stream_header (stream 1 subtitle usen, timebase 30, lsb_timestamp_length=8) | |
632 video_stream_header (stream 2 subtitle atde, timebase 30, lsb_timestamp_length=8) | |
633 audio_stream_header (stream 3, audio jpjp, timebase 1 , lsb_timestamp_length=8) | |
634 audio_stream_header (stream 4, audio usen, timebase 1 , lsb_timestamp_length=8) | |
635 frame (stream 0, lsb_timestamp=255) | |
636 frame (stream 0, msb_timestamp=1 lsb_timestamp=0) | |
637 frame (stream 0, lsb_timestamp=1) | |
638 frame (stream 0, lsb_timestamp=2) | |
639 frame (stream 1, msb_timestamp=1 lsb_timestamp=2) | |
640 frame (stream 2, msb_timestamp=1 lsb_timestamp=2) | |
641 frame (stream 0, lsb_timestamp=3) | |
642 frame (stream 0, lsb_timestamp=4) | |
643 ... | |
644 keyframe (stream 3, msb_timestamp=0, lsb_timestamp=9) | |
645 keyframe (stream 4, msb_timestamp=0, lsb_timestamp=9) | |
646 main header | |
647 video_stream_header (stream 0, video jpjp, timebase 30, lsb_timestamp_length=8) | |
648 video_stream_header (stream 1 subtitle usen, timebase 30, lsb_timestamp_length=8) | |
649 video_stream_header (stream 2 subtitle atde, timebase 30, lsb_timestamp_length=8) | |
650 audio_stream_header (stream 3, audio jpjp, timebase 1 , lsb_timestamp_length=8) | |
651 audio_stream_header (stream 4, audio usen, timebase 1 , lsb_timestamp_length=8) | |
652 index (stream 0) | |
10158
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
653 |
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
654 Authors |
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
655 |
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
656 Folks from MPlayer Developers Mailinglist (http://www.mplayehrq.hu/). |
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
657 Authors in ABC-order: (FIXME! Tell us if we left you out) |
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
658 Beregszaszi, Alex (alex@fsn.hu) |
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
659 Bunkus, Moritz (moritz@bunkus.org) |
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
660 Diedrich, Tobias (td@sim.uni-hannover.de) |
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
661 Franz, Fabian (FabianFranz@gmx.de) |
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
662 Gereoffy, Arpad (arpi@thot.banki.hu) |
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
663 Hess, Andreas (jaska@gmx.net) |
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
664 Niedermayer, Michael (michaelni@gmx.at) |