annotate DOCS/tech/nut.txt @ 21125:4aff19cc00bb

Also support absolute url redirection, e.g. http://www.youtube.com/v/buKaqRG2SFA (video does not play anyway though).
author reimar
date Tue, 21 Nov 2006 16:26:38 +0000
parents dc1a02e98cb6
children ad87c5c9bb94
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
e53110c2d071 revert last 2 commits on nut.txt
ods15
parents: 20911
diff changeset
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
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
4
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
5
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
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
20649
michael
parents: 20633
diff changeset
10 NUT is a Free multimedia container format for storeage of audio, video,
michael
parents: 20633
diff changeset
11 subtitles and related user defined streams, it provides exact timestamps for
michael
parents: 20633
diff changeset
12 synchronization and seeking, is simple, has low overhead and can recover
michael
parents: 20633
diff changeset
13 in case of errors in the stream
michael
parents: 20633
diff changeset
14
michael
parents: 20633
diff changeset
15 other common multimedia container formats are AVI, OGG, Matroska, MP4, MOV
michael
parents: 20633
diff changeset
16 ASF, MPEG-PS, MPEG-TS
michael
parents: 20633
diff changeset
17
michael
parents: 20633
diff changeset
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
81d2f40ce5d4 change goals slightly..
ods15
parents: 17437
diff changeset
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
a9e170085990 1) change date and goals slightly
ods15
parents: 17230
diff changeset
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
b105cebec25c keyframe definition
michael
parents: 20619
diff changeset
53 keyframe
20772
b58788cc1b27 simple 1 line definition of what a keyframe is
michael
parents: 20658
diff changeset
54 A keyframe is a frame from which you can start decoding, a more
b58788cc1b27 simple 1 line definition of what a keyframe is
michael
parents: 20658
diff changeset
55 exact definition is below
20631
ec285c2d1055 2nd try for a keyframe definition
michael
parents: 20622
diff changeset
56 The nth frame is a keyframe if and only if frames n, n+1, ... in
ec285c2d1055 2nd try for a keyframe definition
michael
parents: 20622
diff changeset
57 presentation order (that are all frames with a pts >= frame[n].pts) can
ec285c2d1055 2nd try for a keyframe definition
michael
parents: 20622
diff changeset
58 be decoded successfully without reference to frames prior n in storeage
ec285c2d1055 2nd try for a keyframe definition
michael
parents: 20622
diff changeset
59 order (that are all frames with a dts < frame[n].dts)
ec285c2d1055 2nd try for a keyframe definition
michael
parents: 20622
diff changeset
60 if no such frames exist (for example due to use of overlapped transforms
ec285c2d1055 2nd try for a keyframe definition
michael
parents: 20622
diff changeset
61 like the MDCT in an audio codec) then the definition shall be extended
ec285c2d1055 2nd try for a keyframe definition
michael
parents: 20622
diff changeset
62 by droping n out of the set of frames which must be decodable, if this
ec285c2d1055 2nd try for a keyframe definition
michael
parents: 20622
diff changeset
63 is still insufficient then n+1 shall be droped, and so on until there is
ec285c2d1055 2nd try for a keyframe definition
michael
parents: 20622
diff changeset
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
44ea011155d1 attempt to fix the unbound future frame issue with keyframes on the muxer side
michael
parents: 20631
diff changeset
66 the defintion above, a muxer MUST mark every frame it knows is a keyframe
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
b105cebec25c keyframe definition
michael
parents: 20619
diff changeset
70 (FIXME maybe move somewhere else?)
20870
01f57f7226de pts definition by mans
michael
parents: 20846
diff changeset
71 pts
01f57f7226de pts definition by mans
michael
parents: 20846
diff changeset
72 presentation time of the first frame/sample that is completed by decoding
01f57f7226de pts definition by mans
michael
parents: 20846
diff changeset
73 the coded frame.
01f57f7226de pts definition by mans
michael
parents: 20846
diff changeset
74 dts
20964
eb8927d75bcd dts & synchronous decoder
michael
parents: 20922
diff changeset
75 of a frame is the time when it is input into a synchronous 1-in-1-out
eb8927d75bcd dts & synchronous decoder
michael
parents: 20922
diff changeset
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
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
81
16428
5f4317692b7c spelling/grammar/wording
diego
parents: 15755
diff changeset
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
5f4317692b7c spelling/grammar/wording
diego
parents: 15755
diff changeset
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
3baef37d3b7c moving f() and u()
michael
parents: 12208
diff changeset
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
3baef37d3b7c moving f() and u()
michael
parents: 12208
diff changeset
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
774afe44f17b some more info (copy & pasted from ML)
michael
parents: 9312
diff changeset
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
b493e5ba8741 strings without terminating NUL
ods15
parents: 17827
diff changeset
136 [Note: the character NUL (U+0000) is not legal within
b493e5ba8741 strings without terminating NUL
ods15
parents: 17827
diff changeset
137 or at the end of a string.]
9295
michael
parents: 9294
diff changeset
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
e1e5e2124dae minor changes
michael
parents: 12110
diff changeset
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
a05b9e4da7b8 timebase table
ods15
parents: 17845
diff changeset
145 id= tmp % time_base_count
a05b9e4da7b8 timebase table
ods15
parents: 17845
diff changeset
146 value= (tmp / time_base_count) * time_base[id]
9295
michael
parents: 9294
diff changeset
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
4f0d58f5b10d move file up so its found first, this probably improves readability
michael
parents: 20468
diff changeset
169 the structure of a undamaged file should look like the following, but
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
4f0d58f5b10d move file up so its found first, this probably improves readability
michael
parents: 20468
diff changeset
171 above is a better loop in practice (not to mention its simpler)
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
e53110c2d071 revert last 2 commits on nut.txt
ods15
parents: 20911
diff changeset
191 if(next_code == syncpoint_startcode){
e53110c2d071 revert last 2 commits on nut.txt
ods15
parents: 20911
diff changeset
192 packet_header, syncpoint, packet_footer
e53110c2d071 revert last 2 commits on nut.txt
ods15
parents: 20911
diff changeset
193 }
e53110c2d071 revert last 2 commits on nut.txt
ods15
parents: 20911
diff changeset
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
0ebc8dfa136a cosmetic, move stuff around
ods15
parents: 17835
diff changeset
211 packet_header
0ebc8dfa136a cosmetic, move stuff around
ods15
parents: 17835
diff changeset
212 startcode f(64)
0ebc8dfa136a cosmetic, move stuff around
ods15
parents: 17835
diff changeset
213 forward_ptr v
0ebc8dfa136a cosmetic, move stuff around
ods15
parents: 17835
diff changeset
214 if(forward_ptr > 4096)
0ebc8dfa136a cosmetic, move stuff around
ods15
parents: 17835
diff changeset
215 header_checksum u(32)
0ebc8dfa136a cosmetic, move stuff around
ods15
parents: 17835
diff changeset
216
0ebc8dfa136a cosmetic, move stuff around
ods15
parents: 17835
diff changeset
217 packet_footer
0ebc8dfa136a cosmetic, move stuff around
ods15
parents: 17835
diff changeset
218 reserved_bytes
0ebc8dfa136a cosmetic, move stuff around
ods15
parents: 17835
diff changeset
219 checksum u(32)
17873
1ea882991bb4 rephrase index_ptr positioning
ods15
parents: 17872
diff changeset
220 [Note: in index packet, reserved_bytes comes before index_ptr]
17845
0ebc8dfa136a cosmetic, move stuff around
ods15
parents: 17835
diff changeset
221
0ebc8dfa136a cosmetic, move stuff around
ods15
parents: 17835
diff changeset
222 reserved_headers
0ebc8dfa136a cosmetic, move stuff around
ods15
parents: 17835
diff changeset
223 while(next_byte == 'N' && next_code != main_startcode
0ebc8dfa136a cosmetic, move stuff around
ods15
parents: 17835
diff changeset
224 && next_code != stream_startcode
0ebc8dfa136a cosmetic, move stuff around
ods15
parents: 17835
diff changeset
225 && next_code != info_startcode
0ebc8dfa136a cosmetic, move stuff around
ods15
parents: 17835
diff changeset
226 && next_code != index_startcode
0ebc8dfa136a cosmetic, move stuff around
ods15
parents: 17835
diff changeset
227 && next_code != syncpoint_startcode){
0ebc8dfa136a cosmetic, move stuff around
ods15
parents: 17835
diff changeset
228 packet_header
0ebc8dfa136a cosmetic, move stuff around
ods15
parents: 17835
diff changeset
229 packet_footer
0ebc8dfa136a cosmetic, move stuff around
ods15
parents: 17835
diff changeset
230 }
0ebc8dfa136a cosmetic, move stuff around
ods15
parents: 17835
diff changeset
231
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
232 Headers:
10824
d163db068a12 reserved_bytes & byte order stuff
michael
parents: 10817
diff changeset
233
20619
fd2cd70ecc3f main header typo
michael
parents: 20618
diff changeset
234 main_header:
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
235 version v
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
236 stream_count v
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
237 max_distance v
17872
a05b9e4da7b8 timebase table
ods15
parents: 17845
diff changeset
238 time_base_count v
a05b9e4da7b8 timebase table
ods15
parents: 17845
diff changeset
239 for(i=0; i<time_base_count; i++)
a05b9e4da7b8 timebase table
ods15
parents: 17845
diff changeset
240 time_base_nom v
a05b9e4da7b8 timebase table
ods15
parents: 17845
diff changeset
241 time_base_denom v
a05b9e4da7b8 timebase table
ods15
parents: 17845
diff changeset
242 time_base[i]= time_base_nom/time_base_denom
17437
e2f2a8ac648a bump date
ods15
parents: 17330
diff changeset
243 tmp_pts=0
e2f2a8ac648a bump date
ods15
parents: 17330
diff changeset
244 tmp_mul=1
e2f2a8ac648a bump date
ods15
parents: 17330
diff changeset
245 tmp_stream=0
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
246 for(i=0; i<256; ){
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
247 tmp_flag v
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
248 tmp_fields v
17719
6f1bc4789a5d update tmp_field numbers (pretty much just cosmetic)
michael
parents: 17718
diff changeset
249 if(tmp_fields>0) tmp_pts s
6f1bc4789a5d update tmp_field numbers (pretty much just cosmetic)
michael
parents: 17718
diff changeset
250 if(tmp_fields>1) tmp_mul v
6f1bc4789a5d update tmp_field numbers (pretty much just cosmetic)
michael
parents: 17718
diff changeset
251 if(tmp_fields>2) tmp_stream v
6f1bc4789a5d update tmp_field numbers (pretty much just cosmetic)
michael
parents: 17718
diff changeset
252 if(tmp_fields>3) tmp_size v
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
253 else tmp_size=0
17719
6f1bc4789a5d update tmp_field numbers (pretty much just cosmetic)
michael
parents: 17718
diff changeset
254 if(tmp_fields>4) tmp_res v
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
255 else tmp_res=0
17719
6f1bc4789a5d update tmp_field numbers (pretty much just cosmetic)
michael
parents: 17718
diff changeset
256 if(tmp_fields>5) count v
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
257 else count= tmp_mul - tmp_size
17719
6f1bc4789a5d update tmp_field numbers (pretty much just cosmetic)
michael
parents: 17718
diff changeset
258 for(j=6; j<tmp_fields; j++){
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
259 tmp_reserved[i] v
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
260 }
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
261 for(j=0; j<count && i<256; j++, i++){
17612
99b6205ff32c Make 'N' frame code implictly invalid
ods15
parents: 17585
diff changeset
262 if (i == 'N') {
17718
86bcb118eab1 simplify flags
michael
parents: 17714
diff changeset
263 flags[i]= FLAG_INVALID;
17612
99b6205ff32c Make 'N' frame code implictly invalid
ods15
parents: 17585
diff changeset
264 j--;
99b6205ff32c Make 'N' frame code implictly invalid
ods15
parents: 17585
diff changeset
265 continue;
99b6205ff32c Make 'N' frame code implictly invalid
ods15
parents: 17585
diff changeset
266 }
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
267 flags[i]= tmp_flag;
17887
f20bba087cc8 flags cleanup
michael
parents: 17883
diff changeset
268 stream_id[i]= tmp_stream;
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
269 data_size_mul[i]= tmp_mul;
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
270 data_size_lsb[i]= tmp_size + j;
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
271 pts_delta[i]= tmp_pts;
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
272 reserved_count[i]= tmp_res;
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
273 }
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
274 }
9294
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
275
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
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
a05b9e4da7b8 timebase table
ods15
parents: 17845
diff changeset
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
0f6b020f867d change checksum to crc32
ods15
parents: 17551
diff changeset
282 max_pts_distance v
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
283 decode_delay v
17939
daa0fdad26ed switch to using vlc for stream_flags
ods15
parents: 17887
diff changeset
284 stream_flags v
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
285 codec_specific_data vb
17640
6b69c5b4b92a more cosmetics
ods15
parents: 17639
diff changeset
286 if(stream_class == video){
6b69c5b4b92a more cosmetics
ods15
parents: 17639
diff changeset
287 width v
6b69c5b4b92a more cosmetics
ods15
parents: 17639
diff changeset
288 height v
6b69c5b4b92a more cosmetics
ods15
parents: 17639
diff changeset
289 sample_width v
6b69c5b4b92a more cosmetics
ods15
parents: 17639
diff changeset
290 sample_height v
6b69c5b4b92a more cosmetics
ods15
parents: 17639
diff changeset
291 colorspace_type v
6b69c5b4b92a more cosmetics
ods15
parents: 17639
diff changeset
292 }else if(stream_class == audio){
6b69c5b4b92a more cosmetics
ods15
parents: 17639
diff changeset
293 samplerate_nom v
6b69c5b4b92a more cosmetics
ods15
parents: 17639
diff changeset
294 samplerate_denom v
6b69c5b4b92a more cosmetics
ods15
parents: 17639
diff changeset
295 channel_count v
6b69c5b4b92a more cosmetics
ods15
parents: 17639
diff changeset
296 }
16429
84174804804b Updates to NUT spec:
ods15
parents: 16428
diff changeset
297
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
298 Basic Packets:
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
299
14854
ebc5136f2a56 some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents: 14471
diff changeset
300 frame:
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
301 frame_code f(8)
17718
86bcb118eab1 simplify flags
michael
parents: 17714
diff changeset
302 frame_flags= flags[frame_code]
86bcb118eab1 simplify flags
michael
parents: 17714
diff changeset
303 if(frame_flags&FLAG_CODED){
86bcb118eab1 simplify flags
michael
parents: 17714
diff changeset
304 coded_flags v
86bcb118eab1 simplify flags
michael
parents: 17714
diff changeset
305 frame_flags ^= coded_flags
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
306 }
17887
f20bba087cc8 flags cleanup
michael
parents: 17883
diff changeset
307 if(frame_flags&FLAG_STREAM_ID){
f20bba087cc8 flags cleanup
michael
parents: 17883
diff changeset
308 stream_id v
f20bba087cc8 flags cleanup
michael
parents: 17883
diff changeset
309 }
f20bba087cc8 flags cleanup
michael
parents: 17883
diff changeset
310 if(frame_flags&FLAG_CODED_PTS){
f20bba087cc8 flags cleanup
michael
parents: 17883
diff changeset
311 coded_pts v
f20bba087cc8 flags cleanup
michael
parents: 17883
diff changeset
312 }
17718
86bcb118eab1 simplify flags
michael
parents: 17714
diff changeset
313 if(frame_flags&FLAG_SIZE_MSB){
86bcb118eab1 simplify flags
michael
parents: 17714
diff changeset
314 data_size_msb v
17437
e2f2a8ac648a bump date
ods15
parents: 17330
diff changeset
315 }
17887
f20bba087cc8 flags cleanup
michael
parents: 17883
diff changeset
316 if(frame_flags&FLAG_RESERVED)
f20bba087cc8 flags cleanup
michael
parents: 17883
diff changeset
317 reserved_count[frame_code] v
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
318 for(i=0; i<reserved_count[frame_code]; i++)
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
319 reserved v
17723
ods15
parents: 17722
diff changeset
320 if(frame_flags&FLAG_CHECKSUM){
17711
8aa18d8e5eb6 add forward_ptr to syncpoint (+0.006% overhead)
michael
parents: 17710
diff changeset
321 checksum u(32)
17584
187260c06b4f Add syncpoint_checksum after frame header
ods15
parents: 17577
diff changeset
322 }
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
323 data
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
324
14854
ebc5136f2a56 some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents: 14471
diff changeset
325 index:
17796
6edc4492b777 universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents: 17795
diff changeset
326 max_pts t
17438
81d2f40ce5d4 change goals slightly..
ods15
parents: 17437
diff changeset
327 syncpoints v
17720
63755b0aca46 the return of the monolithic index
michael
parents: 17719
diff changeset
328 for(i=0; i<syncpoints; i++){
17800
7547340823a9 div8 -> div16
michael
parents: 17799
diff changeset
329 syncpoint_pos_div16 v
17438
81d2f40ce5d4 change goals slightly..
ods15
parents: 17437
diff changeset
330 }
81d2f40ce5d4 change goals slightly..
ods15
parents: 17437
diff changeset
331 for(i=0; i<stream_count; i++){
17615
363d23eb55d3 fix index, first keyframe cannot be written with pts=0
ods15
parents: 17612
diff changeset
332 last_pts= -1
17720
63755b0aca46 the return of the monolithic index
michael
parents: 17719
diff changeset
333 for(j=0; j<syncpoints; ){
17438
81d2f40ce5d4 change goals slightly..
ods15
parents: 17437
diff changeset
334 x v
81d2f40ce5d4 change goals slightly..
ods15
parents: 17437
diff changeset
335 type= x & 1
81d2f40ce5d4 change goals slightly..
ods15
parents: 17437
diff changeset
336 x>>=1
17455
1bb20b4c4082 Interleave index to ease per-need decoding.
ods15
parents: 17439
diff changeset
337 n=j
17438
81d2f40ce5d4 change goals slightly..
ods15
parents: 17437
diff changeset
338 if(type){
81d2f40ce5d4 change goals slightly..
ods15
parents: 17437
diff changeset
339 flag= x & 1
81d2f40ce5d4 change goals slightly..
ods15
parents: 17437
diff changeset
340 x>>=1
81d2f40ce5d4 change goals slightly..
ods15
parents: 17437
diff changeset
341 while(x--)
17455
1bb20b4c4082 Interleave index to ease per-need decoding.
ods15
parents: 17439
diff changeset
342 has_keyframe[n++][i]=flag
1bb20b4c4082 Interleave index to ease per-need decoding.
ods15
parents: 17439
diff changeset
343 has_keyframe[n++][i]=!flag;
17438
81d2f40ce5d4 change goals slightly..
ods15
parents: 17437
diff changeset
344 }else{
81d2f40ce5d4 change goals slightly..
ods15
parents: 17437
diff changeset
345 while(x != 1){
17455
1bb20b4c4082 Interleave index to ease per-need decoding.
ods15
parents: 17439
diff changeset
346 has_keyframe[n++][i]=x&1;
17438
81d2f40ce5d4 change goals slightly..
ods15
parents: 17437
diff changeset
347 x>>=1;
81d2f40ce5d4 change goals slightly..
ods15
parents: 17437
diff changeset
348 }
81d2f40ce5d4 change goals slightly..
ods15
parents: 17437
diff changeset
349 }
17455
1bb20b4c4082 Interleave index to ease per-need decoding.
ods15
parents: 17439
diff changeset
350 for(; j<n && j<syncpoints; j++){
1bb20b4c4082 Interleave index to ease per-need decoding.
ods15
parents: 17439
diff changeset
351 if (!has_keyframe[j][i]) continue
1bb20b4c4082 Interleave index to ease per-need decoding.
ods15
parents: 17439
diff changeset
352 A v
17531
c6ad2343ec16 EOR in index
ods15
parents: 17491
diff changeset
353 if(!A){
c6ad2343ec16 EOR in index
ods15
parents: 17491
diff changeset
354 A v
c6ad2343ec16 EOR in index
ods15
parents: 17491
diff changeset
355 B v
c6ad2343ec16 EOR in index
ods15
parents: 17491
diff changeset
356 eor_pts[j][i] = last_pts + A + B
c6ad2343ec16 EOR in index
ods15
parents: 17491
diff changeset
357 }else
c6ad2343ec16 EOR in index
ods15
parents: 17491
diff changeset
358 B=0
c6ad2343ec16 EOR in index
ods15
parents: 17491
diff changeset
359 keyframe_pts[j][i] = last_pts + A
c6ad2343ec16 EOR in index
ods15
parents: 17491
diff changeset
360 last_pts += A + B
17455
1bb20b4c4082 Interleave index to ease per-need decoding.
ods15
parents: 17439
diff changeset
361 }
17438
81d2f40ce5d4 change goals slightly..
ods15
parents: 17437
diff changeset
362 }
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
363 }
17873
1ea882991bb4 rephrase index_ptr positioning
ods15
parents: 17872
diff changeset
364 reserved_bytes
17726
541738aa3079 return index_ptr to inside index
ods15
parents: 17723
diff changeset
365 index_ptr u(64)
9294
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
366
17711
8aa18d8e5eb6 add forward_ptr to syncpoint (+0.006% overhead)
michael
parents: 17710
diff changeset
367 info_packet:
17669
cb73482267a0 info packet stuff, chapters...
ods15
parents: 17653
diff changeset
368 stream_id_plus1 v
20658
ed20cbab07a4 Corrigendum 1
michael
parents: 20650
diff changeset
369 chapter_id s (Note due to a typo this was v
ed20cbab07a4 Corrigendum 1
michael
parents: 20650
diff changeset
370 until 2006-11-04)
17796
6edc4492b777 universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents: 17795
diff changeset
371 chapter_start t
17708
11a96a862d43 remove chapter_id == 0 special case
michael
parents: 17686
diff changeset
372 chapter_len v
17669
cb73482267a0 info packet stuff, chapters...
ods15
parents: 17653
diff changeset
373 count v
cb73482267a0 info packet stuff, chapters...
ods15
parents: 17653
diff changeset
374 for(i=0; i<count; i++){
cb73482267a0 info packet stuff, chapters...
ods15
parents: 17653
diff changeset
375 name vb
cb73482267a0 info packet stuff, chapters...
ods15
parents: 17653
diff changeset
376 value s
cb73482267a0 info packet stuff, chapters...
ods15
parents: 17653
diff changeset
377 if (value==-1){
cb73482267a0 info packet stuff, chapters...
ods15
parents: 17653
diff changeset
378 type= "UTF-8"
cb73482267a0 info packet stuff, chapters...
ods15
parents: 17653
diff changeset
379 value vb
cb73482267a0 info packet stuff, chapters...
ods15
parents: 17653
diff changeset
380 }else if (value==-2){
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
381 type vb
17669
cb73482267a0 info packet stuff, chapters...
ods15
parents: 17653
diff changeset
382 value vb
cb73482267a0 info packet stuff, chapters...
ods15
parents: 17653
diff changeset
383 }else if (value==-3){
17685
ac0534e8c3d2 use short 'type' names
ods15
parents: 17684
diff changeset
384 type= "s"
17326
a9e170085990 1) change date and goals slightly
ods15
parents: 17230
diff changeset
385 value s
17796
6edc4492b777 universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents: 17795
diff changeset
386 }else if (value==-4){
6edc4492b777 universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents: 17795
diff changeset
387 type= "t"
6edc4492b777 universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents: 17795
diff changeset
388 value t
6edc4492b777 universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents: 17795
diff changeset
389 }else if (value<-4){
17685
ac0534e8c3d2 use short 'type' names
ods15
parents: 17684
diff changeset
390 type= "r"
17796
6edc4492b777 universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents: 17795
diff changeset
391 value.den= -value-4
17669
cb73482267a0 info packet stuff, chapters...
ods15
parents: 17653
diff changeset
392 value.num s
cb73482267a0 info packet stuff, chapters...
ods15
parents: 17653
diff changeset
393 }else{
17685
ac0534e8c3d2 use short 'type' names
ods15
parents: 17684
diff changeset
394 type= "v"
17669
cb73482267a0 info packet stuff, chapters...
ods15
parents: 17653
diff changeset
395 }
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
396 }
16506
1e42b8be5b7f add back_ptr
michael
parents: 16503
diff changeset
397
17326
a9e170085990 1) change date and goals slightly
ods15
parents: 17230
diff changeset
398 syncpoint:
17796
6edc4492b777 universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents: 17795
diff changeset
399 global_key_pts t
17800
7547340823a9 div8 -> div16
michael
parents: 17799
diff changeset
400 back_ptr_div16 v
12413
87a6dc69b65a proposals by rich:
michael
parents: 12392
diff changeset
401
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
402 Complete definition:
14854
ebc5136f2a56 some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents: 14471
diff changeset
403
ebc5136f2a56 some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents: 14471
diff changeset
404
16842
d977560c702b Reformat section titles so that it becomes easier to tell sections and
diego
parents: 16686
diff changeset
405 Tag description:
d977560c702b Reformat section titles so that it becomes easier to tell sections and
diego
parents: 16686
diff changeset
406 ----------------
14854
ebc5136f2a56 some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents: 14471
diff changeset
407
12242
f67bc1d216a1 file_id_string (idea by ivan)
michael
parents: 12238
diff changeset
408 file_id_string
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
409 "nut/multimedia container\0"
20822
684313be54f6 stream_count
michael
parents: 20780
diff changeset
410 the very first thing in every nut file, usefull for identifying nut
684313be54f6 stream_count
michael
parents: 20780
diff changeset
411 files
9323
774afe44f17b some more info (copy & pasted from ML)
michael
parents: 9312
diff changeset
412
774afe44f17b some more info (copy & pasted from ML)
michael
parents: 9312
diff changeset
413 *_startcode
20468
7fdcfb0dbc1d indentation fix
ods15
parents: 20460
diff changeset
414 all startcodes start with 'N'
12162
ab533510d598 remove old example stream
michael
parents: 12161
diff changeset
415
ab533510d598 remove old example stream
michael
parents: 12161
diff changeset
416 main_startcode
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
417 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
418
12162
ab533510d598 remove old example stream
michael
parents: 12161
diff changeset
419 stream_starcode
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
420 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
421
17326
a9e170085990 1) change date and goals slightly
ods15
parents: 17230
diff changeset
422 syncpoint_startcode
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
423 0xE4ADEECA4569ULL + (((uint64_t)('N'<<8) + 'K')<<48)
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
424
12162
ab533510d598 remove old example stream
michael
parents: 12161
diff changeset
425 index_startcode
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
426 0xDD672F23E64EULL + (((uint64_t)('N'<<8) + 'X')<<48)
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
427
12162
ab533510d598 remove old example stream
michael
parents: 12161
diff changeset
428 info_startcode
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
429 0xAB68B596BA78ULL + (((uint64_t)('N'<<8) + 'I')<<48)
9294
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
430
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
431 version
19056
36f993b7f91d freeze (this is pretty much oded shimons patch from a few month ago)
michael
parents: 18899
diff changeset
432 NUT version. The current value is 3. All lower values are pre-freeze
12238
a0ddf85bdee0 removing backward pointers
michael
parents: 12209
diff changeset
433
20822
684313be54f6 stream_count
michael
parents: 20780
diff changeset
434 stream_count
684313be54f6 stream_count
michael
parents: 20780
diff changeset
435 number of streams in this file
684313be54f6 stream_count
michael
parents: 20780
diff changeset
436
20823
507efc9b161b time_base_count
michael
parents: 20822
diff changeset
437 time_base_count
507efc9b161b time_base_count
michael
parents: 20822
diff changeset
438 number of different time bases in this file
507efc9b161b time_base_count
michael
parents: 20822
diff changeset
439 this MUST NOT be 0
507efc9b161b time_base_count
michael
parents: 20822
diff changeset
440
17439
f6e39517d5b6 cosmetic change, shift stuff around to more logical places
ods15
parents: 17438
diff changeset
441 forward_ptr
f6e39517d5b6 cosmetic change, shift stuff around to more logical places
ods15
parents: 17438
diff changeset
442 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
443 after the packet_header to the first byte of the next packet)
20822
684313be54f6 stream_count
michael
parents: 20780
diff changeset
444 every nut packet contains a forward_ptr immedeatly after its startcode
684313be54f6 stream_count
michael
parents: 20780
diff changeset
445 with the exception of frame_code based packets, the forward pointer
684313be54f6 stream_count
michael
parents: 20780
diff changeset
446 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
447
12333
80036bf4a9f5 remove frame types
michael
parents: 12297
diff changeset
448 max_distance
17944
db2c775fb2b9 max_distance clarification
ods15
parents: 17940
diff changeset
449 max distance between startcodes. If p1 and p2 are the byte
db2c775fb2b9 max_distance clarification
ods15
parents: 17940
diff changeset
450 positions of the first byte of two consecutive startcodes, then
db2c775fb2b9 max_distance clarification
ods15
parents: 17940
diff changeset
451 p2-p1 MUST be less than or equal to max_distance unless the entire
db2c775fb2b9 max_distance clarification
ods15
parents: 17940
diff changeset
452 span from p1 to p2 comprises a single packet or a syncpoint
db2c775fb2b9 max_distance clarification
ods15
parents: 17940
diff changeset
453 followed by a single frame. This imposition places efficient upper
db2c775fb2b9 max_distance clarification
ods15
parents: 17940
diff changeset
454 bounds on seek operations and allows for the detection of damaged
db2c775fb2b9 max_distance clarification
ods15
parents: 17940
diff changeset
455 frame headers, should a chain of frame headers pass max_distance
db2c775fb2b9 max_distance clarification
ods15
parents: 17940
diff changeset
456 without encountering any startcode.
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
457
17439
f6e39517d5b6 cosmetic change, shift stuff around to more logical places
ods15
parents: 17438
diff changeset
458 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
459 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
460 non-keyframe - keyframe transitions are very frequent
f6e39517d5b6 cosmetic change, shift stuff around to more logical places
ods15
parents: 17438
diff changeset
461
17722
6aa7f7e427a0 slightly better max_distance rule
michael
parents: 17720
diff changeset
462 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
463 if the stored value is >65536 then max_distance MUST be set to 65536
12501
cd0d9a99b730 remove index flag
michael
parents: 12428
diff changeset
464
17823
7f81c9ffa0b4 change max_distance back to 64kb and set max frame size to 2*max_distance.
ods15
parents: 17811
diff changeset
465 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
466 frameheader.
17799
02139a9b7c7b drop max_frame_size
michael
parents: 17798
diff changeset
467
02139a9b7c7b drop max_frame_size
michael
parents: 17798
diff changeset
468
17577
0f6b020f867d change checksum to crc32
ods15
parents: 17551
diff changeset
469 max_pts_distance
0f6b020f867d change checksum to crc32
ods15
parents: 17551
diff changeset
470 max absoloute difference of pts of new frame from last_pts in the
17944
db2c775fb2b9 max_distance clarification
ods15
parents: 17940
diff changeset
471 timebase of the stream, without a checksum after the frameheader.
db2c775fb2b9 max_distance clarification
ods15
parents: 17940
diff changeset
472 A frame header MUST include a checksum if abs(pts-last_pts) is
db2c775fb2b9 max_distance clarification
ods15
parents: 17940
diff changeset
473 strictly greater than max_pts_distance.
17711
8aa18d8e5eb6 add forward_ptr to syncpoint (+0.006% overhead)
michael
parents: 17710
diff changeset
474 Note that last_pts is not necessarily the pts of the last frame
17577
0f6b020f867d change checksum to crc32
ods15
parents: 17551
diff changeset
475 on the same stream, as it is altered by syncpoint timestamps.
17801
b16fbe54b2dc SHOULD NOT be higher than 1/timebase limit
michael
parents: 17800
diff changeset
476 SHOULD NOT be higher than 1/timebase
17577
0f6b020f867d change checksum to crc32
ods15
parents: 17551
diff changeset
477
16429
84174804804b Updates to NUT spec:
ods15
parents: 16428
diff changeset
478 stream_id
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
479 Stream identifier
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
480 stream_id MUST be < stream_count
9294
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
481
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
482 stream_class
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
483 0 video
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
484 1 audio
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
485 2 subtiles
17793
68d3692cfd47 push back userdata stream_class
ods15
parents: 17792
diff changeset
486 3 userdata
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
487 Note: the remaining values are reserved and MUST NOT be used
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
488 a demuxer MUST ignore streams with reserved classes
9294
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
489
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
490 fourcc
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
491 identification for the codec
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
492 example: "H264"
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
493 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
494 if needed
18899
676cd8ab1cff trying to end the codec id battle
michael
parents: 17944
diff changeset
495 the id values used are the same as in avi, so if a codec uses a specific
676cd8ab1cff trying to end the codec id battle
michael
parents: 17944
diff changeset
496 fourcc in avi then the same fourcc MUST be used here
9294
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
497
9297
8a19be9649e7 use fraction for time_base
michael
parents: 9296
diff changeset
498 time_base_nom / time_base_denom = time_base
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
499 the length of a timer tick in seconds, this MUST be equal to the 1/fps
17939
daa0fdad26ed switch to using vlc for stream_flags
ods15
parents: 17887
diff changeset
500 if FLAG_FIXED_FPS is set
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
501 time_base_nom and time_base_denom MUST NOT be 0
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
502 time_base_nom and time_base_denom MUST be relatively prime
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
503 time_base_denom MUST be < 2^31
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
504 examples:
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
505 fps time_base_nom time_base_denom
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
506 30 1 30
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
507 29.97 1001 30000
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
508 23.976 1001 24000
17883
063c90340a34 timebases guidelines
ods15
parents: 17873
diff changeset
509 There MUST NOT be 2 identical timebases in a file.
063c90340a34 timebases guidelines
ods15
parents: 17873
diff changeset
510 There SHOULD NOT be more timebases than streams.
9294
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
511
17872
a05b9e4da7b8 timebase table
ods15
parents: 17845
diff changeset
512 time_base_id
20829
60754557f39a clearer time_base_id description
michael
parents: 20823
diff changeset
513 index into the time_base table
20836
3670220d2511 s/by/be/
michael
parents: 20830
diff changeset
514 MUST be < time_base_count
17872
a05b9e4da7b8 timebase table
ods15
parents: 17845
diff changeset
515
17328
33b03e1e4170 1) remove global_timebase
ods15
parents: 17327
diff changeset
516 convert_ts
33b03e1e4170 1) remove global_timebase
ods15
parents: 17327
diff changeset
517 To switch from 2 different timebases, the following calculation is
33b03e1e4170 1) remove global_timebase
ods15
parents: 17327
diff changeset
518 defined:
12413
87a6dc69b65a proposals by rich:
michael
parents: 12392
diff changeset
519
17328
33b03e1e4170 1) remove global_timebase
ods15
parents: 17327
diff changeset
520 ln = from_time_base_nom*to_time_base_denom
33b03e1e4170 1) remove global_timebase
ods15
parents: 17327
diff changeset
521 sn = from_timestamp
33b03e1e4170 1) remove global_timebase
ods15
parents: 17327
diff changeset
522 d1 = from_time_base_denom
33b03e1e4170 1) remove global_timebase
ods15
parents: 17327
diff changeset
523 d2 = to_time_base_nom
33b03e1e4170 1) remove global_timebase
ods15
parents: 17327
diff changeset
524 timestamp = (ln/d1*sn + ln%d1*sn/d1)/d2
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
525 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
526 is equivalent to (ln*sn)/(d1*d2) but this would require a 96bit integer
12413
87a6dc69b65a proposals by rich:
michael
parents: 12392
diff changeset
527
17532
724816ab19be add compare_ts
ods15
parents: 17531
diff changeset
528 compare_ts
724816ab19be add compare_ts
ods15
parents: 17531
diff changeset
529 Compares timestamps from 2 different timebases,
724816ab19be add compare_ts
ods15
parents: 17531
diff changeset
530 if a is before b then compare_ts(a, b) = -1
724816ab19be add compare_ts
ods15
parents: 17531
diff changeset
531 if a is after b then compare_ts(a, b) = 1
724816ab19be add compare_ts
ods15
parents: 17531
diff changeset
532 else compare_ts(a, b) = 0
724816ab19be add compare_ts
ods15
parents: 17531
diff changeset
533
724816ab19be add compare_ts
ods15
parents: 17531
diff changeset
534 Care must be taken that this is done exactly with no rounding errors,
724816ab19be add compare_ts
ods15
parents: 17531
diff changeset
535 simply casting to float or double and doing the obvious
724816ab19be add compare_ts
ods15
parents: 17531
diff changeset
536 a*timebase > b*timebase is not compliant or correct, neither is the
724816ab19be add compare_ts
ods15
parents: 17531
diff changeset
537 same with integers, and
724816ab19be add compare_ts
ods15
parents: 17531
diff changeset
538 a*a_timebase.num*b_timebase.den > b*b_timebase.num*a_timebase.den
724816ab19be add compare_ts
ods15
parents: 17531
diff changeset
539 will overflow. One possible implementation which shouldn't overflow
724816ab19be add compare_ts
ods15
parents: 17531
diff changeset
540 within the range of legal timestamps and timebases is:
724816ab19be add compare_ts
ods15
parents: 17531
diff changeset
541
724816ab19be add compare_ts
ods15
parents: 17531
diff changeset
542 if (convert_ts(a, a_timebase, b_timebase) < b) return -1;
724816ab19be add compare_ts
ods15
parents: 17531
diff changeset
543 if (convert_ts(b, b_timebase, a_timebase) < a) return 1;
724816ab19be add compare_ts
ods15
parents: 17531
diff changeset
544 return 0;
724816ab19be add compare_ts
ods15
parents: 17531
diff changeset
545
16429
84174804804b Updates to NUT spec:
ods15
parents: 16428
diff changeset
546 msb_pts_shift
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
547 amount of bits in lsb_pts
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
548 MUST be <16
9294
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
549
12333
80036bf4a9f5 remove frame types
michael
parents: 12297
diff changeset
550 decode_delay
20870
01f57f7226de pts definition by mans
michael
parents: 20846
diff changeset
551 size of the reordering buffer used to convert pts to dts
01f57f7226de pts definition by mans
michael
parents: 20846
diff changeset
552 codecs which dont support b frames normaly use 0
01f57f7226de pts definition by mans
michael
parents: 20846
diff changeset
553 mpeg1/mpeg2 style codecs with b frames use 1
01f57f7226de pts definition by mans
michael
parents: 20846
diff changeset
554 h264 style b pyramid uses 2
01f57f7226de pts definition by mans
michael
parents: 20846
diff changeset
555 h264 and future codecs might need values >2
01f57f7226de pts definition by mans
michael
parents: 20846
diff changeset
556 audio codecs generally use 0 (we arent aware of any which doesnt
01f57f7226de pts definition by mans
michael
parents: 20846
diff changeset
557 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
558 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
559
17939
daa0fdad26ed switch to using vlc for stream_flags
ods15
parents: 17887
diff changeset
560 stream_flags
daa0fdad26ed switch to using vlc for stream_flags
ods15
parents: 17887
diff changeset
561 Bit Name Description
daa0fdad26ed switch to using vlc for stream_flags
ods15
parents: 17887
diff changeset
562 1 FLAG_FIXED_FPS indicates that the fps is fixed
9294
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
563
9356
025a25987ac0 simplification
michael
parents: 9350
diff changeset
564 codec_specific_data
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
565 private global data for a codec (could be huffman tables or ...)
19105
4c979c32f5cc clarify "extradata"
michael
parents: 19057
diff changeset
566 if a codec has a global header it SHOULD be placed in here instead of
4c979c32f5cc clarify "extradata"
michael
parents: 19057
diff changeset
567 at the start of every keyframe
4c979c32f5cc clarify "extradata"
michael
parents: 19057
diff changeset
568 the exact format is specified in the codec spec
19121
806b3b97086f clarify H.264 global header format
michael
parents: 19105
diff changeset
569 for H.264 the NAL units MUST be formated as in a bytestream
806b3b97086f clarify H.264 global header format
michael
parents: 19105
diff changeset
570 (with 00 00 01 prefixes)
12082
f705b0777572 removing subpackets (everyone hates them ...)
michael
parents: 11975
diff changeset
571
f705b0777572 removing subpackets (everyone hates them ...)
michael
parents: 11975
diff changeset
572 frame_code
20775
05159ef5282e clearer frame_code explanation
michael
parents: 20772
diff changeset
573 frame_code is a 8bit field which exists before every frame, it can
05159ef5282e clearer frame_code explanation
michael
parents: 20772
diff changeset
574 store part of the size of the frame, the stream number, the timestamp
05159ef5282e clearer frame_code explanation
michael
parents: 20772
diff changeset
575 and some flags amongth other things, what is not directly stored
05159ef5282e clearer frame_code explanation
michael
parents: 20772
diff changeset
576 in it but is needed is stored in various fields immedeatly after it
05159ef5282e clearer frame_code explanation
michael
parents: 20772
diff changeset
577 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
578 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
579 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
580 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
581 detection
9420
8a1a8f5e9c91 variable subpacket size support
michael
parents: 9373
diff changeset
582
17718
86bcb118eab1 simplify flags
michael
parents: 17714
diff changeset
583 flags[frame_code], frame_flags
17940
0436e8344ee4 cosmetic, table align
ods15
parents: 17939
diff changeset
584 Bit Name Description
17809
abf69918ec6c move bit flags to be more convinient...
ods15
parents: 17808
diff changeset
585 1 FLAG_KEY if set, frame is keyframe
abf69918ec6c move bit flags to be more convinient...
ods15
parents: 17808
diff changeset
586 2 FLAG_EOR if set, stream has no relevance on
17824
c3429282c9a8 10l to me, misarrangment of flags
ods15
parents: 17823
diff changeset
587 presentation. (EOR)
17887
f20bba087cc8 flags cleanup
michael
parents: 17883
diff changeset
588 8 FLAG_CODED_PTS if set, coded_pts is in the frame header
f20bba087cc8 flags cleanup
michael
parents: 17883
diff changeset
589 16 FLAG_STREAM_ID if set, stream_id is coded in the frame header
17809
abf69918ec6c move bit flags to be more convinient...
ods15
parents: 17808
diff changeset
590 32 FLAG_SIZE_MSB if set, data_size_msb is at frame header,
abf69918ec6c move bit flags to be more convinient...
ods15
parents: 17808
diff changeset
591 otherwise data_size_msb is 0
abf69918ec6c move bit flags to be more convinient...
ods15
parents: 17808
diff changeset
592 64 FLAG_CHECKSUM if set then the frame header contains a checksum
17887
f20bba087cc8 flags cleanup
michael
parents: 17883
diff changeset
593 128 FLAG_RESERVED if set, reserved_count is coded in the frame header
17809
abf69918ec6c move bit flags to be more convinient...
ods15
parents: 17808
diff changeset
594 4096 FLAG_CODED if set, coded_flags are stored in the frame header.
abf69918ec6c move bit flags to be more convinient...
ods15
parents: 17808
diff changeset
595 8192 FLAG_INVALID if set, frame_code is invalid.
17437
e2f2a8ac648a bump date
ods15
parents: 17330
diff changeset
596
e2f2a8ac648a bump date
ods15
parents: 17330
diff changeset
597 EOR frames MUST be zero-length and must be set keyframe.
e2f2a8ac648a bump date
ods15
parents: 17330
diff changeset
598 All streams SHOULD end with EOR, where the pts of the EOR indicates the
e2f2a8ac648a bump date
ods15
parents: 17330
diff changeset
599 end presentation time of the final frame.
e2f2a8ac648a bump date
ods15
parents: 17330
diff changeset
600 An EOR set stream is unset by the first content frames.
17551
6c3ca4e1fceb EOR can only be (un)set for non delayed streams.
ods15
parents: 17547
diff changeset
601 EOR can only be unset in streams with zero decode_delay .
17944
db2c775fb2b9 max_distance clarification
ods15
parents: 17940
diff changeset
602 FLAG_CHECKSUM MUST be set if the frame's data_size is strictly greater than
db2c775fb2b9 max_distance clarification
ods15
parents: 17940
diff changeset
603 2*max_distance or the difference abs(pts-last_pts) is strictly greater than
db2c775fb2b9 max_distance clarification
ods15
parents: 17940
diff changeset
604 max_pts_distance (where pts represents this frame's pts and last_pts is
db2c775fb2b9 max_distance clarification
ods15
parents: 17940
diff changeset
605 defined as below).
12110
a34dc5a369ca restrictions to ensure that O(log n) seeking and error recovery is possible
michael
parents: 12084
diff changeset
606
20460
0feb44107cdf clarify pts related stuff
michael
parents: 19123
diff changeset
607 last_pts
0feb44107cdf clarify pts related stuff
michael
parents: 19123
diff changeset
608 the timestamp of the last frame with the same stream_id as the current
0feb44107cdf clarify pts related stuff
michael
parents: 19123
diff changeset
609 if there is no such frame between the last syncpoint and the current
0feb44107cdf clarify pts related stuff
michael
parents: 19123
diff changeset
610 frame then the syncpoint timestamp is used, see global_key_pts
0feb44107cdf clarify pts related stuff
michael
parents: 19123
diff changeset
611
17887
f20bba087cc8 flags cleanup
michael
parents: 17883
diff changeset
612 stream_id[frame_code]
20778
2581bc30a279 size and stream_id docs
michael
parents: 20775
diff changeset
613 if FLAG_STREAM_ID is not set then this is the stream number for the
2581bc30a279 size and stream_id docs
michael
parents: 20775
diff changeset
614 frame following this frame_code
2581bc30a279 size and stream_id docs
michael
parents: 20775
diff changeset
615 if FLAG_STREAM_ID is set then this value has no meaning
17826
05cfdab43e96 revert last change
ods15
parents: 17825
diff changeset
616 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
617
12082
f705b0777572 removing subpackets (everyone hates them ...)
michael
parents: 11975
diff changeset
618 data_size_mul[frame_code]
20778
2581bc30a279 size and stream_id docs
michael
parents: 20775
diff changeset
619 if FLAG_SIZE_MSB is set then data_size_msb which is stored after the
2581bc30a279 size and stream_id docs
michael
parents: 20775
diff changeset
620 frame code is multiplied with it and forms the more significant part
2581bc30a279 size and stream_id docs
michael
parents: 20775
diff changeset
621 of the size of the following frame
2581bc30a279 size and stream_id docs
michael
parents: 20775
diff changeset
622 if FLAG_SIZE_MSB is not set then this field has no meaning
17826
05cfdab43e96 revert last change
ods15
parents: 17825
diff changeset
623 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
624
12082
f705b0777572 removing subpackets (everyone hates them ...)
michael
parents: 11975
diff changeset
625 data_size_lsb[frame_code]
20778
2581bc30a279 size and stream_id docs
michael
parents: 20775
diff changeset
626 the less significant part of the size of the following frame
2581bc30a279 size and stream_id docs
michael
parents: 20775
diff changeset
627 this added together with data_size_mul*data_size_msb is the size of
2581bc30a279 size and stream_id docs
michael
parents: 20775
diff changeset
628 the following frame
17826
05cfdab43e96 revert last change
ods15
parents: 17825
diff changeset
629 MUST be <16384
12082
f705b0777572 removing subpackets (everyone hates them ...)
michael
parents: 11975
diff changeset
630
16429
84174804804b Updates to NUT spec:
ods15
parents: 16428
diff changeset
631 pts_delta[frame_code]
17826
05cfdab43e96 revert last change
ods15
parents: 17825
diff changeset
632 MUST be <16384 and >-16384
20460
0feb44107cdf clarify pts related stuff
michael
parents: 19123
diff changeset
633 if FLAG_CODED_PTS is set in the flags of the current frame then this
0feb44107cdf clarify pts related stuff
michael
parents: 19123
diff changeset
634 value MUST be ignored, if FLAG_CODED_PTS is not set then pts_delta is the
0feb44107cdf clarify pts related stuff
michael
parents: 19123
diff changeset
635 difference between the current pts and last_pts
12413
87a6dc69b65a proposals by rich:
michael
parents: 12392
diff changeset
636
17640
6b69c5b4b92a more cosmetics
ods15
parents: 17639
diff changeset
637 reserved_count[frame_code]
17825
2a20b0884be8 better max for frame code values, still allowing compact implementation
ods15
parents: 17824
diff changeset
638 MUST be <256
17640
6b69c5b4b92a more cosmetics
ods15
parents: 17639
diff changeset
639
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
640 data_size
20778
2581bc30a279 size and stream_id docs
michael
parents: 20775
diff changeset
641 the size of the following frame
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
642 data_size= data_size_lsb + data_size_msb*data_size_mul;
12082
f705b0777572 removing subpackets (everyone hates them ...)
michael
parents: 11975
diff changeset
643
16429
84174804804b Updates to NUT spec:
ods15
parents: 16428
diff changeset
644 coded_pts
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
645 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
646 pts, otherwise it is a full pts + (1<<msb_pts_shift)
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
647 lsb pts is converted to a full pts by:
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
648 mask = (1<<msb_pts_shift)-1;
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
649 delta = last_pts - mask/2
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
650 pts = ((pts_lsb-delta)&mask) + delta
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
651
16429
84174804804b Updates to NUT spec:
ods15
parents: 16428
diff changeset
652 lsb_pts
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
653 least significant bits of the pts in time_base precision
9294
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
654 Example: IBBP display order
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
655 keyframe pts=0 -> pts=0
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
656 frame lsb_pts=3 -> pts=3
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
657 frame lsb_pts=1 -> pts=1
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
658 frame lsb_pts=2 -> pts=2
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
659 ...
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
660 keyframe msb_pts=257 -> pts=257
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
661 frame lsb_pts=255 -> pts=255
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
662 frame lsb_pts=0 -> pts=256
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
663 frame lsb_pts=4 -> pts=260
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
664 frame lsb_pts=2 -> pts=258
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
665 frame lsb_pts=3 -> pts=259
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
666 all pts's of keyframes of a single stream MUST be monotone
9294
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
667
12333
80036bf4a9f5 remove frame types
michael
parents: 12297
diff changeset
668 dts
20780
e8cd0590bf97 dts, width/height explanation
michael
parents: 20778
diff changeset
669 decoding timestamp
e8cd0590bf97 dts, width/height explanation
michael
parents: 20778
diff changeset
670 the dts of a frame is the timestamp of the first sample which is
e8cd0590bf97 dts, width/height explanation
michael
parents: 20778
diff changeset
671 output by a decoder when it is feeded with the frame, note that the
e8cd0590bf97 dts, width/height explanation
michael
parents: 20778
diff changeset
672 data output is not neccesarily what is coded in the frame, but may
e8cd0590bf97 dts, width/height explanation
michael
parents: 20778
diff changeset
673 be data from previous frames
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
674 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
675 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
676 the smallest value is removed, this is then the current dts
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
677 this buffer is initalized with decode_delay -1 elements
17327
2a1cc9c01f64 MN rule
ods15
parents: 17326
diff changeset
678
2a1cc9c01f64 MN rule
ods15
parents: 17326
diff changeset
679 Pts of all frames in all streams MUST be bigger or equal to dts of all
17437
e2f2a8ac648a bump date
ods15
parents: 17330
diff changeset
680 previous frames in all streams, compared in common timebase. (EOR
e2f2a8ac648a bump date
ods15
parents: 17330
diff changeset
681 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
682 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
683 in the same stream
12333
80036bf4a9f5 remove frame types
michael
parents: 12297
diff changeset
684
9294
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
685 width/height
20780
e8cd0590bf97 dts, width/height explanation
michael
parents: 20778
diff changeset
686 width and height of the video in pixels
17730
a0d4f253e82b cosmetics, rename max_size to max_frame_size
ods15
parents: 17726
diff changeset
687 MUST be set to the coded width/height, MUST NOT be 0
9294
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
688
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
689 sample_width/sample_height (aspect ratio)
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
690 sample_width is the horizontal distance between samples
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
691 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
692 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
693
10158
93e5428d0b3e some changes (michael: is the colorspace_type field needed?)
alex
parents: 10061
diff changeset
694 colorspace_type
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
695 0 unknown
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
696 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
697 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
698 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
699 18 ITU Rec 709 Y range: 0..255 Cb/Cr range: 0..255
10166
e860465ef46e colorspace_type
michael
parents: 10158
diff changeset
700
12333
80036bf4a9f5 remove frame types
michael
parents: 12297
diff changeset
701 samplerate_nom / samplerate_denom = samplerate
17730
a0d4f253e82b cosmetics, rename max_size to max_frame_size
ods15
parents: 17726
diff changeset
702 the number of samples per second, MUST NOT be 0
9294
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
703
17683
39f67ee74bfe CRC32 stuff
ods15
parents: 17671
diff changeset
704 crc32 checksum
17710
9a976f1550f1 leading coeff for crc polynom
michael
parents: 17709
diff changeset
705 Generator polynomial is 0x104C11DB7. Starting value is zero.
17683
39f67ee74bfe CRC32 stuff
ods15
parents: 17671
diff changeset
706
9294
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
707 checksum
17577
0f6b020f867d change checksum to crc32
ods15
parents: 17551
diff changeset
708 crc32 checksum
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
709 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
710 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
711 packet_header until last byte before the checksum).
17711
8aa18d8e5eb6 add forward_ptr to syncpoint (+0.006% overhead)
michael
parents: 17710
diff changeset
712 for frame headers the checksum contains the framecode byte and all
8aa18d8e5eb6 add forward_ptr to syncpoint (+0.006% overhead)
michael
parents: 17710
diff changeset
713 following bytes upto the checksum itself
9294
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
714
17792
fd980f31fbc2 header_checksum
michael
parents: 17773
diff changeset
715 header_checksum
fd980f31fbc2 header_checksum
michael
parents: 17773
diff changeset
716 checksum over the startcode and forward pointer
fd980f31fbc2 header_checksum
michael
parents: 17773
diff changeset
717
17640
6b69c5b4b92a more cosmetics
ods15
parents: 17639
diff changeset
718 Syncpoint tags:
6b69c5b4b92a more cosmetics
ods15
parents: 17639
diff changeset
719 ---------------
6b69c5b4b92a more cosmetics
ods15
parents: 17639
diff changeset
720
17800
7547340823a9 div8 -> div16
michael
parents: 17799
diff changeset
721 back_ptr_div16
7547340823a9 div8 -> div16
michael
parents: 17799
diff changeset
722 back_ptr = back_ptr_div16 * 16 + 15
7547340823a9 div8 -> div16
michael
parents: 17799
diff changeset
723 back_ptr must point to a position within 16 bytes of a syncpoint
17439
f6e39517d5b6 cosmetic change, shift stuff around to more logical places
ods15
parents: 17438
diff changeset
724 startcode. This syncpoint MUST be the closest syncpoint such that at
f6e39517d5b6 cosmetic change, shift stuff around to more logical places
ods15
parents: 17438
diff changeset
725 least one keyframe with a pts lower or equal to the original syncpoint's
f6e39517d5b6 cosmetic change, shift stuff around to more logical places
ods15
parents: 17438
diff changeset
726 global_key_pts for all streams lies between it and the current syncpoint.
f6e39517d5b6 cosmetic change, shift stuff around to more logical places
ods15
parents: 17438
diff changeset
727
f6e39517d5b6 cosmetic change, shift stuff around to more logical places
ods15
parents: 17438
diff changeset
728 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
729
f6e39517d5b6 cosmetic change, shift stuff around to more logical places
ods15
parents: 17438
diff changeset
730 global_key_pts
f6e39517d5b6 cosmetic change, shift stuff around to more logical places
ods15
parents: 17438
diff changeset
731 After a syncpoint, last_pts of each stream is to be set to:
17872
a05b9e4da7b8 timebase table
ods15
parents: 17845
diff changeset
732 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
733
f6e39517d5b6 cosmetic change, shift stuff around to more logical places
ods15
parents: 17438
diff changeset
734 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
735 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
736
17640
6b69c5b4b92a more cosmetics
ods15
parents: 17639
diff changeset
737 Index tags:
6b69c5b4b92a more cosmetics
ods15
parents: 17639
diff changeset
738 -----------
6b69c5b4b92a more cosmetics
ods15
parents: 17639
diff changeset
739
16429
84174804804b Updates to NUT spec:
ods15
parents: 16428
diff changeset
740 max_pts
17796
6edc4492b777 universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents: 17795
diff changeset
741 The highest pts in the entire file
9294
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
742
17800
7547340823a9 div8 -> div16
michael
parents: 17799
diff changeset
743 syncpoint_pos_div16
7547340823a9 div8 -> div16
michael
parents: 17799
diff changeset
744 offset from begginning of file to up to 15 bytes before the syncpoint
17438
81d2f40ce5d4 change goals slightly..
ods15
parents: 17437
diff changeset
745 referred to in this index entry. Relative to position of last
81d2f40ce5d4 change goals slightly..
ods15
parents: 17437
diff changeset
746 syncpoint.
81d2f40ce5d4 change goals slightly..
ods15
parents: 17437
diff changeset
747
81d2f40ce5d4 change goals slightly..
ods15
parents: 17437
diff changeset
748 has_keyframe
81d2f40ce5d4 change goals slightly..
ods15
parents: 17437
diff changeset
749 indicates whether this stream has a keyframe between this syncpoint and
81d2f40ce5d4 change goals slightly..
ods15
parents: 17437
diff changeset
750 the last syncpoint.
81d2f40ce5d4 change goals slightly..
ods15
parents: 17437
diff changeset
751
81d2f40ce5d4 change goals slightly..
ods15
parents: 17437
diff changeset
752 keyframe_pts
81d2f40ce5d4 change goals slightly..
ods15
parents: 17437
diff changeset
753 The pts of the first keyframe for this stream in the region between the
17531
c6ad2343ec16 EOR in index
ods15
parents: 17491
diff changeset
754 2 syncpoints, in the stream's timebase. (EOR frames are also keyframes)
c6ad2343ec16 EOR in index
ods15
parents: 17491
diff changeset
755
c6ad2343ec16 EOR in index
ods15
parents: 17491
diff changeset
756 eor_pts
c6ad2343ec16 EOR in index
ods15
parents: 17491
diff changeset
757 Coded only if EOR is set at the position of the syncpoint. The pts of
c6ad2343ec16 EOR in index
ods15
parents: 17491
diff changeset
758 that EOR. EOR is unset by the first keyframe after it.
9294
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
759
16429
84174804804b Updates to NUT spec:
ods15
parents: 16428
diff changeset
760 index_ptr
17726
541738aa3079 return index_ptr to inside index
ods15
parents: 17723
diff changeset
761 Length in bytes of the entire index, from the first byte of the
541738aa3079 return index_ptr to inside index
ods15
parents: 17723
diff changeset
762 startcode until the last byte of the checksum.
541738aa3079 return index_ptr to inside index
ods15
parents: 17723
diff changeset
763 Note: A demuxer can use this to find the index when it is written at
541738aa3079 return index_ptr to inside index
ods15
parents: 17723
diff changeset
764 EOF, as index_ptr will always be 12 bytes before the end of file if
541738aa3079 return index_ptr to inside index
ods15
parents: 17723
diff changeset
765 there is an index at all.
541738aa3079 return index_ptr to inside index
ods15
parents: 17723
diff changeset
766
16429
84174804804b Updates to NUT spec:
ods15
parents: 16428
diff changeset
767
17640
6b69c5b4b92a more cosmetics
ods15
parents: 17639
diff changeset
768 Info tags:
6b69c5b4b92a more cosmetics
ods15
parents: 17639
diff changeset
769 ----------
6b69c5b4b92a more cosmetics
ods15
parents: 17639
diff changeset
770
17669
cb73482267a0 info packet stuff, chapters...
ods15
parents: 17653
diff changeset
771 stream_id_plus1
cb73482267a0 info packet stuff, chapters...
ods15
parents: 17653
diff changeset
772 Stream this info packet applies to. If zero, packet applies to whole
cb73482267a0 info packet stuff, chapters...
ods15
parents: 17653
diff changeset
773 file.
cb73482267a0 info packet stuff, chapters...
ods15
parents: 17653
diff changeset
774
cb73482267a0 info packet stuff, chapters...
ods15
parents: 17653
diff changeset
775 chapter_id
cb73482267a0 info packet stuff, chapters...
ods15
parents: 17653
diff changeset
776 Id of chapter this packet applies to. If zero, packet applies to whole
cb73482267a0 info packet stuff, chapters...
ods15
parents: 17653
diff changeset
777 file. Positive chapter_id's are real chapters and MUST NOT overlap.
cb73482267a0 info packet stuff, chapters...
ods15
parents: 17653
diff changeset
778 Negative chapter_id indicate a sub region of file and not a real
cb73482267a0 info packet stuff, chapters...
ods15
parents: 17653
diff changeset
779 chapter. chapter_id MUST be unique to the region it represents.
17711
8aa18d8e5eb6 add forward_ptr to syncpoint (+0.006% overhead)
michael
parents: 17710
diff changeset
780 chapter_id n MUST not be used unless there are at least n chapters in the
8aa18d8e5eb6 add forward_ptr to syncpoint (+0.006% overhead)
michael
parents: 17710
diff changeset
781 file
17669
cb73482267a0 info packet stuff, chapters...
ods15
parents: 17653
diff changeset
782
cb73482267a0 info packet stuff, chapters...
ods15
parents: 17653
diff changeset
783 chapter_start
17796
6edc4492b777 universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents: 17795
diff changeset
784 timestamp of start of chapter
17669
cb73482267a0 info packet stuff, chapters...
ods15
parents: 17653
diff changeset
785
cb73482267a0 info packet stuff, chapters...
ods15
parents: 17653
diff changeset
786 chapter_len
cb73482267a0 info packet stuff, chapters...
ods15
parents: 17653
diff changeset
787 Length of chapter in same timebase of chapter_start.
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
788
9323
774afe44f17b some more info (copy & pasted from ML)
michael
parents: 9312
diff changeset
789 type
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
790 for example: "UTF8" -> string or "JPEG" -> JPEG image
17685
ac0534e8c3d2 use short 'type' names
ods15
parents: 17684
diff changeset
791 "v" -> unsigned integer
ac0534e8c3d2 use short 'type' names
ods15
parents: 17684
diff changeset
792 "s" -> signed integer
ac0534e8c3d2 use short 'type' names
ods15
parents: 17684
diff changeset
793 "r" -> rational
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
794 Note: nonstandard fields should be prefixed by "X-"
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
795 Note: MUST be less than 6 byte long (might be increased to 64 later)
9323
774afe44f17b some more info (copy & pasted from ML)
michael
parents: 9312
diff changeset
796
13308
8ff17d153414 info packet is now file global, while meta pakcet is stream specific, as discussed with Rich
alex
parents: 13047
diff changeset
797 info packet types
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
798 the name of the info entry, valid names are
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
799 "Author"
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
800 "Description"
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
801 "Copyright"
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
802 "Encoder"
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
803 the name & version of the software used for encoding
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
804 "Title"
17669
cb73482267a0 info packet stuff, chapters...
ods15
parents: 17653
diff changeset
805 "Cover" (allowed types are "PNG" and "JPEG")
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
806 image of the (CD, DVD, VHS, ..) cover (preferably PNG or JPEG)
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
807 "Source"
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
808 "DVD", "VCD", "CD", "MD", "FM radio", "VHS", "TV", "LD"
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
809 Optional: appended PAL, NTSC, SECAM, ... in parentheses
18899
676cd8ab1cff trying to end the codec id battle
michael
parents: 17944
diff changeset
810 "SourceContainer"
676cd8ab1cff trying to end the codec id battle
michael
parents: 17944
diff changeset
811 "nut", "mkv", "mov", "avi", "ogg", "rm", "mpeg-ps", "mpeg-ts", "raw"
676cd8ab1cff trying to end the codec id battle
michael
parents: 17944
diff changeset
812 "SourceCodecTag"
676cd8ab1cff trying to end the codec id battle
michael
parents: 17944
diff changeset
813 the source codec id like a fourcc which was used to store a specific
676cd8ab1cff trying to end the codec id battle
michael
parents: 17944
diff changeset
814 stream in its SourceContainer
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
815 "CaptureDevice"
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
816 "BT878", "BT848", "webcam", ... (more exact names are fine too)
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
817 "CreationTime"
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
818 "2003-01-20 20:13:15Z", ...
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
819 (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
820 Note: do not forget the timezone
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
821 "Keywords"
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
822 "Language"
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
823 ISO 639 and ISO 3166 for language/country code
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
824 something like "eng" (US english), can be 0 if unknown
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
825 and "multi" if several languages
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
826 see http://www.loc.gov/standards/iso639-2/englangn.html
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
827 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
828 the language code
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
829 "Disposition"
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
830 "original", "dub" (translated), "comment", "lyrics", "karaoke"
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
831 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
832 can add them to the official standard (if they are sane)
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
833 Note: nonstandard fields should be prefixed by "X-"
17686
eadca2812177 cosmetic, trailing whitespace
ods15
parents: 17685
diff changeset
834 Note: names of fields SHOULD be in English if a word with the same
17653
9ef8d2944c21 fields should be in english...
ods15
parents: 17640
diff changeset
835 meaning exists in English
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
836 Note: MUST be less than 64 bytes long
9295
michael
parents: 9294
diff changeset
837
michael
parents: 9294
diff changeset
838 value
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
839 value of this name/type pair
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
840
9310
b16480522be9 some typos
michael
parents: 9307
diff changeset
841 stuffing
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
842 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
843 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
844 maximum of 8 stuffing bytes per field are allowed
9294
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
845
16842
d977560c702b Reformat section titles so that it becomes easier to tell sections and
diego
parents: 16686
diff changeset
846
d977560c702b Reformat section titles so that it becomes easier to tell sections and
diego
parents: 16686
diff changeset
847 Structure:
d977560c702b Reformat section titles so that it becomes easier to tell sections and
diego
parents: 16686
diff changeset
848 ----------
9294
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
849
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
850 the headers MUST be in exactly the following order (to simplify demuxer design)
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
851 main header
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
852 stream_header (id=0)
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
853 stream_header (id=1)
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
854 ...
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
855 stream_header (id=n)
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
856
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
857 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
858 together and repeated headers MUST be identical
17547
114699930136 Allow headers to be repeated anywhere
ods15
parents: 17533
diff changeset
859
114699930136 Allow headers to be repeated anywhere
ods15
parents: 17533
diff changeset
860 Each set of repeated headers not at the beginning or end of the file SHOULD
114699930136 Allow headers to be repeated anywhere
ods15
parents: 17533
diff changeset
861 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
862 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
863 the closest position after 2^12=4096 at which the headers can be placed
9294
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
864
17547
114699930136 Allow headers to be repeated anywhere
ods15
parents: 17533
diff changeset
865 Note: this allows an implementation reading the file to locate backup
114699930136 Allow headers to be repeated anywhere
ods15
parents: 17533
diff changeset
866 headers in O(log filesize) time as opposed to O(filesize)
114699930136 Allow headers to be repeated anywhere
ods15
parents: 17533
diff changeset
867
15008
0a43341c8bfd less amateurish-looking mpcf.txt patch by (Jeff >snacky ikaruga co uk<)
michael
parents: 14919
diff changeset
868 headers MUST be placed at least at the start of the file and immediately before
12501
cd0d9a99b730 remove index flag
michael
parents: 12428
diff changeset
869 the index or at the file end if there is no index
16428
5f4317692b7c spelling/grammar/wording
diego
parents: 15755
diff changeset
870 headers MUST be repeated at least twice (so they exist three times in a file)
9295
michael
parents: 9294
diff changeset
871
16685
diego
parents: 16574
diff changeset
872 there MUST be a sync point immediately before the first frame after any headers
12503
a160a68209ac disposition
michael
parents: 12502
diff changeset
873
16842
d977560c702b Reformat section titles so that it becomes easier to tell sections and
diego
parents: 16686
diff changeset
874
d977560c702b Reformat section titles so that it becomes easier to tell sections and
diego
parents: 16686
diff changeset
875 Index:
d977560c702b Reformat section titles so that it becomes easier to tell sections and
diego
parents: 16686
diff changeset
876 ------
d977560c702b Reformat section titles so that it becomes easier to tell sections and
diego
parents: 16686
diff changeset
877
15008
0a43341c8bfd less amateurish-looking mpcf.txt patch by (Jeff >snacky ikaruga co uk<)
michael
parents: 14919
diff changeset
878 Note: with realtime streaming, there is no end, so no index there either
17533
86a9a60ef596 Index repetition
ods15
parents: 17532
diff changeset
879 Index MAY only be repeated after main headers.
17726
541738aa3079 return index_ptr to inside index
ods15
parents: 17723
diff changeset
880 If an index is written anywhere in the file, it MUST be written at end of
541738aa3079 return index_ptr to inside index
ods15
parents: 17723
diff changeset
881 file as well.
9310
b16480522be9 some typos
michael
parents: 9307
diff changeset
882
16842
d977560c702b Reformat section titles so that it becomes easier to tell sections and
diego
parents: 16686
diff changeset
883
17669
cb73482267a0 info packet stuff, chapters...
ods15
parents: 17653
diff changeset
884 Info:
cb73482267a0 info packet stuff, chapters...
ods15
parents: 17653
diff changeset
885 -----
cb73482267a0 info packet stuff, chapters...
ods15
parents: 17653
diff changeset
886
20922
e53110c2d071 revert last 2 commits on nut.txt
ods15
parents: 20911
diff changeset
887 If a info packet is stored anywhere then a muxer MUST also store an identical
17771
af02066c0706 remove info streams
michael
parents: 17730
diff changeset
888 info packet after every main-stream-header set
9310
b16480522be9 some typos
michael
parents: 9307
diff changeset
889
17771
af02066c0706 remove info streams
michael
parents: 17730
diff changeset
890 If a demuxer has seen several info packets with the same chapter_id and
af02066c0706 remove info streams
michael
parents: 17730
diff changeset
891 stream_id then it MUST ignore all but the one with the highest position in
af02066c0706 remove info streams
michael
parents: 17730
diff changeset
892 the file
17669
cb73482267a0 info packet stuff, chapters...
ods15
parents: 17653
diff changeset
893
20650
9003bae9e510 SHOULD not -> SHOULD NOT
ods15
parents: 20649
diff changeset
894 demxuxers 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
895
d977560c702b Reformat section titles so that it becomes easier to tell sections and
diego
parents: 16686
diff changeset
896 demuxer (non-normative):
d977560c702b Reformat section titles so that it becomes easier to tell sections and
diego
parents: 16686
diff changeset
897 ------------------------
12501
cd0d9a99b730 remove index flag
michael
parents: 12428
diff changeset
898
16428
5f4317692b7c spelling/grammar/wording
diego
parents: 15755
diff changeset
899 in the absence of a valid header at the beginning, players SHOULD search for
5f4317692b7c spelling/grammar/wording
diego
parents: 15755
diff changeset
900 backup headers starting at offset 2^x; for each x players SHOULD end their
5f4317692b7c spelling/grammar/wording
diego
parents: 15755
diff changeset
901 search at a particular offset when any startcode is found (including syncpoint)
12501
cd0d9a99b730 remove index flag
michael
parents: 12428
diff changeset
902
16842
d977560c702b Reformat section titles so that it becomes easier to tell sections and
diego
parents: 16686
diff changeset
903
20965
a8651041ba2b seeking
michael
parents: 20964
diff changeset
904 Seeking without an index (non-normative):
a8651041ba2b seeking
michael
parents: 20964
diff changeset
905 -----------------------------------------
a8651041ba2b seeking
michael
parents: 20964
diff changeset
906 A. backward seeking
a8651041ba2b seeking
michael
parents: 20964
diff changeset
907 1. perform a binary search on the syncpoint timestamps finding the one
a8651041ba2b seeking
michael
parents: 20964
diff changeset
908 which is largest and <= the target timestamp
a8651041ba2b seeking
michael
parents: 20964
diff changeset
909 B. forward seeking
a8651041ba2b seeking
michael
parents: 20964
diff changeset
910 1a. perform a binary search on the syncpoint timestamps finding the one
a8651041ba2b seeking
michael
parents: 20964
diff changeset
911 which is smallest and >= the target timestamp
a8651041ba2b seeking
michael
parents: 20964
diff changeset
912 1b. perform a binary search on the syncpoint back pointers finding the
a8651041ba2b seeking
michael
parents: 20964
diff changeset
913 smallest one which has a back ptr >= the position of what was found in 1.
a8651041ba2b seeking
michael
parents: 20964
diff changeset
914 2. follow the back pointer to the correspoding syncpoint
a8651041ba2b seeking
michael
parents: 20964
diff changeset
915
a8651041ba2b seeking
michael
parents: 20964
diff changeset
916 Seeking with an index (non-normative):
a8651041ba2b seeking
michael
parents: 20964
diff changeset
917 --------------------------------------
a8651041ba2b seeking
michael
parents: 20964
diff changeset
918 The demuxer only has to find the appropriate keyframe in the index and
a8651041ba2b seeking
michael
parents: 20964
diff changeset
919 start demuxing from the previous syncpoint
a8651041ba2b seeking
michael
parents: 20964
diff changeset
920
a8651041ba2b seeking
michael
parents: 20964
diff changeset
921 Note, more complicated seeking methods exist which are capable of quickly
a8651041ba2b seeking
michael
parents: 20964
diff changeset
922 seeking to the optimal point in the presence of an index even if only a
20966
dc1a02e98cb6 clarify syncpoint placement recommanditions
michael
parents: 20965
diff changeset
923 subset of all streams is active
dc1a02e98cb6 clarify syncpoint placement recommanditions
michael
parents: 20965
diff changeset
924
dc1a02e98cb6 clarify syncpoint placement recommanditions
michael
parents: 20965
diff changeset
925 A muxer SHOULD place syncpoints so that that simple low complexity seeking
dc1a02e98cb6 clarify syncpoint placement recommanditions
michael
parents: 20965
diff changeset
926 works with fine granularity, that is syncpoints should be placed prior
dc1a02e98cb6 clarify syncpoint placement recommanditions
michael
parents: 20965
diff changeset
927 to keyframes instead of non keyframes and with high enough frequency
dc1a02e98cb6 clarify syncpoint placement recommanditions
michael
parents: 20965
diff changeset
928 (once per second unless there are no keyframes between this and the previous
dc1a02e98cb6 clarify syncpoint placement recommanditions
michael
parents: 20965
diff changeset
929 syncpoint)
dc1a02e98cb6 clarify syncpoint placement recommanditions
michael
parents: 20965
diff changeset
930
dc1a02e98cb6 clarify syncpoint placement recommanditions
michael
parents: 20965
diff changeset
931 encoders SHOULD place keyframes so that the number of points where all
dc1a02e98cb6 clarify syncpoint placement recommanditions
michael
parents: 20965
diff changeset
932 streams have a keyframe at the same time is maximized, this ensures that
dc1a02e98cb6 clarify syncpoint placement recommanditions
michael
parents: 20965
diff changeset
933 seeking (complicated or not) does not need to demux and decode significant
dc1a02e98cb6 clarify syncpoint placement recommanditions
michael
parents: 20965
diff changeset
934 amounts of data to reach a point where a presentable frame for each stream
dc1a02e98cb6 clarify syncpoint placement recommanditions
michael
parents: 20965
diff changeset
935 is available after seeking
20965
a8651041ba2b seeking
michael
parents: 20964
diff changeset
936
16842
d977560c702b Reformat section titles so that it becomes easier to tell sections and
diego
parents: 16686
diff changeset
937
d977560c702b Reformat section titles so that it becomes easier to tell sections and
diego
parents: 16686
diff changeset
938 Semantic requirements:
d977560c702b Reformat section titles so that it becomes easier to tell sections and
diego
parents: 16686
diff changeset
939 ======================
16429
84174804804b Updates to NUT spec:
ods15
parents: 16428
diff changeset
940
17018
baf593fcf738 Change MUST to SHOULD have disposition and if applicable language tags.
al
parents: 16843
diff changeset
941 If more than one stream of a given stream class is present, each one SHOULD
16429
84174804804b Updates to NUT spec:
ods15
parents: 16428
diff changeset
942 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
943 It often highly improves usability and is therefore strongly encouraged.
16429
84174804804b Updates to NUT spec:
ods15
parents: 16428
diff changeset
944
84174804804b Updates to NUT spec:
ods15
parents: 16428
diff changeset
945 A demuxer MUST NOT demux a stream which contains more than one stream, or which
84174804804b Updates to NUT spec:
ods15
parents: 16428
diff changeset
946 is wrapped in a structure to facilitate more than one stream or otherwise
84174804804b Updates to NUT spec:
ods15
parents: 16428
diff changeset
947 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
948 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
949 mpegvideo+mpegaudio in mpeg-ps/ts in nut or dvvideo + dvaudio in dv in nut
16429
84174804804b Updates to NUT spec:
ods15
parents: 16428
diff changeset
950
12501
cd0d9a99b730 remove index flag
michael
parents: 12428
diff changeset
951
16842
d977560c702b Reformat section titles so that it becomes easier to tell sections and
diego
parents: 16686
diff changeset
952
d977560c702b Reformat section titles so that it becomes easier to tell sections and
diego
parents: 16686
diff changeset
953 Sample code (Public Domain, & untested):
d977560c702b Reformat section titles so that it becomes easier to tell sections and
diego
parents: 16686
diff changeset
954 ========================================
9294
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
955
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
956 typedef BufferContext{
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
957 uint8_t *buf;
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
958 uint8_t *buf_ptr;
9294
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
959 }BufferContext;
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
960
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
961 static inline uint64_t get_bytes(BufferContext *bc, int count){
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
962 uint64_t val=0;
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
963
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
964 assert(count>0 && count<9);
9294
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
965
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
966 for(i=0; i<count; i++){
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
967 val <<=8;
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
968 val += *(bc->buf_ptr++);
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
969 }
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
970
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
971 return val;
9294
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
972 }
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
973
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
974 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
975 uint64_t val=0;
9294
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
976
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
977 assert(count>0 && count<9);
9294
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
978
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
979 for(i=count-1; i>=0; i--){
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
980 *(bc->buf_ptr++)= val >> (8*i);
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
981 }
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
982
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
983 return val;
9294
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
984 }
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
985
10061
76b1c7d20da8 corrected the sample code
alex
parents: 9580
diff changeset
986 static inline uint64_t get_v(BufferContext *bc){
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
987 uint64_t val= 0;
9294
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
988
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
989 for(; space_left(bc) > 0; ){
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
990 int tmp= *(bc->buf_ptr++);
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
991 if(tmp&0x80)
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
992 val= (val<<7) + tmp - 0x80;
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
993 else
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
994 return (val<<7) + tmp;
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
995 }
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
996
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
997 return -1;
9294
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
998 }
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
999
10061
76b1c7d20da8 corrected the sample code
alex
parents: 9580
diff changeset
1000 static inline int put_v(BufferContext *bc, uint64_t val){
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
1001 int i;
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
1002
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
1003 if(space_left(bc) < 9) return -1;
9294
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
1004
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
1005 val &= 0x7FFFFFFFFFFFFFFFULL; // FIXME can only encode upto 63 bits currently
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
1006 for(i=7; ; i+=7){
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
1007 if(val>>i == 0) break;
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
1008 }
9294
7159ed6a4d0b nonsense (MPlayer container format draft 0.01)
michael
parents:
diff changeset
1009
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
1010 for(i-=7; i>0; i-=7){
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
1011 *(bc->buf_ptr++)= 0x80 | (val>>i);
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
1012 }
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
1013 *(bc->buf_ptr++)= val&0x7F;
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
1014
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
1015 return 0;
9579
89d27a306886 *signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents: 9422
diff changeset
1016 }
89d27a306886 *signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents: 9422
diff changeset
1017
12333
80036bf4a9f5 remove frame types
michael
parents: 12297
diff changeset
1018 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
1019 if(reset) memset(pts_cache, -1, delay*sizeof(int64_t));
12333
80036bf4a9f5 remove frame types
michael
parents: 12297
diff changeset
1020
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
1021 while(delay--){
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
1022 int64_t t= pts_cache[delay];
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
1023 if(t < pts){
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
1024 pts_cache[delay]= pts;
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
1025 pts= t;
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 }
12333
80036bf4a9f5 remove frame types
michael
parents: 12297
diff changeset
1028
16686
93d4be7ef83e cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents: 16685
diff changeset
1029 return pts;
12333
80036bf4a9f5 remove frame types
michael
parents: 12297
diff changeset
1030 }
80036bf4a9f5 remove frame types
michael
parents: 12297
diff changeset
1031
16842
d977560c702b Reformat section titles so that it becomes easier to tell sections and
diego
parents: 16686
diff changeset
1032
d977560c702b Reformat section titles so that it becomes easier to tell sections and
diego
parents: 16686
diff changeset
1033
d977560c702b Reformat section titles so that it becomes easier to tell sections and
diego
parents: 16686
diff changeset
1034 Authors:
d977560c702b Reformat section titles so that it becomes easier to tell sections and
diego
parents: 16686
diff changeset
1035 ========
10158
93e5428d0b3e some changes (michael: is the colorspace_type field needed?)
alex
parents: 10061
diff changeset
1036
16428
5f4317692b7c spelling/grammar/wording
diego
parents: 15755
diff changeset
1037 Folks from the MPlayer developers mailing list (http://www.mplayerhq.hu/).
5f4317692b7c spelling/grammar/wording
diego
parents: 15755
diff changeset
1038 Authors in alphabetical order: (FIXME! Tell us if we left you out)
16843
21fa9b28ca75 author list prettyprinting
diego
parents: 16842
diff changeset
1039 Beregszaszi, Alex (alex@fsn.hu)
21fa9b28ca75 author list prettyprinting
diego
parents: 16842
diff changeset
1040 Bunkus, Moritz (moritz@bunkus.org)
21fa9b28ca75 author list prettyprinting
diego
parents: 16842
diff changeset
1041 Diedrich, Tobias (ranma+mplayer@tdiedrich.de)
21fa9b28ca75 author list prettyprinting
diego
parents: 16842
diff changeset
1042 Felker, Rich (dalias@aerifal.cx)
21fa9b28ca75 author list prettyprinting
diego
parents: 16842
diff changeset
1043 Franz, Fabian (FabianFranz@gmx.de)
21fa9b28ca75 author list prettyprinting
diego
parents: 16842
diff changeset
1044 Gereoffy, Arpad (arpi@thot.banki.hu)
21fa9b28ca75 author list prettyprinting
diego
parents: 16842
diff changeset
1045 Hess, Andreas (jaska@gmx.net)
21fa9b28ca75 author list prettyprinting
diego
parents: 16842
diff changeset
1046 Niedermayer, Michael (michaelni@gmx.at)
21fa9b28ca75 author list prettyprinting
diego
parents: 16842
diff changeset
1047 Shimon, Oded (ods15@ods15.dyndns.org)