Mercurial > mplayer.hg
annotate DOCS/tech/nut.txt @ 22174:a25747a97680
clarify description of reserved_count in frame header patch by (Clemens Ladisch cladisch,fastmail,net)
author | michael |
---|---|
date | Sat, 10 Feb 2007 17:00:03 +0000 |
parents | 456d6d9dddce |
children | cc89992b27a3 |
rev | line source |
---|---|
19056
36f993b7f91d
freeze (this is pretty much oded shimons patch from a few month ago)
michael
parents:
18899
diff
changeset
|
1 ================================== |
20922 | 2 NUT Open Container Format 20061104 |
19056
36f993b7f91d
freeze (this is pretty much oded shimons patch from a few month ago)
michael
parents:
18899
diff
changeset
|
3 ================================== |
9294 | 4 |
5 | |
6 | |
16842
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
7 Intro: |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
8 ====== |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
9 |
21165 | 10 NUT is a Free multimedia container format for storage of audio, video, |
20649 | 11 subtitles and related user defined streams, it provides exact timestamps for |
12 synchronization and seeking, is simple, has low overhead and can recover | |
13 in case of errors in the stream | |
14 | |
15 other common multimedia container formats are AVI, OGG, Matroska, MP4, MOV | |
16 ASF, MPEG-PS, MPEG-TS | |
17 | |
18 | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
19 Features / goals: |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
20 (supported by the format, not necessarily by a specific implementation) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
21 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
22 Simple |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
23 use the same encoding for nearly all fields |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
24 simple decoding, so slow CPUs (and embedded systems) can handle it |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
25 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
26 Extendible |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
27 no limit for the possible values of all fields (using universal vlc) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
28 allow adding of new headers in the future |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
29 allow adding more fields at the end of headers |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
30 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
31 Compact |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
32 ~0.2% overhead, for normal bitrates |
17438 | 33 index is <100kb per hour |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
34 a usual header for a file is about 100 bytes (audio + video headers together) |
17326 | 35 a packet header is about ~1-5 bytes |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
36 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
37 Error resistant |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
38 seeking / playback without an index |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
39 headers & index can be repeated |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
40 damaged files can be played back with minimal data loss and fast |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
41 resync times |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
42 |
19056
36f993b7f91d
freeze (this is pretty much oded shimons patch from a few month ago)
michael
parents:
18899
diff
changeset
|
43 The spec is frozen. All files following spec will be compatible unless the |
36f993b7f91d
freeze (this is pretty much oded shimons patch from a few month ago)
michael
parents:
18899
diff
changeset
|
44 spec is unfrozen. |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
45 |
16842
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
46 |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
47 Definitions: |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
48 ============ |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
49 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
50 MUST the specific part must be done to conform to this standard |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
51 SHOULD it is recommended to be done that way, but not strictly required |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
52 |
20622 | 53 keyframe |
20772 | 54 A keyframe is a frame from which you can start decoding, a more |
55 exact definition is below | |
20631 | 56 The nth frame is a keyframe if and only if frames n, n+1, ... in |
57 presentation order (that are all frames with a pts >= frame[n].pts) can | |
21165 | 58 be decoded successfully without reference to frames prior n in storage |
20631 | 59 order (that are all frames with a dts < frame[n].dts) |
60 if no such frames exist (for example due to use of overlapped transforms | |
61 like the MDCT in an audio codec) then the definition shall be extended | |
21165 | 62 by dropping n out of the set of frames which must be decodable, if this |
63 is still insufficient then n+1 shall be dropped, and so on until there is | |
20631 | 64 a keyframe |
20633
44ea011155d1
attempt to fix the unbound future frame issue with keyframes on the muxer side
michael
parents:
20631
diff
changeset
|
65 every frame which is marked as a keyframe MUST be a keyframe according to |
21165 | 66 the definition above, a muxer MUST mark every frame it knows is a keyframe |
20633
44ea011155d1
attempt to fix the unbound future frame issue with keyframes on the muxer side
michael
parents:
20631
diff
changeset
|
67 as such, a muxer SHOULD NOT analyze future frames to determine the |
44ea011155d1
attempt to fix the unbound future frame issue with keyframes on the muxer side
michael
parents:
20631
diff
changeset
|
68 keyframe status of the current frame but instead just set the frame as |
44ea011155d1
attempt to fix the unbound future frame issue with keyframes on the muxer side
michael
parents:
20631
diff
changeset
|
69 non keyframe |
20622 | 70 (FIXME maybe move somewhere else?) |
20870 | 71 pts |
72 presentation time of the first frame/sample that is completed by decoding | |
73 the coded frame. | |
74 dts | |
20964 | 75 of a frame is the time when it is input into a synchronous 1-in-1-out |
76 decoder | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
77 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
78 |
16842
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
79 Syntax: |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
80 ======= |
9294 | 81 |
16428 | 82 Since NUT heavily uses variable length fields, the simplest way to describe it |
14854
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
83 is using a pseudocode approach. |
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
84 |
16842
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
85 |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
86 |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
87 Conventions: |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
88 ============ |
14854
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
89 |
15008
0a43341c8bfd
less amateurish-looking mpcf.txt patch by (Jeff >snacky ikaruga co uk<)
michael
parents:
14919
diff
changeset
|
90 The data types have a name, used in the bitstream syntax description, a short |
14854
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
91 text description and a pseudocode (functional) definition, optional notes may |
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
92 follow: |
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
93 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
94 name (text description) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
95 functional definition |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
96 [Optional notes] |
14854
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
97 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
98 The bitstream syntax elements have a tagname and a functional definition, they |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
99 are presented in a bottom up approach, again optional notes may follow and |
15008
0a43341c8bfd
less amateurish-looking mpcf.txt patch by (Jeff >snacky ikaruga co uk<)
michael
parents:
14919
diff
changeset
|
100 are reproduced in the tag description: |
14854
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
101 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
102 name: (optional note) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
103 functional definition |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
104 [Optional notes] |
14854
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
105 |
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
106 The in-depth tag description follows the bitstream syntax. |
16428 | 107 The functional definition has a C-like syntax. |
14854
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
108 |
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
109 |
12209 | 110 |
16842
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
111 Type definitions: |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
112 ================= |
12209 | 113 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
114 f(n) (n fixed bits in big-endian order) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
115 u(n) (unsigned number encoded in n bits in MSB-first order) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
116 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
117 v (variable length value, unsigned) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
118 value=0 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
119 do{ |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
120 more_data u(1) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
121 data u(7) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
122 value= 128*value + data |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
123 }while(more_data) |
14854
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
124 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
125 s (variable length value, signed) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
126 temp v |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
127 temp++ |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
128 if(temp&1) value= -(temp>>1) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
129 else value= (temp>>1) |
9323 | 130 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
131 b (binary data or string, to be use in vb, see below) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
132 for(i=0; i<length; i++){ |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
133 data[i] u(8) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
134 } |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
135 [Note: strings MUST be encoded in UTF-8] |
17835 | 136 [Note: the character NUL (U+0000) is not legal within |
137 or at the end of a string.] | |
9295 | 138 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
139 vb (variable length binary data or string) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
140 length v |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
141 value b |
12117 | 142 |
17796
6edc4492b777
universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents:
17795
diff
changeset
|
143 t (v coded universal timestamp) |
6edc4492b777
universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents:
17795
diff
changeset
|
144 tmp v |
17872 | 145 id= tmp % time_base_count |
146 value= (tmp / time_base_count) * time_base[id] | |
9295 | 147 |
14854
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
148 |
16842
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
149 Bitstream syntax: |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
150 ================= |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
151 |
20618
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
152 file: |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
153 file_id_string |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
154 while(!eof){ |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
155 if(next_byte == 'N'){ |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
156 packet_header |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
157 switch(startcode){ |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
158 case main_startcode: main_header; break; |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
159 case stream_startcode:stream_header; break; |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
160 case info_startcode: info_packet; break; |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
161 case index_startcode: index; break; |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
162 case syncpoint_startcode: syncpoint; break; |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
163 } |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
164 packet_footer |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
165 }else |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
166 frame |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
167 } |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
168 |
21165 | 169 the structure of an undamaged file should look like the following, but |
20618
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
170 demuxers should be flexible and be able to deal with damaged headers so the |
21165 | 171 above is a better loop in practice (not to mention it is simpler) |
20618
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
172 note, demuxers MUST be able to deal with new and unknown headers |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
173 |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
174 file: |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
175 file_id_string |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
176 while(!eof){ |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
177 packet_header, main_header, packet_footer |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
178 reserved_headers |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
179 for(i=0; i<stream_count; i++){ |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
180 packet_header, stream_header, packet_footer |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
181 reserved_headers |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
182 } |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
183 while(next_code == info_startcode){ |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
184 packet_header, info_packet, packet_footer |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
185 reserved_headers |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
186 } |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
187 if(next_code == index_startcode){ |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
188 packet_header, index_packet, packet_footer |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
189 } |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
190 if (!eof) while(next_code != main_startcode){ |
20922 | 191 if(next_code == syncpoint_startcode){ |
192 packet_header, syncpoint, packet_footer | |
193 } | |
194 frame | |
20910
824cb042e035
allow info packets to appear in mid-stream, outside of main headers.
ods15
parents:
20870
diff
changeset
|
195 reserved_headers |
20618
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
196 } |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
197 } |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
198 |
4f0d58f5b10d
move file up so its found first, this probably improves readability
michael
parents:
20468
diff
changeset
|
199 |
16842
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
200 Common elements: |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
201 ---------------- |
14854
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
202 |
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
203 reserved_bytes: |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
204 for(i=0; i<forward_ptr - length_of_non_reserved; i++) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
205 reserved u(8) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
206 [a demuxer MUST ignore any reserved bytes |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
207 a muxer MUST NOT write any reserved bytes, as this would make it |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
208 impossible to add new fields at the end of packets in the future |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
209 in a compatible way] |
14854
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
210 |
17845 | 211 packet_header |
212 startcode f(64) | |
213 forward_ptr v | |
214 if(forward_ptr > 4096) | |
215 header_checksum u(32) | |
216 | |
217 packet_footer | |
218 checksum u(32) | |
219 | |
220 reserved_headers | |
221 while(next_byte == 'N' && next_code != main_startcode | |
222 && next_code != stream_startcode | |
223 && next_code != info_startcode | |
224 && next_code != index_startcode | |
225 && next_code != syncpoint_startcode){ | |
226 packet_header | |
21389
deac3aacf67e
move reserved_bytes out of packet_footer. this makes all packets uniform.
ivo
parents:
21278
diff
changeset
|
227 reserved_bytes |
17845 | 228 packet_footer |
229 } | |
230 | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
231 Headers: |
10824 | 232 |
20619 | 233 main_header: |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
234 version v |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
235 stream_count v |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
236 max_distance v |
17872 | 237 time_base_count v |
238 for(i=0; i<time_base_count; i++) | |
21278
32dbc205ba34
rename all *_nom (nominator) to the correct *_num (numerator)
ivo
parents:
21195
diff
changeset
|
239 time_base_num v |
17872 | 240 time_base_denom v |
21278
32dbc205ba34
rename all *_nom (nominator) to the correct *_num (numerator)
ivo
parents:
21195
diff
changeset
|
241 time_base[i]= time_base_num/time_base_denom |
17437 | 242 tmp_pts=0 |
243 tmp_mul=1 | |
244 tmp_stream=0 | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
245 for(i=0; i<256; ){ |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
246 tmp_flag v |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
247 tmp_fields v |
17719
6f1bc4789a5d
update tmp_field numbers (pretty much just cosmetic)
michael
parents:
17718
diff
changeset
|
248 if(tmp_fields>0) tmp_pts s |
6f1bc4789a5d
update tmp_field numbers (pretty much just cosmetic)
michael
parents:
17718
diff
changeset
|
249 if(tmp_fields>1) tmp_mul v |
6f1bc4789a5d
update tmp_field numbers (pretty much just cosmetic)
michael
parents:
17718
diff
changeset
|
250 if(tmp_fields>2) tmp_stream v |
6f1bc4789a5d
update tmp_field numbers (pretty much just cosmetic)
michael
parents:
17718
diff
changeset
|
251 if(tmp_fields>3) tmp_size v |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
252 else tmp_size=0 |
17719
6f1bc4789a5d
update tmp_field numbers (pretty much just cosmetic)
michael
parents:
17718
diff
changeset
|
253 if(tmp_fields>4) tmp_res v |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
254 else tmp_res=0 |
17719
6f1bc4789a5d
update tmp_field numbers (pretty much just cosmetic)
michael
parents:
17718
diff
changeset
|
255 if(tmp_fields>5) count v |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
256 else count= tmp_mul - tmp_size |
17719
6f1bc4789a5d
update tmp_field numbers (pretty much just cosmetic)
michael
parents:
17718
diff
changeset
|
257 for(j=6; j<tmp_fields; j++){ |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
258 tmp_reserved[i] v |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
259 } |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
260 for(j=0; j<count && i<256; j++, i++){ |
17612 | 261 if (i == 'N') { |
17718 | 262 flags[i]= FLAG_INVALID; |
17612 | 263 j--; |
264 continue; | |
265 } | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
266 flags[i]= tmp_flag; |
17887 | 267 stream_id[i]= tmp_stream; |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
268 data_size_mul[i]= tmp_mul; |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
269 data_size_lsb[i]= tmp_size + j; |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
270 pts_delta[i]= tmp_pts; |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
271 reserved_count[i]= tmp_res; |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
272 } |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
273 } |
21389
deac3aacf67e
move reserved_bytes out of packet_footer. this makes all packets uniform.
ivo
parents:
21278
diff
changeset
|
274 reserved_bytes |
9294 | 275 |
276 stream_header: | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
277 stream_id v |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
278 stream_class v |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
279 fourcc vb |
17872 | 280 time_base_id v |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
281 msb_pts_shift v |
17577 | 282 max_pts_distance v |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
283 decode_delay v |
17939 | 284 stream_flags v |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
285 codec_specific_data vb |
17640 | 286 if(stream_class == video){ |
287 width v | |
288 height v | |
289 sample_width v | |
290 sample_height v | |
291 colorspace_type v | |
292 }else if(stream_class == audio){ | |
21278
32dbc205ba34
rename all *_nom (nominator) to the correct *_num (numerator)
ivo
parents:
21195
diff
changeset
|
293 samplerate_num v |
17640 | 294 samplerate_denom v |
295 channel_count v | |
296 } | |
21389
deac3aacf67e
move reserved_bytes out of packet_footer. this makes all packets uniform.
ivo
parents:
21278
diff
changeset
|
297 reserved_bytes |
16429 | 298 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
299 Basic Packets: |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
300 |
14854
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
301 frame: |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
302 frame_code f(8) |
17718 | 303 frame_flags= flags[frame_code] |
22174
a25747a97680
clarify description of reserved_count in frame header patch by (Clemens Ladisch cladisch,fastmail,net)
michael
parents:
22051
diff
changeset
|
304 frame_res= reserved_count[frame_code] |
17718 | 305 if(frame_flags&FLAG_CODED){ |
306 coded_flags v | |
307 frame_flags ^= coded_flags | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
308 } |
17887 | 309 if(frame_flags&FLAG_STREAM_ID){ |
310 stream_id v | |
311 } | |
312 if(frame_flags&FLAG_CODED_PTS){ | |
313 coded_pts v | |
314 } | |
17718 | 315 if(frame_flags&FLAG_SIZE_MSB){ |
316 data_size_msb v | |
17437 | 317 } |
17887 | 318 if(frame_flags&FLAG_RESERVED) |
22174
a25747a97680
clarify description of reserved_count in frame header patch by (Clemens Ladisch cladisch,fastmail,net)
michael
parents:
22051
diff
changeset
|
319 frame_res v |
a25747a97680
clarify description of reserved_count in frame header patch by (Clemens Ladisch cladisch,fastmail,net)
michael
parents:
22051
diff
changeset
|
320 for(i=0; i<frame_res; i++) |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
321 reserved v |
17723 | 322 if(frame_flags&FLAG_CHECKSUM){ |
17711 | 323 checksum u(32) |
17584 | 324 } |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
325 data |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
326 |
14854
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
327 index: |
17796
6edc4492b777
universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents:
17795
diff
changeset
|
328 max_pts t |
17438 | 329 syncpoints v |
17720 | 330 for(i=0; i<syncpoints; i++){ |
17800 | 331 syncpoint_pos_div16 v |
17438 | 332 } |
333 for(i=0; i<stream_count; i++){ | |
17615
363d23eb55d3
fix index, first keyframe cannot be written with pts=0
ods15
parents:
17612
diff
changeset
|
334 last_pts= -1 |
17720 | 335 for(j=0; j<syncpoints; ){ |
17438 | 336 x v |
337 type= x & 1 | |
338 x>>=1 | |
17455 | 339 n=j |
17438 | 340 if(type){ |
341 flag= x & 1 | |
342 x>>=1 | |
343 while(x--) | |
17455 | 344 has_keyframe[n++][i]=flag |
345 has_keyframe[n++][i]=!flag; | |
17438 | 346 }else{ |
347 while(x != 1){ | |
17455 | 348 has_keyframe[n++][i]=x&1; |
17438 | 349 x>>=1; |
350 } | |
351 } | |
17455 | 352 for(; j<n && j<syncpoints; j++){ |
353 if (!has_keyframe[j][i]) continue | |
354 A v | |
17531 | 355 if(!A){ |
356 A v | |
357 B v | |
358 eor_pts[j][i] = last_pts + A + B | |
359 }else | |
360 B=0 | |
361 keyframe_pts[j][i] = last_pts + A | |
362 last_pts += A + B | |
17455 | 363 } |
17438 | 364 } |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
365 } |
17873 | 366 reserved_bytes |
17726 | 367 index_ptr u(64) |
9294 | 368 |
17711 | 369 info_packet: |
17669 | 370 stream_id_plus1 v |
20658 | 371 chapter_id s (Note due to a typo this was v |
372 until 2006-11-04) | |
17796
6edc4492b777
universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents:
17795
diff
changeset
|
373 chapter_start t |
17708 | 374 chapter_len v |
17669 | 375 count v |
376 for(i=0; i<count; i++){ | |
377 name vb | |
378 value s | |
379 if (value==-1){ | |
380 type= "UTF-8" | |
381 value vb | |
382 }else if (value==-2){ | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
383 type vb |
17669 | 384 value vb |
385 }else if (value==-3){ | |
17685 | 386 type= "s" |
17326 | 387 value s |
17796
6edc4492b777
universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents:
17795
diff
changeset
|
388 }else if (value==-4){ |
6edc4492b777
universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents:
17795
diff
changeset
|
389 type= "t" |
6edc4492b777
universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents:
17795
diff
changeset
|
390 value t |
6edc4492b777
universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents:
17795
diff
changeset
|
391 }else if (value<-4){ |
17685 | 392 type= "r" |
17796
6edc4492b777
universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents:
17795
diff
changeset
|
393 value.den= -value-4 |
17669 | 394 value.num s |
395 }else{ | |
17685 | 396 type= "v" |
17669 | 397 } |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
398 } |
21389
deac3aacf67e
move reserved_bytes out of packet_footer. this makes all packets uniform.
ivo
parents:
21278
diff
changeset
|
399 reserved_bytes |
16506 | 400 |
17326 | 401 syncpoint: |
17796
6edc4492b777
universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents:
17795
diff
changeset
|
402 global_key_pts t |
17800 | 403 back_ptr_div16 v |
21389
deac3aacf67e
move reserved_bytes out of packet_footer. this makes all packets uniform.
ivo
parents:
21278
diff
changeset
|
404 reserved_bytes |
12413 | 405 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
406 Complete definition: |
14854
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
407 |
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
408 |
16842
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
409 Tag description: |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
410 ---------------- |
14854
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
411 |
12242 | 412 file_id_string |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
413 "nut/multimedia container\0" |
21165 | 414 the very first thing in every nut file, useful for identifying nut |
20822 | 415 files |
9323 | 416 |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
417 *_startcode (f(64)) |
20468 | 418 all startcodes start with 'N' |
12162 | 419 |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
420 main_startcode (f(64)) |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
421 0x7A561F5F04ADULL + (((uint64_t)('N'<<8) + 'M')<<48) |
14854
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
422 |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
423 stream_startcode (f(64)) |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
424 0x11405BF2F9DBULL + (((uint64_t)('N'<<8) + 'S')<<48) |
14854
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
425 |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
426 syncpoint_startcode (f(64)) |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
427 0xE4ADEECA4569ULL + (((uint64_t)('N'<<8) + 'K')<<48) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
428 |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
429 index_startcode (f(64)) |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
430 0xDD672F23E64EULL + (((uint64_t)('N'<<8) + 'X')<<48) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
431 |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
432 info_startcode (f(64)) |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
433 0xAB68B596BA78ULL + (((uint64_t)('N'<<8) + 'I')<<48) |
9294 | 434 |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
435 version (v) |
19056
36f993b7f91d
freeze (this is pretty much oded shimons patch from a few month ago)
michael
parents:
18899
diff
changeset
|
436 NUT version. The current value is 3. All lower values are pre-freeze |
12238 | 437 |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
438 stream_count (v) |
20822 | 439 number of streams in this file |
440 | |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
441 time_base_count (v) |
20823 | 442 number of different time bases in this file |
443 this MUST NOT be 0 | |
444 | |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
445 forward_ptr (v) |
17439
f6e39517d5b6
cosmetic change, shift stuff around to more logical places
ods15
parents:
17438
diff
changeset
|
446 size of the packet data (exactly the distance from the first byte |
17808
278206dd6fbd
clarify, header_checksum is not included in forward_ptr and in packet checksum
ods15
parents:
17801
diff
changeset
|
447 after the packet_header to the first byte of the next packet) |
21165 | 448 every nut packet contains a forward_ptr immediately after its startcode |
20822 | 449 with the exception of frame_code based packets, the forward pointer |
450 can be used to skip over the packet without decoding its contents | |
17439
f6e39517d5b6
cosmetic change, shift stuff around to more logical places
ods15
parents:
17438
diff
changeset
|
451 |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
452 max_distance (v) |
17944 | 453 max distance between startcodes. If p1 and p2 are the byte |
454 positions of the first byte of two consecutive startcodes, then | |
455 p2-p1 MUST be less than or equal to max_distance unless the entire | |
456 span from p1 to p2 comprises a single packet or a syncpoint | |
457 followed by a single frame. This imposition places efficient upper | |
458 bounds on seek operations and allows for the detection of damaged | |
459 frame headers, should a chain of frame headers pass max_distance | |
460 without encountering any startcode. | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
461 |
17439
f6e39517d5b6
cosmetic change, shift stuff around to more logical places
ods15
parents:
17438
diff
changeset
|
462 syncpoints SHOULD be placed immediately before a keyframe if the |
f6e39517d5b6
cosmetic change, shift stuff around to more logical places
ods15
parents:
17438
diff
changeset
|
463 previous frame of the same stream was a non-keyframe, unless such |
f6e39517d5b6
cosmetic change, shift stuff around to more logical places
ods15
parents:
17438
diff
changeset
|
464 non-keyframe - keyframe transitions are very frequent |
f6e39517d5b6
cosmetic change, shift stuff around to more logical places
ods15
parents:
17438
diff
changeset
|
465 |
17722 | 466 SHOULD be set to <=32768 |
17823
7f81c9ffa0b4
change max_distance back to 64kb and set max frame size to 2*max_distance.
ods15
parents:
17811
diff
changeset
|
467 if the stored value is >65536 then max_distance MUST be set to 65536 |
12501 | 468 |
17823
7f81c9ffa0b4
change max_distance back to 64kb and set max frame size to 2*max_distance.
ods15
parents:
17811
diff
changeset
|
469 This is also half the max frame size without a checksum after the |
7f81c9ffa0b4
change max_distance back to 64kb and set max frame size to 2*max_distance.
ods15
parents:
17811
diff
changeset
|
470 frameheader. |
17799 | 471 |
472 | |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
473 max_pts_distance (v) |
21165 | 474 max absolute difference of pts of new frame from last_pts in the |
17944 | 475 timebase of the stream, without a checksum after the frameheader. |
476 A frame header MUST include a checksum if abs(pts-last_pts) is | |
477 strictly greater than max_pts_distance. | |
17711 | 478 Note that last_pts is not necessarily the pts of the last frame |
17577 | 479 on the same stream, as it is altered by syncpoint timestamps. |
17801 | 480 SHOULD NOT be higher than 1/timebase |
17577 | 481 |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
482 stream_id (v) |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
483 Stream identifier |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
484 stream_id MUST be < stream_count |
9294 | 485 |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
486 stream_class (v) |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
487 0 video |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
488 1 audio |
21165 | 489 2 subtitles |
17793 | 490 3 userdata |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
491 Note: the remaining values are reserved and MUST NOT be used |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
492 a demuxer MUST ignore streams with reserved classes |
9294 | 493 |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
494 fourcc (vb) |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
495 identification for the codec |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
496 example: "H264" |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
497 MUST contain 2 or 4 bytes, note, this might be increased in the future |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
498 if needed |
18899 | 499 the id values used are the same as in avi, so if a codec uses a specific |
500 fourcc in avi then the same fourcc MUST be used here | |
9294 | 501 |
21278
32dbc205ba34
rename all *_nom (nominator) to the correct *_num (numerator)
ivo
parents:
21195
diff
changeset
|
502 time_base_num (v) / time_base_denom (v) = time_base |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
503 the length of a timer tick in seconds, this MUST be equal to the 1/fps |
17939 | 504 if FLAG_FIXED_FPS is set |
21278
32dbc205ba34
rename all *_nom (nominator) to the correct *_num (numerator)
ivo
parents:
21195
diff
changeset
|
505 time_base_num and time_base_denom MUST NOT be 0 |
32dbc205ba34
rename all *_nom (nominator) to the correct *_num (numerator)
ivo
parents:
21195
diff
changeset
|
506 time_base_num and time_base_denom MUST be relatively prime |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
507 time_base_denom MUST be < 2^31 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
508 examples: |
21278
32dbc205ba34
rename all *_nom (nominator) to the correct *_num (numerator)
ivo
parents:
21195
diff
changeset
|
509 fps time_base_num time_base_denom |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
510 30 1 30 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
511 29.97 1001 30000 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
512 23.976 1001 24000 |
17883 | 513 There MUST NOT be 2 identical timebases in a file. |
514 There SHOULD NOT be more timebases than streams. | |
9294 | 515 |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
516 time_base_id (v) |
20829 | 517 index into the time_base table |
20836 | 518 MUST be < time_base_count |
17872 | 519 |
17328 | 520 convert_ts |
521 To switch from 2 different timebases, the following calculation is | |
522 defined: | |
12413 | 523 |
21278
32dbc205ba34
rename all *_nom (nominator) to the correct *_num (numerator)
ivo
parents:
21195
diff
changeset
|
524 ln = from_time_base_num*to_time_base_denom |
17328 | 525 sn = from_timestamp |
526 d1 = from_time_base_denom | |
21278
32dbc205ba34
rename all *_nom (nominator) to the correct *_num (numerator)
ivo
parents:
21195
diff
changeset
|
527 d2 = to_time_base_num |
17328 | 528 timestamp = (ln/d1*sn + ln%d1*sn/d1)/d2 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
529 Note: this calculation MUST be done with unsigned 64 bit integers, and |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
530 is equivalent to (ln*sn)/(d1*d2) but this would require a 96bit integer |
12413 | 531 |
17532 | 532 compare_ts |
533 Compares timestamps from 2 different timebases, | |
534 if a is before b then compare_ts(a, b) = -1 | |
535 if a is after b then compare_ts(a, b) = 1 | |
536 else compare_ts(a, b) = 0 | |
537 | |
538 Care must be taken that this is done exactly with no rounding errors, | |
539 simply casting to float or double and doing the obvious | |
540 a*timebase > b*timebase is not compliant or correct, neither is the | |
541 same with integers, and | |
542 a*a_timebase.num*b_timebase.den > b*b_timebase.num*a_timebase.den | |
543 will overflow. One possible implementation which shouldn't overflow | |
544 within the range of legal timestamps and timebases is: | |
545 | |
546 if (convert_ts(a, a_timebase, b_timebase) < b) return -1; | |
547 if (convert_ts(b, b_timebase, a_timebase) < a) return 1; | |
548 return 0; | |
549 | |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
550 msb_pts_shift (v) |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
551 amount of bits in lsb_pts |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
552 MUST be <16 |
9294 | 553 |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
554 decode_delay (v) |
20870 | 555 size of the reordering buffer used to convert pts to dts |
21165 | 556 codecs which don't support b frames normally use 0 |
20870 | 557 mpeg1/mpeg2 style codecs with b frames use 1 |
558 h264 style b pyramid uses 2 | |
559 h264 and future codecs might need values >2 | |
21165 | 560 audio codecs generally use 0 (we aren't aware of any which doesn't |
20870 | 561 but its theoretically possible that one exists which needs it >0) |
17639
56ec8716e25b
some cleanup. enforce decode_delay to not be too high.
ods15
parents:
17615
diff
changeset
|
562 decode_delay MUST NOT be set higher than necessary for a codec. |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
563 |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
564 stream_flags (v) |
17939 | 565 Bit Name Description |
566 1 FLAG_FIXED_FPS indicates that the fps is fixed | |
9294 | 567 |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
568 codec_specific_data (vb) |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
569 private global data for a codec (could be huffman tables or ...) |
19105 | 570 if a codec has a global header it SHOULD be placed in here instead of |
571 at the start of every keyframe | |
572 the exact format is specified in the codec spec | |
21165 | 573 for H.264 the NAL units MUST be formatted as in a bytestream |
19121 | 574 (with 00 00 01 prefixes) |
21173 | 575 codec_specific_data SHOULD contain exactly the essential global packets |
576 needed to decode a stream, more specifically it SHOULD NOT contain packets | |
577 which contain only non essential metadata like author, title, ... | |
578 it also MUST NOT contain normal packets which cause the reference decoder | |
579 to generate any specific decoded samples | |
580 the encoder name and version, shall be considered essential as it is very | |
581 usefull to workaround possible encoder bugs | |
21195
a1aaa21a66f2
a few more clarifications for codec_specific_data by Ralph Giles and me
michael
parents:
21177
diff
changeset
|
582 The global headers MUST consist of the normal |
a1aaa21a66f2
a few more clarifications for codec_specific_data by Ralph Giles and me
michael
parents:
21177
diff
changeset
|
583 sequence of header packets required for codec initialization, in the |
a1aaa21a66f2
a few more clarifications for codec_specific_data by Ralph Giles and me
michael
parents:
21177
diff
changeset
|
584 order defined in the codec spec. An implementation MAY strip metadata and |
a1aaa21a66f2
a few more clarifications for codec_specific_data by Ralph Giles and me
michael
parents:
21177
diff
changeset
|
585 other redundant information not necessary for correct playback from the |
a1aaa21a66f2
a few more clarifications for codec_specific_data by Ralph Giles and me
michael
parents:
21177
diff
changeset
|
586 global headers as long as no incorrect values are stored and as long as |
a1aaa21a66f2
a few more clarifications for codec_specific_data by Ralph Giles and me
michael
parents:
21177
diff
changeset
|
587 the striped result is not less valid per codec spec as before striping |
12082 | 588 |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
589 frame_code (f(8)) |
21171 | 590 frame_code is an 8-bit field which exists before every frame, it can |
20775 | 591 store part of the size of the frame, the stream number, the timestamp |
21165 | 592 and some flags amongst other things, what is not directly stored |
593 in it but is needed is stored in various fields immediately after it | |
20775 | 594 the values stored in it can be found in the main header |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
595 the value 78 ('N') is forbidden to ensure that the byte is always |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
596 different from the first byte of any startcode |
17794
ea0d4bc79bf1
0x00 and 0xFF should be invalid (libnut does that already and it seems like a good idea to recommand)
michael
parents:
17793
diff
changeset
|
597 a muxer SHOULD mark 0x00 and 0xFF as invalid to improve error |
ea0d4bc79bf1
0x00 and 0xFF should be invalid (libnut does that already and it seems like a good idea to recommand)
michael
parents:
17793
diff
changeset
|
598 detection |
9420 | 599 |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
600 flags[frame_code], frame_flags (v) |
17940 | 601 Bit Name Description |
21176
5db85f2c7ef6
specify the bitnumber for frame_flags, instead of a decimal bitmask
ivo
parents:
21175
diff
changeset
|
602 0 FLAG_KEY if set, frame is keyframe |
5db85f2c7ef6
specify the bitnumber for frame_flags, instead of a decimal bitmask
ivo
parents:
21175
diff
changeset
|
603 1 FLAG_EOR if set, stream has no relevance on |
17824 | 604 presentation. (EOR) |
21176
5db85f2c7ef6
specify the bitnumber for frame_flags, instead of a decimal bitmask
ivo
parents:
21175
diff
changeset
|
605 3 FLAG_CODED_PTS if set, coded_pts is in the frame header |
5db85f2c7ef6
specify the bitnumber for frame_flags, instead of a decimal bitmask
ivo
parents:
21175
diff
changeset
|
606 4 FLAG_STREAM_ID if set, stream_id is coded in the frame header |
5db85f2c7ef6
specify the bitnumber for frame_flags, instead of a decimal bitmask
ivo
parents:
21175
diff
changeset
|
607 5 FLAG_SIZE_MSB if set, data_size_msb is at frame header, |
17809 | 608 otherwise data_size_msb is 0 |
21176
5db85f2c7ef6
specify the bitnumber for frame_flags, instead of a decimal bitmask
ivo
parents:
21175
diff
changeset
|
609 6 FLAG_CHECKSUM if set then the frame header contains a checksum |
5db85f2c7ef6
specify the bitnumber for frame_flags, instead of a decimal bitmask
ivo
parents:
21175
diff
changeset
|
610 7 FLAG_RESERVED if set, reserved_count is coded in the frame header |
5db85f2c7ef6
specify the bitnumber for frame_flags, instead of a decimal bitmask
ivo
parents:
21175
diff
changeset
|
611 12 FLAG_CODED if set, coded_flags are stored in the frame header. |
5db85f2c7ef6
specify the bitnumber for frame_flags, instead of a decimal bitmask
ivo
parents:
21175
diff
changeset
|
612 13 FLAG_INVALID if set, frame_code is invalid. |
17437 | 613 |
614 EOR frames MUST be zero-length and must be set keyframe. | |
615 All streams SHOULD end with EOR, where the pts of the EOR indicates the | |
616 end presentation time of the final frame. | |
617 An EOR set stream is unset by the first content frames. | |
17551 | 618 EOR can only be unset in streams with zero decode_delay . |
17944 | 619 FLAG_CHECKSUM MUST be set if the frame's data_size is strictly greater than |
620 2*max_distance or the difference abs(pts-last_pts) is strictly greater than | |
621 max_pts_distance (where pts represents this frame's pts and last_pts is | |
622 defined as below). | |
12110
a34dc5a369ca
restrictions to ensure that O(log n) seeking and error recovery is possible
michael
parents:
12084
diff
changeset
|
623 |
20460 | 624 last_pts |
625 the timestamp of the last frame with the same stream_id as the current | |
626 if there is no such frame between the last syncpoint and the current | |
627 frame then the syncpoint timestamp is used, see global_key_pts | |
628 | |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
629 stream_id[frame_code] (v) |
20778 | 630 if FLAG_STREAM_ID is not set then this is the stream number for the |
631 frame following this frame_code | |
632 if FLAG_STREAM_ID is set then this value has no meaning | |
17826 | 633 MUST be <250 |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
634 |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
635 data_size_mul[frame_code] (v) |
20778 | 636 if FLAG_SIZE_MSB is set then data_size_msb which is stored after the |
637 frame code is multiplied with it and forms the more significant part | |
638 of the size of the following frame | |
639 if FLAG_SIZE_MSB is not set then this field has no meaning | |
17826 | 640 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
|
641 |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
642 data_size_lsb[frame_code] (v) |
20778 | 643 the less significant part of the size of the following frame |
644 this added together with data_size_mul*data_size_msb is the size of | |
645 the following frame | |
17826 | 646 MUST be <16384 |
12082 | 647 |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
648 pts_delta[frame_code] (s) |
17826 | 649 MUST be <16384 and >-16384 |
20460 | 650 if FLAG_CODED_PTS is set in the flags of the current frame then this |
651 value MUST be ignored, if FLAG_CODED_PTS is not set then pts_delta is the | |
652 difference between the current pts and last_pts | |
12413 | 653 |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
654 reserved_count[frame_code] (v) |
17825
2a20b0884be8
better max for frame code values, still allowing compact implementation
ods15
parents:
17824
diff
changeset
|
655 MUST be <256 |
17640 | 656 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
657 data_size |
20778 | 658 the size of the following frame |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
659 data_size= data_size_lsb + data_size_msb*data_size_mul; |
12082 | 660 |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
661 coded_pts (v) |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
662 if coded_pts < (1<<msb_pts_shift) then it is an lsb |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
663 pts, otherwise it is a full pts + (1<<msb_pts_shift) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
664 lsb pts is converted to a full pts by: |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
665 mask = (1<<msb_pts_shift)-1; |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
666 delta = last_pts - mask/2 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
667 pts = ((pts_lsb-delta)&mask) + delta |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
668 |
16429 | 669 lsb_pts |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
670 least significant bits of the pts in time_base precision |
9294 | 671 Example: IBBP display order |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
672 keyframe pts=0 -> pts=0 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
673 frame lsb_pts=3 -> pts=3 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
674 frame lsb_pts=1 -> pts=1 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
675 frame lsb_pts=2 -> pts=2 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
676 ... |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
677 keyframe msb_pts=257 -> pts=257 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
678 frame lsb_pts=255 -> pts=255 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
679 frame lsb_pts=0 -> pts=256 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
680 frame lsb_pts=4 -> pts=260 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
681 frame lsb_pts=2 -> pts=258 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
682 frame lsb_pts=3 -> pts=259 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
683 all pts's of keyframes of a single stream MUST be monotone |
9294 | 684 |
12333 | 685 dts |
20780 | 686 decoding timestamp |
687 the dts of a frame is the timestamp of the first sample which is | |
21165 | 688 output by a decoder when it is fed with the frame, note that the |
689 data output is not necessarily what is coded in the frame, but may | |
20780 | 690 be data from previous frames |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
691 dts is calculated by using a decode_delay+1 sized buffer for each |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
692 stream, into which the current pts is inserted and the element with |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
693 the smallest value is removed, this is then the current dts |
21165 | 694 this buffer is initialized with decode_delay -1 elements |
17327 | 695 |
696 Pts of all frames in all streams MUST be bigger or equal to dts of all | |
17437 | 697 previous frames in all streams, compared in common timebase. (EOR |
698 frames are NOT exempt from this rule) | |
20846
c1e47896ad80
least restrictive dts ordering rule which ensures frames are in decoding order
michael
parents:
20836
diff
changeset
|
699 Dts of all frames MUST be bigger or equal to dts of all previous frames |
c1e47896ad80
least restrictive dts ordering rule which ensures frames are in decoding order
michael
parents:
20836
diff
changeset
|
700 in the same stream |
12333 | 701 |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
702 width (v) / height (v) |
20780 | 703 width and height of the video in pixels |
17730 | 704 MUST be set to the coded width/height, MUST NOT be 0 |
9294 | 705 |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
706 sample_width (v) /sample_height (v) (aspect ratio) |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
707 sample_width is the horizontal distance between samples |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
708 sample_width and sample_height MUST be relatively prime if not zero |
17795
a4e7458d61ed
little clarification of sample_width/sample_height
michael
parents:
17794
diff
changeset
|
709 both MUST be 0 if unknown otherwise both MUST be non zero |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
710 |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
711 colorspace_type (v) |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
712 0 unknown |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
713 1 ITU Rec 624 / ITU Rec 601 Y range: 16..235 Cb/Cr range: 16..240 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
714 2 ITU Rec 709 Y range: 16..235 Cb/Cr range: 16..240 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
715 17 ITU Rec 624 / ITU Rec 601 Y range: 0..255 Cb/Cr range: 0..255 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
716 18 ITU Rec 709 Y range: 0..255 Cb/Cr range: 0..255 |
10166 | 717 |
21278
32dbc205ba34
rename all *_nom (nominator) to the correct *_num (numerator)
ivo
parents:
21195
diff
changeset
|
718 samplerate_num (v) / samplerate_denom (v) = samplerate |
17730 | 719 the number of samples per second, MUST NOT be 0 |
9294 | 720 |
17683 | 721 crc32 checksum |
17710 | 722 Generator polynomial is 0x104C11DB7. Starting value is zero. |
17683 | 723 |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
724 checksum (u(32)) |
17577 | 725 crc32 checksum |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
726 checksum is calculated for the area pointed to by forward_ptr not |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
727 including the checksum itself (from first byte after the |
17808
278206dd6fbd
clarify, header_checksum is not included in forward_ptr and in packet checksum
ods15
parents:
17801
diff
changeset
|
728 packet_header until last byte before the checksum). |
17711 | 729 for frame headers the checksum contains the framecode byte and all |
21165 | 730 following bytes up to the checksum itself |
9294 | 731 |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
732 header_checksum (u(32)) |
17792 | 733 checksum over the startcode and forward pointer |
734 | |
17640 | 735 Syncpoint tags: |
736 --------------- | |
737 | |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
738 back_ptr_div16 (v) |
17800 | 739 back_ptr = back_ptr_div16 * 16 + 15 |
22051
456d6d9dddce
better back_ptr_div16 description by (Clemens Ladisch ((( cladisch ( fastmail (( net
michael
parents:
21389
diff
changeset
|
740 back_ptr must point to a position up to 15 bytes before a syncpoint |
456d6d9dddce
better back_ptr_div16 description by (Clemens Ladisch ((( cladisch ( fastmail (( net
michael
parents:
21389
diff
changeset
|
741 startcode. Relative to position of current syncpoint. The syncpoint |
456d6d9dddce
better back_ptr_div16 description by (Clemens Ladisch ((( cladisch ( fastmail (( net
michael
parents:
21389
diff
changeset
|
742 pointed to MUST be the closest syncpoint such that at least one keyframe |
456d6d9dddce
better back_ptr_div16 description by (Clemens Ladisch ((( cladisch ( fastmail (( net
michael
parents:
21389
diff
changeset
|
743 with a pts lower or equal to the current syncpoint's global_key_pts for |
456d6d9dddce
better back_ptr_div16 description by (Clemens Ladisch ((( cladisch ( fastmail (( net
michael
parents:
21389
diff
changeset
|
744 all streams lies between it and the current syncpoint. |
17439
f6e39517d5b6
cosmetic change, shift stuff around to more logical places
ods15
parents:
17438
diff
changeset
|
745 |
f6e39517d5b6
cosmetic change, shift stuff around to more logical places
ods15
parents:
17438
diff
changeset
|
746 A stream where EOR is set is to be ignored for back_ptr. |
f6e39517d5b6
cosmetic change, shift stuff around to more logical places
ods15
parents:
17438
diff
changeset
|
747 |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
748 global_key_pts (t) |
17439
f6e39517d5b6
cosmetic change, shift stuff around to more logical places
ods15
parents:
17438
diff
changeset
|
749 After a syncpoint, last_pts of each stream is to be set to: |
17872 | 750 last_pts[i] = convert_ts(global_key_pts, time_base[id], time_base[i]) |
17439
f6e39517d5b6
cosmetic change, shift stuff around to more logical places
ods15
parents:
17438
diff
changeset
|
751 |
f6e39517d5b6
cosmetic change, shift stuff around to more logical places
ods15
parents:
17438
diff
changeset
|
752 global_key_pts MUST be bigger or equal to dts of all past frames across |
f6e39517d5b6
cosmetic change, shift stuff around to more logical places
ods15
parents:
17438
diff
changeset
|
753 all streams, and smaller or equal to pts of all future frames. |
f6e39517d5b6
cosmetic change, shift stuff around to more logical places
ods15
parents:
17438
diff
changeset
|
754 |
17640 | 755 Index tags: |
756 ----------- | |
757 | |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
758 max_pts (t) |
17796
6edc4492b777
universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents:
17795
diff
changeset
|
759 The highest pts in the entire file |
9294 | 760 |
21177
a84cf294f135
add two missing descriptions (index.syncpoints and info_packet.count)
ivo
parents:
21176
diff
changeset
|
761 syncpoints (v) |
a84cf294f135
add two missing descriptions (index.syncpoints and info_packet.count)
ivo
parents:
21176
diff
changeset
|
762 number of indexed syncpoints |
a84cf294f135
add two missing descriptions (index.syncpoints and info_packet.count)
ivo
parents:
21176
diff
changeset
|
763 |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
764 syncpoint_pos_div16 (v) |
21165 | 765 offset from beginning of file to up to 15 bytes before the syncpoint |
17438 | 766 referred to in this index entry. Relative to position of last |
767 syncpoint. | |
768 | |
769 has_keyframe | |
770 indicates whether this stream has a keyframe between this syncpoint and | |
771 the last syncpoint. | |
772 | |
773 keyframe_pts | |
774 The pts of the first keyframe for this stream in the region between the | |
17531 | 775 2 syncpoints, in the stream's timebase. (EOR frames are also keyframes) |
776 | |
777 eor_pts | |
778 Coded only if EOR is set at the position of the syncpoint. The pts of | |
779 that EOR. EOR is unset by the first keyframe after it. | |
9294 | 780 |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
781 index_ptr (u(64)) |
17726 | 782 Length in bytes of the entire index, from the first byte of the |
783 startcode until the last byte of the checksum. | |
784 Note: A demuxer can use this to find the index when it is written at | |
785 EOF, as index_ptr will always be 12 bytes before the end of file if | |
786 there is an index at all. | |
787 | |
16429 | 788 |
17640 | 789 Info tags: |
790 ---------- | |
791 | |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
792 stream_id_plus1 (v) |
17669 | 793 Stream this info packet applies to. If zero, packet applies to whole |
794 file. | |
795 | |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
796 chapter_id (s) |
17669 | 797 Id of chapter this packet applies to. If zero, packet applies to whole |
798 file. Positive chapter_id's are real chapters and MUST NOT overlap. | |
799 Negative chapter_id indicate a sub region of file and not a real | |
800 chapter. chapter_id MUST be unique to the region it represents. | |
17711 | 801 chapter_id n MUST not be used unless there are at least n chapters in the |
802 file | |
17669 | 803 |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
804 chapter_start (t) |
17796
6edc4492b777
universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents:
17795
diff
changeset
|
805 timestamp of start of chapter |
17669 | 806 |
21175
3cdb95ea504d
specify, where possible, the type of the tags in the tag description section
ivo
parents:
21173
diff
changeset
|
807 chapter_len (v) |
17669 | 808 Length of chapter in same timebase of chapter_start. |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
809 |
21177
a84cf294f135
add two missing descriptions (index.syncpoints and info_packet.count)
ivo
parents:
21176
diff
changeset
|
810 count (v) |
a84cf294f135
add two missing descriptions (index.syncpoints and info_packet.count)
ivo
parents:
21176
diff
changeset
|
811 number of name/value pairs in this info packet |
a84cf294f135
add two missing descriptions (index.syncpoints and info_packet.count)
ivo
parents:
21176
diff
changeset
|
812 |
9323 | 813 type |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
814 for example: "UTF8" -> string or "JPEG" -> JPEG image |
17685 | 815 "v" -> unsigned integer |
816 "s" -> signed integer | |
817 "r" -> rational | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
818 Note: nonstandard fields should be prefixed by "X-" |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
819 Note: MUST be less than 6 byte long (might be increased to 64 later) |
9323 | 820 |
13308
8ff17d153414
info packet is now file global, while meta pakcet is stream specific, as discussed with Rich
alex
parents:
13047
diff
changeset
|
821 info packet types |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
822 the name of the info entry, valid names are |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
823 "Author" |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
824 "Description" |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
825 "Copyright" |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
826 "Encoder" |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
827 the name & version of the software used for encoding |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
828 "Title" |
17669 | 829 "Cover" (allowed types are "PNG" and "JPEG") |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
830 image of the (CD, DVD, VHS, ..) cover (preferably PNG or JPEG) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
831 "Source" |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
832 "DVD", "VCD", "CD", "MD", "FM radio", "VHS", "TV", "LD" |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
833 Optional: appended PAL, NTSC, SECAM, ... in parentheses |
18899 | 834 "SourceContainer" |
835 "nut", "mkv", "mov", "avi", "ogg", "rm", "mpeg-ps", "mpeg-ts", "raw" | |
836 "SourceCodecTag" | |
837 the source codec id like a fourcc which was used to store a specific | |
838 stream in its SourceContainer | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
839 "CaptureDevice" |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
840 "BT878", "BT848", "webcam", ... (more exact names are fine too) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
841 "CreationTime" |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
842 "2003-01-20 20:13:15Z", ... |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
843 (ISO 8601 format, see http://www.cl.cam.ac.uk/~mgk25/iso-time.html) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
844 Note: do not forget the timezone |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
845 "Keywords" |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
846 "Language" |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
847 ISO 639 and ISO 3166 for language/country code |
21165 | 848 something like "eng" (US English), can be 0 if unknown |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
849 and "multi" if several languages |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
850 see http://www.loc.gov/standards/iso639-2/englangn.html |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
851 and http://www.din.de/gremien/nas/nabd/iso3166ma/codlstp1/en_listp1.html |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
852 the language code |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
853 "Disposition" |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
854 "original", "dub" (translated), "comment", "lyrics", "karaoke" |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
855 Note: if someone needs some others, please tell us about them, so we |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
856 can add them to the official standard (if they are sane) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
857 Note: nonstandard fields should be prefixed by "X-" |
17686 | 858 Note: names of fields SHOULD be in English if a word with the same |
17653 | 859 meaning exists in English |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
860 Note: MUST be less than 64 bytes long |
9295 | 861 |
862 value | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
863 value of this name/type pair |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
864 |
9310 | 865 stuffing |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
866 0x80 can be placed in front of any type v entry for stuffing purposes |
17797
b1d80d05eaa8
limit stuffing to prevent header_checksum from endup being useless due to a gb of 0x80 after a 'N'
michael
parents:
17796
diff
changeset
|
867 except the forward_ptr and all fields in the frame header where a |
b1d80d05eaa8
limit stuffing to prevent header_checksum from endup being useless due to a gb of 0x80 after a 'N'
michael
parents:
17796
diff
changeset
|
868 maximum of 8 stuffing bytes per field are allowed |
9294 | 869 |
16842
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
870 |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
871 Structure: |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
872 ---------- |
9294 | 873 |
874 the headers MUST be in exactly the following order (to simplify demuxer design) | |
875 main header | |
876 stream_header (id=0) | |
877 stream_header (id=1) | |
878 ... | |
879 stream_header (id=n) | |
880 | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
881 headers may be repeated, but if they are, then they MUST all be repeated |
15008
0a43341c8bfd
less amateurish-looking mpcf.txt patch by (Jeff >snacky ikaruga co uk<)
michael
parents:
14919
diff
changeset
|
882 together and repeated headers MUST be identical |
17547 | 883 |
884 Each set of repeated headers not at the beginning or end of the file SHOULD | |
885 be stored at the earliest possible position after 2^x where x is | |
15008
0a43341c8bfd
less amateurish-looking mpcf.txt patch by (Jeff >snacky ikaruga co uk<)
michael
parents:
14919
diff
changeset
|
886 an integer and the file end, so the headers may be repeated at 4102 if that is |
0a43341c8bfd
less amateurish-looking mpcf.txt patch by (Jeff >snacky ikaruga co uk<)
michael
parents:
14919
diff
changeset
|
887 the closest position after 2^12=4096 at which the headers can be placed |
9294 | 888 |
17547 | 889 Note: this allows an implementation reading the file to locate backup |
890 headers in O(log filesize) time as opposed to O(filesize) | |
891 | |
15008
0a43341c8bfd
less amateurish-looking mpcf.txt patch by (Jeff >snacky ikaruga co uk<)
michael
parents:
14919
diff
changeset
|
892 headers MUST be placed at least at the start of the file and immediately before |
12501 | 893 the index or at the file end if there is no index |
16428 | 894 headers MUST be repeated at least twice (so they exist three times in a file) |
9295 | 895 |
16685 | 896 there MUST be a sync point immediately before the first frame after any headers |
12503 | 897 |
16842
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
898 |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
899 Index: |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
900 ------ |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
901 |
15008
0a43341c8bfd
less amateurish-looking mpcf.txt patch by (Jeff >snacky ikaruga co uk<)
michael
parents:
14919
diff
changeset
|
902 Note: with realtime streaming, there is no end, so no index there either |
17533 | 903 Index MAY only be repeated after main headers. |
17726 | 904 If an index is written anywhere in the file, it MUST be written at end of |
905 file as well. | |
9310 | 906 |
16842
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
907 |
17669 | 908 Info: |
909 ----- | |
910 | |
20922 | 911 If a info packet is stored anywhere then a muxer MUST also store an identical |
17771 | 912 info packet after every main-stream-header set |
9310 | 913 |
17771 | 914 If a demuxer has seen several info packets with the same chapter_id and |
915 stream_id then it MUST ignore all but the one with the highest position in | |
916 the file | |
17669 | 917 |
21165 | 918 demuxers SHOULD NOT search the whole file for info packets |
16842
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
919 |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
920 demuxer (non-normative): |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
921 ------------------------ |
12501 | 922 |
16428 | 923 in the absence of a valid header at the beginning, players SHOULD search for |
924 backup headers starting at offset 2^x; for each x players SHOULD end their | |
925 search at a particular offset when any startcode is found (including syncpoint) | |
12501 | 926 |
16842
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
927 |
20965 | 928 Seeking without an index (non-normative): |
929 ----------------------------------------- | |
930 A. backward seeking | |
931 1. perform a binary search on the syncpoint timestamps finding the one | |
932 which is largest and <= the target timestamp | |
933 B. forward seeking | |
934 1a. perform a binary search on the syncpoint timestamps finding the one | |
935 which is smallest and >= the target timestamp | |
936 1b. perform a binary search on the syncpoint back pointers finding the | |
937 smallest one which has a back ptr >= the position of what was found in 1. | |
21165 | 938 2. follow the back pointer to the corresponding syncpoint |
20965 | 939 |
940 Seeking with an index (non-normative): | |
941 -------------------------------------- | |
942 The demuxer only has to find the appropriate keyframe in the index and | |
943 start demuxing from the previous syncpoint | |
944 | |
945 Note, more complicated seeking methods exist which are capable of quickly | |
946 seeking to the optimal point in the presence of an index even if only a | |
20966 | 947 subset of all streams is active |
948 | |
949 A muxer SHOULD place syncpoints so that that simple low complexity seeking | |
950 works with fine granularity, that is syncpoints should be placed prior | |
951 to keyframes instead of non keyframes and with high enough frequency | |
952 (once per second unless there are no keyframes between this and the previous | |
953 syncpoint) | |
954 | |
955 encoders SHOULD place keyframes so that the number of points where all | |
956 streams have a keyframe at the same time is maximized, this ensures that | |
957 seeking (complicated or not) does not need to demux and decode significant | |
958 amounts of data to reach a point where a presentable frame for each stream | |
959 is available after seeking | |
20965 | 960 |
16842
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
961 |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
962 Semantic requirements: |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
963 ====================== |
16429 | 964 |
17018
baf593fcf738
Change MUST to SHOULD have disposition and if applicable language tags.
al
parents:
16843
diff
changeset
|
965 If more than one stream of a given stream class is present, each one SHOULD |
16429 | 966 have info tags specifying disposition, and if applicable, language. |
17018
baf593fcf738
Change MUST to SHOULD have disposition and if applicable language tags.
al
parents:
16843
diff
changeset
|
967 It often highly improves usability and is therefore strongly encouraged. |
16429 | 968 |
969 A demuxer MUST NOT demux a stream which contains more than one stream, or which | |
970 is wrapped in a structure to facilitate more than one stream or otherwise | |
971 duplicate the role of a container. any such file is to be considered invalid. | |
17798
2d02868030f0
double muxing examples (cant hurt to explictly mention the most common)
michael
parents:
17797
diff
changeset
|
972 for example vorbis in ogg in nut is invalid, as is |
2d02868030f0
double muxing examples (cant hurt to explictly mention the most common)
michael
parents:
17797
diff
changeset
|
973 mpegvideo+mpegaudio in mpeg-ps/ts in nut or dvvideo + dvaudio in dv in nut |
16429 | 974 |
12501 | 975 |
16842
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
976 |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
977 Sample code (Public Domain, & untested): |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
978 ======================================== |
9294 | 979 |
980 typedef BufferContext{ | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
981 uint8_t *buf; |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
982 uint8_t *buf_ptr; |
9294 | 983 }BufferContext; |
984 | |
985 static inline uint64_t get_bytes(BufferContext *bc, int count){ | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
986 uint64_t val=0; |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
987 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
988 assert(count>0 && count<9); |
9294 | 989 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
990 for(i=0; i<count; i++){ |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
991 val <<=8; |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
992 val += *(bc->buf_ptr++); |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
993 } |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
994 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
995 return val; |
9294 | 996 } |
997 | |
998 static inline void put_bytes(BufferContext *bc, int count, uint64_t val){ | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
999 uint64_t val=0; |
9294 | 1000 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1001 assert(count>0 && count<9); |
9294 | 1002 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1003 for(i=count-1; i>=0; i--){ |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1004 *(bc->buf_ptr++)= val >> (8*i); |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1005 } |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1006 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1007 return val; |
9294 | 1008 } |
1009 | |
10061 | 1010 static inline uint64_t get_v(BufferContext *bc){ |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1011 uint64_t val= 0; |
9294 | 1012 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1013 for(; space_left(bc) > 0; ){ |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1014 int tmp= *(bc->buf_ptr++); |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1015 if(tmp&0x80) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1016 val= (val<<7) + tmp - 0x80; |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1017 else |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1018 return (val<<7) + tmp; |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1019 } |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1020 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1021 return -1; |
9294 | 1022 } |
1023 | |
10061 | 1024 static inline int put_v(BufferContext *bc, uint64_t val){ |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1025 int i; |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1026 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1027 if(space_left(bc) < 9) return -1; |
9294 | 1028 |
21165 | 1029 val &= 0x7FFFFFFFFFFFFFFFULL; // FIXME can only encode up to 63 bits currently |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1030 for(i=7; ; i+=7){ |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1031 if(val>>i == 0) break; |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1032 } |
9294 | 1033 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1034 for(i-=7; i>0; i-=7){ |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1035 *(bc->buf_ptr++)= 0x80 | (val>>i); |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1036 } |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1037 *(bc->buf_ptr++)= val&0x7F; |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1038 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1039 return 0; |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
1040 } |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
1041 |
12333 | 1042 static int64_t get_dts(int64_t pts, int64_t *pts_cache, int delay, int reset){ |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1043 if(reset) memset(pts_cache, -1, delay*sizeof(int64_t)); |
12333 | 1044 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1045 while(delay--){ |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1046 int64_t t= pts_cache[delay]; |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1047 if(t < pts){ |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1048 pts_cache[delay]= pts; |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1049 pts= t; |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1050 } |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1051 } |
12333 | 1052 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
1053 return pts; |
12333 | 1054 } |
1055 | |
16842
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
1056 |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
1057 |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
1058 Authors: |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
1059 ======== |
10158
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
1060 |
16428 | 1061 Folks from the MPlayer developers mailing list (http://www.mplayerhq.hu/). |
1062 Authors in alphabetical order: (FIXME! Tell us if we left you out) | |
16843 | 1063 Beregszaszi, Alex (alex@fsn.hu) |
1064 Bunkus, Moritz (moritz@bunkus.org) | |
1065 Diedrich, Tobias (ranma+mplayer@tdiedrich.de) | |
1066 Felker, Rich (dalias@aerifal.cx) | |
1067 Franz, Fabian (FabianFranz@gmx.de) | |
1068 Gereoffy, Arpad (arpi@thot.banki.hu) | |
1069 Hess, Andreas (jaska@gmx.net) | |
1070 Niedermayer, Michael (michaelni@gmx.at) | |
1071 Shimon, Oded (ods15@ods15.dyndns.org) |