Mercurial > mplayer.hg
annotate DOCS/tech/mpcf.txt @ 12429:98d67f488df2
Qt RLE is now in ffmpeg
author | rtognimp |
---|---|
date | Wed, 05 May 2004 19:11:16 +0000 |
parents | bfa269cec22b |
children | cd0d9a99b730 |
rev | line source |
---|---|
12161
8e4700721c38
removing checksum_threshold & keyframe prediction
michael
parents:
12150
diff
changeset
|
1 NUT Open Container Format DRAFT 20040409 |
10817 | 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) | |
10831 | 21 a usual header for a file is about 100bytes (audio + video headers together) |
12082 | 22 a packet header is about ~1-8 bytes |
9294 | 23 Error resistant |
24 seeking / playback without an index | |
25 headers & index can be repeated | |
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: |
12209 | 41 |
42 f(x) n fixed bits in big endian order | |
43 u(x) unsigned number encoded in x bits in MSB first order | |
44 | |
9295 | 45 v |
46 value=0 | |
47 do{ | |
48 more_data u(1) | |
49 data u(7) | |
50 value= 128*value + data | |
51 }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
|
52 |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
53 s |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
54 temp v |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
55 temp++ |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
56 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
|
57 else value= (temp>>1) |
9323 | 58 |
59 b (binary data or string) | |
60 for(i=0; i<length; i++){ | |
61 data[i] u(8) | |
9295 | 62 } |
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
|
63 Note: strings MUST be encoded in utf8 |
9295 | 64 |
12117 | 65 vb |
66 length v | |
67 value b | |
68 | |
9295 | 69 |
70 Bitstream syntax: | |
9294 | 71 packet header |
12084
68baf8877c07
reversing the change to the forw/backw pointers, its somewhat simpler to update it if the forward pointer is first
michael
parents:
12082
diff
changeset
|
72 forward ptr v |
9294 | 73 |
74 align_byte | |
75 while(not byte aligned) | |
76 one f(1) | |
77 | |
78 reserved_bytes | |
79 for(i=0; i<forward_ptr - length_of_non_reserved; i++) | |
80 reserved u(8) | |
12184 | 81 a demuxer MUST ignore any reserved bytes |
82 a muxer MUST NOT write any reserved bytes, as this would make it | |
10824 | 83 inpossible to add new fields at the end of packets in the future in |
84 a compatible way | |
85 | |
9294 | 86 main header: |
10831 | 87 main_startcode f(64) |
9294 | 88 packet header |
89 version v | |
90 stream_count v | |
12333 | 91 max_distance v |
12413 | 92 global_time_base_nom v |
93 global_time_base_denom v | |
94 short_startcode v | |
12084
68baf8877c07
reversing the change to the forw/backw pointers, its somewhat simpler to update it if the forward pointer is first
michael
parents:
12082
diff
changeset
|
95 for(i=0; i<256; ){ |
68baf8877c07
reversing the change to the forw/backw pointers, its somewhat simpler to update it if the forward pointer is first
michael
parents:
12082
diff
changeset
|
96 tmp_flag v |
12428 | 97 tmp_fields v |
98 if(tmp_fields>0) tmp_timestamp s | |
99 if(tmp_fields>1) tmp_mul v | |
100 if(tmp_fields>2) tmp_stream v | |
101 if(tmp_fields>3) tmp_size v | |
102 else tmp_size=0 | |
103 if(tmp_fields>4) tmp_res v | |
104 else tmp_res=0 | |
105 if(tmp_fields>5) count v | |
106 else count= tmp_mul - tmp_size | |
107 for(j=6; j<tmp_fields; j++){ | |
108 tmp_reserved[i] v | |
109 } | |
110 for(j=0; j<count && i<256; j++, i++){ | |
12084
68baf8877c07
reversing the change to the forw/backw pointers, its somewhat simpler to update it if the forward pointer is first
michael
parents:
12082
diff
changeset
|
111 flags[i]= tmp_flag; |
68baf8877c07
reversing the change to the forw/backw pointers, its somewhat simpler to update it if the forward pointer is first
michael
parents:
12082
diff
changeset
|
112 stream_id_plus1[i]= tmp_stream; |
68baf8877c07
reversing the change to the forw/backw pointers, its somewhat simpler to update it if the forward pointer is first
michael
parents:
12082
diff
changeset
|
113 data_size_mul[i]= tmp_mul; |
12428 | 114 data_size_lsb[i]= tmp_size + j; |
12413 | 115 timestamp_delta[i]= tmp_timestamp; |
116 reserved_v[i]= tmp_res; | |
12082 | 117 } |
118 } | |
9294 | 119 reserved_bytes |
120 checksum u(32) | |
121 | |
122 stream_header: | |
10831 | 123 stream_startcode f(64) |
9294 | 124 packet_header |
125 stream_id v | |
126 stream_class v | |
12150 | 127 fourcc vb |
9294 | 128 average_bitrate v |
12150 | 129 language_code vb |
9297 | 130 time_base_nom v |
131 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
|
132 msb_timestamp_shift v |
12333 | 133 decode_delay v |
9294 | 134 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
|
135 index_flag u(1) |
9356 | 136 reserved u(6) |
9357
21347f49e8d8
supprting various codec specific/private headers for different APIs (ideas by arpi/alex/fabian)
michael
parents:
9356
diff
changeset
|
137 for(;;){ |
9361 | 138 codec_specific_data_type v |
139 if(codec_specific_data_type==0) break; | |
12117 | 140 codec_specific_data vb |
9357
21347f49e8d8
supprting various codec specific/private headers for different APIs (ideas by arpi/alex/fabian)
michael
parents:
9356
diff
changeset
|
141 } |
9294 | 142 |
143 video_stream_header: | |
144 stream_header | |
145 width v | |
146 height v | |
147 sample_width v | |
148 sample_height v | |
149 colorspace_type v | |
150 reserved_bytes | |
151 checksum u(32) | |
152 | |
153 audio_stream_header: | |
154 stream_header | |
12333 | 155 samplerate_nom v |
156 samplerate_denom v | |
9294 | 157 channel_count v |
158 reserved_bytes | |
159 checksum u(32) | |
9420 | 160 |
12082 | 161 |
9294 | 162 frame |
12082 | 163 frame_code f(8) |
12084
68baf8877c07
reversing the change to the forw/backw pointers, its somewhat simpler to update it if the forward pointer is first
michael
parents:
12082
diff
changeset
|
164 if(stream_id_plus1[frame_code]==0){ |
12082 | 165 stream_id v |
166 } | |
12413 | 167 if(timestamp_delta[frame_code]==0){ |
12261 | 168 coded_timestamp v |
169 } | |
12413 | 170 if(flags[frame_code]&1){ |
12082 | 171 data_size_msb v |
172 } | |
12413 | 173 for(i=0; i<reserved_v[frame_code]; i++) |
174 reserved v | |
12082 | 175 data |
176 | |
9294 | 177 Index: |
10831 | 178 index_startcode f(64) |
9294 | 179 packet header |
180 stream_id v | |
181 index_length v | |
182 for(i=0; i<index_length; i++){ | |
183 index_timestamp v | |
184 index_position v | |
185 } | |
9310 | 186 reserved_bytes |
9294 | 187 checksum u(32) |
188 | |
9310 | 189 info_packet: (optional) |
10831 | 190 info_startcode f(64) |
9294 | 191 packet header |
9323 | 192 for(;;){ |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
193 id v |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
194 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
|
195 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
|
196 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
|
197 if(type==NULL) |
12117 | 198 type vb |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
199 if(name==NULL) |
12117 | 200 name vb |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
201 if(type=="v") |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
202 value v |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
203 else |
12117 | 204 value vb |
9323 | 205 } |
9310 | 206 reserved_bytes |
9294 | 207 checksum u(32) |
9323 | 208 |
12413 | 209 sync_point |
210 frame_startcode f(64) | |
211 global_timestamp v | |
212 | |
12242 | 213 file |
214 file_id_string | |
215 while(!eof){ | |
216 main_header | |
217 for(i=0; i<stream_count; i++){ | |
218 if(next_packet==video_stream_header) | |
219 video_stream_header | |
220 else | |
221 audio_stream_header | |
222 } | |
12413 | 223 while(next_code != main_startcode){ |
224 if(next_code == info_startcode) | |
12242 | 225 info_packet |
12368 | 226 else{ |
12413 | 227 if(next_code == short_startcode) |
228 short_startcode u(24) | |
229 else if(next_code == frame_startcode) | |
230 sync_point | |
12242 | 231 frame |
12368 | 232 } |
12242 | 233 } |
234 //FIXME index | |
235 } | |
9323 | 236 |
9294 | 237 forward_ptr |
12238 | 238 size of the packet (exactly the distance from the first byte of the |
239 startcode of the current packet to the first byte of the following packet | |
12242 | 240 |
241 file_id_string | |
242 "nut/multimedia container\0" | |
9323 | 243 |
244 *_startcode | |
12162 | 245 all startcodes start with 'N' |
246 | |
247 main_startcode | |
248 0x7A561F5F04ADULL + (((uint64_t)('N'<<8) + 'M')<<48) | |
249 stream_starcode | |
250 0x11405BF2F9DBULL + (((uint64_t)('N'<<8) + 'S')<<48) | |
12333 | 251 frame_startcode |
12162 | 252 0xE4ADEECA4569ULL + (((uint64_t)('N'<<8) + 'K')<<48) |
12392 | 253 frame_startcodes SHOULD be placed immedeatly before a keyframe if the |
254 previous frame of the same stream was a non-keyframe, unless such | |
255 non-keyframe - keyframe tansitions are very frequent | |
12365
dc05db3f172f
additional start_code rule (implemenattion does this since a long time already)
michael
parents:
12333
diff
changeset
|
256 |
12162 | 257 index_startcode |
258 0xDD672F23E64EULL + (((uint64_t)('N'<<8) + 'X')<<48) | |
259 info_startcode | |
260 0xAB68B596BA78ULL + (((uint64_t)('N'<<8) + 'I')<<48) | |
9294 | 261 |
262 version | |
12238 | 263 2 for now |
264 | |
12333 | 265 max_distance |
266 max distance of frame_startcodes, the distance may only be larger if | |
267 there is only a single frame between the 2 frame_startcodes | |
268 this can be used by the demuxer to detect damaged frame headers if the | |
269 damage results in a too long chain | |
12238 | 270 SHOULD be set to <=16384 to ensure reasonable error recovery |
271 | |
12413 | 272 short_startcode |
273 MUST be 3 bytes long and MUST have 'N' as first byte, the second byte | |
274 MUST not be a printable uppercase letter / must not be within 65..90, | |
275 default is 0x4EFE79 | |
276 | |
9294 | 277 stream_id |
278 Note: streams with a lower relative class MUST have a lower relative id | |
279 so a stream with class 0 MUST allways have a id which is lower then any | |
280 stream with class > 0 | |
12150 | 281 stream_id MUST be < stream_count |
9294 | 282 |
283 stream_class | |
284 0 video | |
285 32 audio | |
286 64 subtiles | |
287 Note the remaining values are reserved and MUST NOT be used | |
12184 | 288 a demuxer MUST ignore streams with reserved classes |
9294 | 289 |
290 fourcc | |
291 identification for the codec | |
9323 | 292 example: "H264" |
10817 | 293 MUST contain 2 or 4 bytes, note, this might be increased in the future |
294 if needed | |
295 | |
9294 | 296 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
|
297 ISO 639 and ISO 3166 for language/country code |
9325 | 298 something like "usen" (US english), can be 0 |
9294 | 299 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
|
300 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
|
301 and http://www.din.de/gremien/nas/nabd/iso3166ma/codlstp1/en_listp1.html |
9294 | 302 |
9297 | 303 time_base_nom / time_base_denom = time_base |
9294 | 304 the number of timer ticks per second, this MUST be equal to the fps |
305 if the fixed_fps is 1 | |
9297 | 306 time_base_denom MUST not be 0 |
307 time_base_nom and time_base_denom MUST be relative prime | |
12254 | 308 time_base_nom MUST be < 2^31 |
9297 | 309 examples: |
310 fps time_base_nom time_base_denom | |
311 30 30 1 | |
312 29.97 30000 1001 | |
313 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
|
314 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
|
315 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
|
316 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
|
317 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
|
318 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
|
319 timestamps need fewer bits |
9294 | 320 |
12413 | 321 global_time_base_nom / global_time_base_denom = global_time_base |
322 the number of timer ticks per second | |
323 global_time_base_denom MUST not be 0 | |
324 global_time_base_nom and global_time_base_denom MUST be relative prime | |
325 global_time_base_nom MUST be < 2^31 | |
326 | |
327 global_timestamp | |
328 timestamp in global_time_base units | |
329 when a global_timestamp is encountered the last_timestamp of all streams | |
330 is set to the following: | |
331 ln= global_time_base_denom*time_base_nom | |
332 sn= global_timestamp | |
333 d1= global_time_base_nom | |
334 d2= time_base_denom | |
335 last_timestamp= (ln/d1*sn + ln%d1*sn/d1)/d2 | |
336 Note, this calculation MUST be done with unsigned 64 bit integers, and | |
337 is equivalent to (ln*sn)/(d1*d2) but this would require a 96bit integer | |
338 | |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
339 msb_timestamp_shift |
12261 | 340 amount of bits in lsb_timestamp |
9294 | 341 MUST be <16 |
342 | |
12333 | 343 decode_delay |
344 maximum time between input and output for a codec, used to generate dts | |
345 from pts | |
346 is 0 for streams without b frames, and 1 for streams with b frames, may | |
347 be larger for future codecs | |
348 | |
9294 | 349 fixed_fps |
350 1 indicates that the fps is fixed | |
351 | |
10158
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
352 index_flag |
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
353 1 indicates that this file has an index |
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
354 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
|
355 Note, all streams SHOULD have an index |
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
356 |
9357
21347f49e8d8
supprting various codec specific/private headers for different APIs (ideas by arpi/alex/fabian)
michael
parents:
9356
diff
changeset
|
357 codec_specific_data_type |
10817 | 358 0 none/end |
9361 | 359 1 native |
360 2 bitmapinfoheader | |
361 3 waveformatex | |
362 4 imagedesc | |
363 5 sounddesc | |
9357
21347f49e8d8
supprting various codec specific/private headers for different APIs (ideas by arpi/alex/fabian)
michael
parents:
9356
diff
changeset
|
364 "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
|
365 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
|
366 |
9356 | 367 codec_specific_data |
368 private global data for a codec (could be huffman tables or ...) | |
12082 | 369 |
370 frame_code | |
371 the meaning of this byte is stored in the main header | |
372 the value 78 ('N') is forbidden to ensure that the byte is always | |
373 different from the first byte of any startcode | |
9420 | 374 |
12082 | 375 flags[frame_code] |
12413 | 376 the bits of the flags from MSB to LSB are KD |
12261 | 377 if D is 1 then data_size_msb is coded, otherwise data_size_msb is 0 |
12238 | 378 K is the keyframe_type |
379 0-> no keyframe, | |
380 1-> keyframe, | |
12413 | 381 flags=4 can be used to mark illegal frame_code bytes |
382 frame_code=78 must have flags=4 | |
12333 | 383 * frames MUST not depend(1) upon frames prior to the last |
384 frame_startcode | |
12110
a34dc5a369ca
restrictions to ensure that O(log n) seeking and error recovery is possible
michael
parents:
12084
diff
changeset
|
385 depend(1) means dependancy on the container level (NUT) not dependancy |
a34dc5a369ca
restrictions to ensure that O(log n) seeking and error recovery is possible
michael
parents:
12084
diff
changeset
|
386 on the codec level |
a34dc5a369ca
restrictions to ensure that O(log n) seeking and error recovery is possible
michael
parents:
12084
diff
changeset
|
387 |
12084
68baf8877c07
reversing the change to the forw/backw pointers, its somewhat simpler to update it if the forward pointer is first
michael
parents:
12082
diff
changeset
|
388 stream_id_plus1[frame_code] |
12082 | 389 must be <250 |
12084
68baf8877c07
reversing the change to the forw/backw pointers, its somewhat simpler to update it if the forward pointer is first
michael
parents:
12082
diff
changeset
|
390 if its 0 then the stream_id is coded in the frame |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
391 |
12082 | 392 data_size_mul[frame_code] |
12379
4100528fadf1
limits too small, my CBR mp3 samples have 2x overhead after removial of size prediction
michael
parents:
12368
diff
changeset
|
393 must be <16384 |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
394 |
12082 | 395 data_size_lsb[frame_code] |
12379
4100528fadf1
limits too small, my CBR mp3 samples have 2x overhead after removial of size prediction
michael
parents:
12368
diff
changeset
|
396 must be <16384 |
12082 | 397 |
12413 | 398 timestamp_delta[frame_code] |
399 must be <16384 and >-16384 | |
400 | |
12084
68baf8877c07
reversing the change to the forw/backw pointers, its somewhat simpler to update it if the forward pointer is first
michael
parents:
12082
diff
changeset
|
401 data_size |
12261 | 402 data_size= data_size_lsb + data_size_msb*data_size_mul; |
12082 | 403 |
12261 | 404 coded_timestamp |
405 if coded_timestamp < (1<<msb_timestamp_shift) then its a | |
406 lsb timestamp, otherwise its a full timestamp + (1<<msb_timestamp_shift) | |
407 lsb timestamps are converted to full timesamps by: | |
408 mask = (1<<msb_timestamp_shift)-1; | |
409 delta= last_timestamp - mask/2 | |
410 timestamp= ((timestamp_lsb-delta)&mask) + delta | |
12333 | 411 a full timestamp must be used if there is no reference timestamp |
412 available after the last frame_startcode with the current stream_id | |
12261 | 413 |
9294 | 414 lsb_timestamp |
12082 | 415 least significant bits of the timestamp in time_base precission |
9294 | 416 Example: IBBP display order |
12084
68baf8877c07
reversing the change to the forw/backw pointers, its somewhat simpler to update it if the forward pointer is first
michael
parents:
12082
diff
changeset
|
417 keyframe timestamp=0 -> timestamp=0 |
9294 | 418 frame lsb_timestamp=3 -> timestamp=3 |
419 frame lsb_timestamp=1 -> timestamp=1 | |
420 frame lsb_timestamp=2 -> timestamp=2 | |
421 ... | |
12084
68baf8877c07
reversing the change to the forw/backw pointers, its somewhat simpler to update it if the forward pointer is first
michael
parents:
12082
diff
changeset
|
422 keyframe msb_timestamp=257 -> timestamp=257 |
12082 | 423 frame lsb_timestamp=255->timestamp=255 |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
424 frame lsb_timestamp=0 -> timestamp=256 |
9294 | 425 frame lsb_timestamp=4 -> timestamp=260 |
426 frame lsb_timestamp=2 -> timestamp=258 | |
427 frame lsb_timestamp=3 -> timestamp=259 | |
12110
a34dc5a369ca
restrictions to ensure that O(log n) seeking and error recovery is possible
michael
parents:
12084
diff
changeset
|
428 all timestamps of keyframes of a single stream MUST be monotone |
9294 | 429 |
12333 | 430 dts |
431 dts are calculated by using a decode_delay+1 sized buffer for each | |
432 stream, into which the current pts is inserted and the element with | |
433 the smallest value is removed, this is then the current dts | |
434 this buffer is initalized with decode_delay -1 elements | |
435 all frames with dts == timestamp must be monotone, that means a frame | |
436 which occures later in the stream must have a larger or equal dts | |
437 then an earlier frame | |
438 FIXME rename timestamp* to pts* ? | |
439 | |
9294 | 440 width/height |
441 MUST be set to the coded width/height | |
442 | |
443 sample_width/sample_height (aspect ratio) | |
444 sample_width is the horizontal distance between samples | |
445 sample_width and sample_height MUST be relative prime if not zero | |
446 MUST be 0 if unknown | |
447 | |
10158
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
448 colorspace_type |
10166 | 449 0 unknown |
450 1 ITU Rec 624 / ITU Rec 601 Y range: 16..235 Cb/Cr range: 16..240 | |
451 2 ITU Rec 709 Y range: 16..235 Cb/Cr range: 16..240 | |
452 17 ITU Rec 624 / ITU Rec 601 Y range: 0..255 Cb/Cr range: 0..255 | |
453 18 ITU Rec 709 Y range: 0..255 Cb/Cr range: 0..255 | |
454 | |
12333 | 455 samplerate_nom / samplerate_denom = samplerate |
456 the number of samples per second | |
9294 | 457 |
458 checksum | |
12118
b8fea9441d02
switching from crc32 to adler32 checksums, cuz they are faster and simpler
michael
parents:
12117
diff
changeset
|
459 adler32 checksum |
9294 | 460 |
461 index_timestamp | |
462 value in time_base precission, relative to the last index_timestamp | |
463 | |
464 index_position | |
465 position in bytes of the first byte of the keyframe header, relative | |
466 to the last index_position | |
467 | |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
468 id |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
469 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
|
470 0 means end |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
471 |
9323 | 472 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
|
473 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
|
474 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
|
475 Note: MUST be less than 6 byte long (might be increased to 64 later) |
9323 | 476 |
9295 | 477 name |
478 the name of the info entry, valid names are | |
10873 | 479 "TotalTime" total length of the stream in msecs |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
480 "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
|
481 "StartTimestamp" |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
482 "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
|
483 "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
|
484 "Author" |
97888c25ae60
changing name to "nut" for now, we can change it again if we agree on something else
michael
parents:
9335
diff
changeset
|
485 "Description" |
97888c25ae60
changing name to "nut" for now, we can change it again if we agree on something else
michael
parents:
9335
diff
changeset
|
486 "Copyright" |
9369 | 487 "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
|
488 "Title" |
9373 | 489 "Cover" an image of the (cd,dvd,vhs,..) cover (preferable PNG or JPEG) |
9350 | 490 "Source" "DVD", "VCD", "CD", "MD", "FM radio", "VHS", "TV", |
491 "LD" | |
9373 | 492 Optional: appended PAL,NTSC,SECAM, ... in parentheses |
9350 | 493 "CaptureDevice" "BT878", "BT848", "webcam", ... (more exact names are fine too) |
494 "CreationTime" "2003-01-20 20:13:15Z", ... | |
495 (ISO 8601 format, see http://www.cl.cam.ac.uk/~mgk25/iso-time.html) | |
496 Note: dont forget the timezone | |
11975 | 497 "ReplayGain" |
9360
add934b25d6d
"X-" prefix for nonstd fields & "keywords" idea by (Andreas Hess <jaska at gmx dot net>)
michael
parents:
9357
diff
changeset
|
498 "Keywords" |
9295 | 499 Note: if someone needs some others, please tell us about them, so we can |
500 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
|
501 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
|
502 Note: MUST be less than 64 bytes long |
9295 | 503 |
504 value | |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
505 value of this name/type pair |
9295 | 506 |
9310 | 507 stuffing |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
508 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
|
509 purposes |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
510 |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
511 info_table[][2]={ |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
512 {NULL , NULL }, // end |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
513 {NULL , NULL }, |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
514 {NULL , "UTF8"}, |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
515 {NULL , "v"}, |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
516 {NULL , "s"}, |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
517 {"StreamId" , "v"}, |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
518 {"SegmentId" , "v"}, |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
519 {"StartTimestamp" , "v"}, |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
520 {"EndTimestamp" , "v"}, |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
521 {"Author" , "UTF8"}, |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
522 {"Titel" , "UTF8"}, |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
523 {"Description" , "UTF8"}, |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
524 {"Copyright" , "UTF8"}, |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
525 {"Encoder" , "UTF8"}, |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
526 {"Keyword" , "UTF8"}, |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
527 {"Cover" , "JPEG"}, |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
528 {"Cover" , "PNG"}, |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
529 }; |
9294 | 530 |
531 Structure: | |
532 | |
533 the headers MUST be in exactly the following order (to simplify demuxer design) | |
534 main header | |
535 stream_header (id=0) | |
536 stream_header (id=1) | |
537 ... | |
538 stream_header (id=n) | |
539 | |
540 headers may be repated, but if they are then they MUST all be repeated together | |
541 and repeated headers MUST be identical | |
542 | |
543 headers MUST be repeated every 10sec at least ? FIXME | |
10817 | 544 headers MUST be repeated BEFORE keyframes |
9310 | 545 headers MUST be repeated at least twice (so they exist 3 times in a file) |
9295 | 546 |
9310 | 547 Index |
9580 | 548 the index can be repeated but there SHOULD be at least one for each stream at |
549 the end | |
9311
4b04416ada91
zero_bit for normal frames, so we can distinguish them from other packets
michael
parents:
9310
diff
changeset
|
550 Note: in case of realtime streaming there is no end, so no index there either |
9310 | 551 |
552 Info packets | |
553 the info_packet can be repeated, it can also contain different names & values | |
554 each time but only if allso the time is different | |
555 Info packets can be used to describe the file or some part of it (chapters) | |
556 | |
557 info packets, SHOULD be placed at the begin of the file at least | |
558 for realtime streaming info packets will normally be transmitted when they apply | |
559 for example, the current song title & artist of the currently shown music video | |
560 | |
561 Unknown packets | |
12184 | 562 MUST be ignored by the demuxer |
9310 | 563 |
9294 | 564 Sample code (GPL, & untested) |
565 | |
566 typedef BufferContext{ | |
567 uint8_t *buf; | |
568 uint8_t *buf_ptr; | |
569 }BufferContext; | |
570 | |
571 static inline uint64_t get_bytes(BufferContext *bc, int count){ | |
572 uint64_t val=0; | |
573 | |
574 assert(count>0 && count<9) | |
575 | |
576 for(i=0; i<count; i++){ | |
577 val <<=8; | |
578 val += *(bc->buf_ptr++); | |
579 } | |
580 | |
581 return val; | |
582 } | |
583 | |
584 static inline void put_bytes(BufferContext *bc, int count, uint64_t val){ | |
585 uint64_t val=0; | |
586 | |
587 assert(count>0 && count<9) | |
588 | |
589 for(i=count-1; i>=0; i--){ | |
590 *(bc->buf_ptr++)= val >> (8*i); | |
591 } | |
592 | |
593 return val; | |
594 } | |
595 | |
10061 | 596 static inline uint64_t get_v(BufferContext *bc){ |
9294 | 597 uint64_t val= 0; |
598 | |
10158
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
599 for(; space_left(bc) > 0; ){ |
9294 | 600 int tmp= *(bc->buf_ptr++); |
601 if(tmp&0x80) | |
602 val= (val<<7) + tmp - 0x80; | |
603 else | |
9299 | 604 return (val<<7) + tmp; |
9294 | 605 } |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
606 |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
607 return -1; |
9294 | 608 } |
609 | |
10061 | 610 static inline int put_v(BufferContext *bc, uint64_t val){ |
9294 | 611 int i; |
612 | |
10158
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
613 if(space_left(bc) < 9) return -1; |
9294 | 614 |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
615 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
|
616 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
|
617 if(val>>i == 0) break; |
9294 | 618 } |
619 | |
10827 | 620 for(i-=7; i>0; i-=7){ |
9294 | 621 *(bc->buf_ptr++)= 0x80 | (val>>i); |
622 } | |
623 *(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
|
624 |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
625 return 0; |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
626 } |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
627 |
12333 | 628 static int64_t get_dts(int64_t pts, int64_t *pts_cache, int delay, int reset){ |
629 if(reset) memset(pts_cache, -1, delay*sizeof(int64_t)); | |
630 | |
631 while(delay--){ | |
632 int64_t t= pts_cache[delay]; | |
633 if(t < pts){ | |
634 pts_cache[delay]= pts; | |
635 pts= t; | |
636 } | |
637 } | |
638 | |
639 return pts; | |
640 } | |
641 | |
10158
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
642 Authors |
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
643 |
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
644 Folks from MPlayer Developers Mailinglist (http://www.mplayehrq.hu/). |
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
645 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
|
646 Beregszaszi, Alex (alex@fsn.hu) |
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
647 Bunkus, Moritz (moritz@bunkus.org) |
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
648 Diedrich, Tobias (td@sim.uni-hannover.de) |
12297 | 649 Felker, Rich (dalias@aerifal.cx) |
10158
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
650 Franz, Fabian (FabianFranz@gmx.de) |
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
651 Gereoffy, Arpad (arpi@thot.banki.hu) |
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
652 Hess, Andreas (jaska@gmx.net) |
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
653 Niedermayer, Michael (michaelni@gmx.at) |