Mercurial > mplayer.hg
annotate DOCS/tech/mpcf.txt @ 17796:6edc4492b777
universal timestamp (= stream_id + timestamp in stream timebase)
-> simplify
add that thing to info packets as type too
author | michael |
---|---|
date | Fri, 10 Mar 2006 14:10:07 +0000 |
parents | a4e7458d61ed |
children | b1d80d05eaa8 |
rev | line source |
---|---|
16842
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
1 ======================================== |
17547 | 2 NUT Open Container Format DRAFT 20060207 |
16842
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
3 ======================================== |
9294 | 4 |
5 | |
6 | |
16842
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
7 Intro: |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
8 ====== |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
9 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
10 Features / goals: |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
11 (supported by the format, not necessarily by a specific implementation) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
12 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
13 Simple |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
14 use the same encoding for nearly all fields |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
15 simple decoding, so slow CPUs (and embedded systems) can handle it |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
16 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
17 Extendible |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
18 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
|
19 allow adding of new headers in the future |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
20 allow adding more fields at the end of headers |
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 Compact |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
23 ~0.2% overhead, for normal bitrates |
17438 | 24 index is <100kb per hour |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
25 a usual header for a file is about 100 bytes (audio + video headers together) |
17326 | 26 a packet header is about ~1-5 bytes |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
27 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
28 Error resistant |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
29 seeking / playback without an index |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
30 headers & index can be repeated |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
31 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
|
32 resync times |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
33 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
34 |
16842
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
35 |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
36 Definitions: |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
37 ============ |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
38 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
39 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
|
40 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
|
41 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
42 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
43 |
16842
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
44 Syntax: |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
45 ======= |
9294 | 46 |
16428 | 47 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
|
48 is using a pseudocode approach. |
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
49 |
16842
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
50 |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
51 |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
52 Conventions: |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
53 ============ |
14854
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
54 |
15008
0a43341c8bfd
less amateurish-looking mpcf.txt patch by (Jeff >snacky ikaruga co uk<)
michael
parents:
14919
diff
changeset
|
55 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
|
56 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
|
57 follow: |
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
58 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
59 name (text description) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
60 functional definition |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
61 [Optional notes] |
14854
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
62 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
63 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
|
64 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
|
65 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
|
66 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
67 name: (optional note) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
68 functional definition |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
69 [Optional notes] |
14854
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
70 |
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
71 The in-depth tag description follows the bitstream syntax. |
16428 | 72 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
|
73 |
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
74 |
12209 | 75 |
16842
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
76 Type definitions: |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
77 ================= |
12209 | 78 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
79 f(n) (n fixed bits in big-endian order) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
80 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
|
81 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
82 v (variable length value, unsigned) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
83 value=0 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
84 do{ |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
85 more_data u(1) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
86 data u(7) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
87 value= 128*value + data |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
88 }while(more_data) |
14854
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
89 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
90 s (variable length value, signed) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
91 temp v |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
92 temp++ |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
93 if(temp&1) value= -(temp>>1) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
94 else value= (temp>>1) |
9323 | 95 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
96 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
|
97 for(i=0; i<length; i++){ |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
98 data[i] u(8) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
99 } |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
100 [Note: strings MUST be encoded in UTF-8] |
9295 | 101 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
102 vb (variable length binary data or string) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
103 length v |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
104 value b |
12117 | 105 |
17796
6edc4492b777
universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents:
17795
diff
changeset
|
106 t (v coded universal timestamp) |
6edc4492b777
universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents:
17795
diff
changeset
|
107 tmp v |
6edc4492b777
universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents:
17795
diff
changeset
|
108 stream_id= tmp % stream_count |
6edc4492b777
universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents:
17795
diff
changeset
|
109 value= (tmp / stream_count) * stream[ stream_id ].timebase |
9295 | 110 |
14854
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
111 |
16842
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
112 Bitstream syntax: |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
113 ================= |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
114 |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
115 Common elements: |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
116 ---------------- |
14854
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
117 |
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
118 reserved_bytes: |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
119 for(i=0; i<forward_ptr - length_of_non_reserved; i++) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
120 reserved u(8) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
121 [a demuxer MUST ignore any reserved bytes |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
122 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
|
123 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
|
124 in a compatible way] |
14854
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
125 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
126 Headers: |
10824 | 127 |
9294 | 128 main header: |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
129 version v |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
130 stream_count v |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
131 max_distance v |
17437 | 132 tmp_pts=0 |
133 tmp_mul=1 | |
134 tmp_stream=0 | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
135 for(i=0; i<256; ){ |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
136 tmp_flag v |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
137 tmp_fields v |
17719
6f1bc4789a5d
update tmp_field numbers (pretty much just cosmetic)
michael
parents:
17718
diff
changeset
|
138 if(tmp_fields>0) tmp_pts s |
6f1bc4789a5d
update tmp_field numbers (pretty much just cosmetic)
michael
parents:
17718
diff
changeset
|
139 if(tmp_fields>1) tmp_mul v |
6f1bc4789a5d
update tmp_field numbers (pretty much just cosmetic)
michael
parents:
17718
diff
changeset
|
140 if(tmp_fields>2) tmp_stream v |
6f1bc4789a5d
update tmp_field numbers (pretty much just cosmetic)
michael
parents:
17718
diff
changeset
|
141 if(tmp_fields>3) tmp_size v |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
142 else tmp_size=0 |
17719
6f1bc4789a5d
update tmp_field numbers (pretty much just cosmetic)
michael
parents:
17718
diff
changeset
|
143 if(tmp_fields>4) tmp_res v |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
144 else tmp_res=0 |
17719
6f1bc4789a5d
update tmp_field numbers (pretty much just cosmetic)
michael
parents:
17718
diff
changeset
|
145 if(tmp_fields>5) count v |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
146 else count= tmp_mul - tmp_size |
17719
6f1bc4789a5d
update tmp_field numbers (pretty much just cosmetic)
michael
parents:
17718
diff
changeset
|
147 for(j=6; j<tmp_fields; j++){ |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
148 tmp_reserved[i] v |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
149 } |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
150 for(j=0; j<count && i<256; j++, i++){ |
17612 | 151 if (i == 'N') { |
17718 | 152 flags[i]= FLAG_INVALID; |
17612 | 153 j--; |
154 continue; | |
155 } | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
156 flags[i]= tmp_flag; |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
157 stream_id_plus1[i]= tmp_stream; |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
158 data_size_mul[i]= tmp_mul; |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
159 data_size_lsb[i]= tmp_size + j; |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
160 pts_delta[i]= tmp_pts; |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
161 reserved_count[i]= tmp_res; |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
162 } |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
163 } |
9294 | 164 |
165 stream_header: | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
166 stream_id v |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
167 stream_class v |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
168 fourcc vb |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
169 time_base_nom v |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
170 time_base_denom v |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
171 msb_pts_shift v |
17577 | 172 max_pts_distance v |
17730 | 173 max_frame_size v |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
174 decode_delay v |
17671 | 175 reserved u(7) |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
176 fixed_fps u(1) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
177 codec_specific_data vb |
17640 | 178 if(stream_class == video){ |
179 width v | |
180 height v | |
181 sample_width v | |
182 sample_height v | |
183 colorspace_type v | |
184 }else if(stream_class == audio){ | |
185 samplerate_nom v | |
186 samplerate_denom v | |
187 channel_count v | |
188 } | |
16429 | 189 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
190 Basic Packets: |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
191 |
14854
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
192 frame: |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
193 frame_code f(8) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
194 if(stream_id_plus1[frame_code]==0){ |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
195 stream_id v |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
196 } |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
197 if(pts_delta[frame_code]==0){ |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
198 coded_pts v |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
199 } |
17718 | 200 frame_flags= flags[frame_code] |
201 if(frame_flags&FLAG_CODED){ | |
202 coded_flags v | |
203 frame_flags ^= coded_flags | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
204 } |
17718 | 205 if(frame_flags&FLAG_SIZE_MSB){ |
206 data_size_msb v | |
17437 | 207 } |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
208 for(i=0; i<reserved_count[frame_code]; i++) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
209 reserved v |
17723 | 210 if(frame_flags&FLAG_CHECKSUM){ |
17711 | 211 checksum u(32) |
17584 | 212 } |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
213 data |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
214 |
14854
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
215 index: |
17796
6edc4492b777
universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents:
17795
diff
changeset
|
216 max_pts t |
17438 | 217 syncpoints v |
17720 | 218 for(i=0; i<syncpoints; i++){ |
17438 | 219 syncpoint_pos_div8 v |
220 } | |
221 for(i=0; i<stream_count; i++){ | |
17615
363d23eb55d3
fix index, first keyframe cannot be written with pts=0
ods15
parents:
17612
diff
changeset
|
222 last_pts= -1 |
17720 | 223 for(j=0; j<syncpoints; ){ |
17438 | 224 x v |
225 type= x & 1 | |
226 x>>=1 | |
17455 | 227 n=j |
17438 | 228 if(type){ |
229 flag= x & 1 | |
230 x>>=1 | |
231 while(x--) | |
17455 | 232 has_keyframe[n++][i]=flag |
233 has_keyframe[n++][i]=!flag; | |
17438 | 234 }else{ |
235 while(x != 1){ | |
17455 | 236 has_keyframe[n++][i]=x&1; |
17438 | 237 x>>=1; |
238 } | |
239 } | |
17455 | 240 for(; j<n && j<syncpoints; j++){ |
241 if (!has_keyframe[j][i]) continue | |
242 A v | |
17531 | 243 if(!A){ |
244 A v | |
245 B v | |
246 eor_pts[j][i] = last_pts + A + B | |
247 }else | |
248 B=0 | |
249 keyframe_pts[j][i] = last_pts + A | |
250 last_pts += A + B | |
17455 | 251 } |
17438 | 252 } |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
253 } |
17726 | 254 last 8 reserved_bytes of index: |
255 index_ptr u(64) | |
9294 | 256 |
17711 | 257 info_packet: |
17669 | 258 stream_id_plus1 v |
259 chapter_id v | |
17796
6edc4492b777
universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents:
17795
diff
changeset
|
260 chapter_start t |
17708 | 261 chapter_len v |
17669 | 262 count v |
263 for(i=0; i<count; i++){ | |
264 name vb | |
265 value s | |
266 if (value==-1){ | |
267 type= "UTF-8" | |
268 value vb | |
269 }else if (value==-2){ | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
270 type vb |
17669 | 271 value vb |
272 }else if (value==-3){ | |
17685 | 273 type= "s" |
17326 | 274 value s |
17796
6edc4492b777
universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents:
17795
diff
changeset
|
275 }else if (value==-4){ |
6edc4492b777
universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents:
17795
diff
changeset
|
276 type= "t" |
6edc4492b777
universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents:
17795
diff
changeset
|
277 value t |
6edc4492b777
universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents:
17795
diff
changeset
|
278 }else if (value<-4){ |
17685 | 279 type= "r" |
17796
6edc4492b777
universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents:
17795
diff
changeset
|
280 value.den= -value-4 |
17669 | 281 value.num s |
282 }else{ | |
17685 | 283 type= "v" |
17669 | 284 } |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
285 } |
16506 | 286 |
17326 | 287 syncpoint: |
17796
6edc4492b777
universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents:
17795
diff
changeset
|
288 global_key_pts t |
12413 | 289 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
290 Complete definition: |
14854
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
291 |
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
292 file: |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
293 file_id_string |
17726 | 294 while(!eof){ |
17711 | 295 if(next_byte == 'N'){ |
17773 | 296 packet_header |
17711 | 297 switch(startcode){ |
298 case main_startcode: main_header; break; | |
299 case stream_startcode:stream_header; break; | |
300 case info_startcode: info_packet; break; | |
301 case index_startcode: index; break; | |
302 case syncpoint_startcode: syncpoint; break; | |
303 } | |
17773 | 304 packet_footer |
17711 | 305 }else |
306 frame | |
307 } | |
308 | |
309 the structure of a undamaged file should look like the following, but | |
310 demuxers should be flexible and be able to deal with damaged headers so the | |
311 above is a better loop in practice (not to mention its simpler) | |
312 note, demuxers MUST be able to deal with new and unknown headers | |
313 | |
314 packet_header | |
315 startcode f(64) | |
316 forward_ptr v | |
17792 | 317 if(forward_ptr > 4096) |
318 header_checksum u(32) | |
17711 | 319 |
320 packet_footer | |
321 reserved_bytes | |
322 checksum u(32) | |
323 | |
324 reserved_headers | |
325 while(next_byte == 'N' && next_code != main_startcode | |
326 && next_code != stream_startcode | |
327 && next_code != info_startcode | |
328 && next_code != index_startcode | |
329 && next_code != syncpoint_startcode){ | |
330 packet_header | |
331 packet_footer | |
332 } | |
333 | |
334 file: | |
335 file_id_string | |
17726 | 336 while(!eof){ |
17711 | 337 packet_header, main_header, packet_footer |
338 reserved_headers | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
339 for(i=0; i<stream_count; i++){ |
17711 | 340 packet_header, stream_header, packet_footer |
341 reserved_headers | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
342 } |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
343 while(next_code == info_startcode){ |
17711 | 344 packet_header, info_packet, packet_footer |
345 reserved_headers | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
346 } |
17726 | 347 if(next_code == index_startcode){ |
17711 | 348 packet_header, index_packet, packet_footer |
17533 | 349 } |
17726 | 350 if (!eof) while(next_code != main_startcode){ |
17711 | 351 if(next_code == syncpoint_startcode){ |
352 packet_header, syncpoint, packet_footer | |
353 } | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
354 frame |
17711 | 355 reserved_headers |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
356 } |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
357 } |
14854
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
358 |
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
359 |
16842
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
360 Tag description: |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
361 ---------------- |
14854
ebc5136f2a56
some comments and whitespace changes by (Luca Barbato <lu_zero gentoo org>)
michael
parents:
14471
diff
changeset
|
362 |
12242 | 363 file_id_string |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
364 "nut/multimedia container\0" |
9323 | 365 |
366 *_startcode | |
12162 | 367 all startcodes start with 'N' |
368 | |
369 main_startcode | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
370 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
|
371 |
12162 | 372 stream_starcode |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
373 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
|
374 |
17326 | 375 syncpoint_startcode |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
376 0xE4ADEECA4569ULL + (((uint64_t)('N'<<8) + 'K')<<48) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
377 |
12162 | 378 index_startcode |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
379 0xDD672F23E64EULL + (((uint64_t)('N'<<8) + 'X')<<48) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
380 |
12162 | 381 info_startcode |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
382 0xAB68B596BA78ULL + (((uint64_t)('N'<<8) + 'I')<<48) |
9294 | 383 |
384 version | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
385 NUT version. The current value is 2. |
12238 | 386 |
17439
f6e39517d5b6
cosmetic change, shift stuff around to more logical places
ods15
parents:
17438
diff
changeset
|
387 forward_ptr |
f6e39517d5b6
cosmetic change, shift stuff around to more logical places
ods15
parents:
17438
diff
changeset
|
388 size of the packet data (exactly the distance from the first byte |
f6e39517d5b6
cosmetic change, shift stuff around to more logical places
ods15
parents:
17438
diff
changeset
|
389 after the forward_ptr to the first byte of the next packet) |
f6e39517d5b6
cosmetic change, shift stuff around to more logical places
ods15
parents:
17438
diff
changeset
|
390 |
12333 | 391 max_distance |
17326 | 392 max distance of syncpoints, the distance may only be larger if |
393 there is no more than a single frame between the two syncpoints. This can | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
394 be used by the demuxer to detect damaged frame headers if the damage |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
395 results in too long of a chain |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
396 |
17439
f6e39517d5b6
cosmetic change, shift stuff around to more logical places
ods15
parents:
17438
diff
changeset
|
397 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
|
398 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
|
399 non-keyframe - keyframe transitions are very frequent |
f6e39517d5b6
cosmetic change, shift stuff around to more logical places
ods15
parents:
17438
diff
changeset
|
400 |
17722 | 401 SHOULD be set to <=32768 |
402 if the stored value is >65536 then max_distance MUST be set to 65536 | |
12501 | 403 |
17577 | 404 max_pts_distance |
405 max absoloute difference of pts of new frame from last_pts in the | |
17711 | 406 timebase of the stream, without a checksum after the frameheader |
407 Note that last_pts is not necessarily the pts of the last frame | |
17577 | 408 on the same stream, as it is altered by syncpoint timestamps. |
409 | |
17730 | 410 max_frame_size |
17726 | 411 max frame size without a checksum after the frameheader. |
17730 | 412 MUST be <=4*max_distance. If stored value is bigger then |
413 max_frame_size MUST be set to 4*max_distance . | |
17726 | 414 |
16429 | 415 stream_id |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
416 Stream identifier |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
417 stream_id MUST be < stream_count |
9294 | 418 |
419 stream_class | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
420 0 video |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
421 1 audio |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
422 2 subtiles |
17793 | 423 3 userdata |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
424 Note: the remaining values are reserved and MUST NOT be used |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
425 a demuxer MUST ignore streams with reserved classes |
9294 | 426 |
427 fourcc | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
428 identification for the codec |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
429 example: "H264" |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
430 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
|
431 if needed |
9294 | 432 |
9297 | 433 time_base_nom / time_base_denom = time_base |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
434 the length of a timer tick in seconds, this MUST be equal to the 1/fps |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
435 if fixed_fps is 1 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
436 time_base_nom and time_base_denom MUST NOT be 0 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
437 time_base_nom and time_base_denom MUST be relatively prime |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
438 time_base_denom MUST be < 2^31 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
439 examples: |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
440 fps time_base_nom time_base_denom |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
441 30 1 30 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
442 29.97 1001 30000 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
443 23.976 1001 24000 |
9294 | 444 |
17328 | 445 convert_ts |
446 To switch from 2 different timebases, the following calculation is | |
447 defined: | |
12413 | 448 |
17328 | 449 ln = from_time_base_nom*to_time_base_denom |
450 sn = from_timestamp | |
451 d1 = from_time_base_denom | |
452 d2 = to_time_base_nom | |
453 timestamp = (ln/d1*sn + ln%d1*sn/d1)/d2 | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
454 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
|
455 is equivalent to (ln*sn)/(d1*d2) but this would require a 96bit integer |
12413 | 456 |
17532 | 457 compare_ts |
458 Compares timestamps from 2 different timebases, | |
459 if a is before b then compare_ts(a, b) = -1 | |
460 if a is after b then compare_ts(a, b) = 1 | |
461 else compare_ts(a, b) = 0 | |
462 | |
463 Care must be taken that this is done exactly with no rounding errors, | |
464 simply casting to float or double and doing the obvious | |
465 a*timebase > b*timebase is not compliant or correct, neither is the | |
466 same with integers, and | |
467 a*a_timebase.num*b_timebase.den > b*b_timebase.num*a_timebase.den | |
468 will overflow. One possible implementation which shouldn't overflow | |
469 within the range of legal timestamps and timebases is: | |
470 | |
471 if (convert_ts(a, a_timebase, b_timebase) < b) return -1; | |
472 if (convert_ts(b, b_timebase, a_timebase) < a) return 1; | |
473 return 0; | |
474 | |
16429 | 475 msb_pts_shift |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
476 amount of bits in lsb_pts |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
477 MUST be <16 |
9294 | 478 |
12333 | 479 decode_delay |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
480 maximum time between input and output for a codec, used to generate |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
481 dts from pts |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
482 is set to 0 for streams without B-frames, and set to 1 for streams with |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
483 B-frames, may be larger for future codecs |
17639
56ec8716e25b
some cleanup. enforce decode_delay to not be too high.
ods15
parents:
17615
diff
changeset
|
484 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
|
485 |
9294 | 486 fixed_fps |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
487 1 indicates that the fps is fixed |
9294 | 488 |
9356 | 489 codec_specific_data |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
490 private global data for a codec (could be huffman tables or ...) |
12082 | 491 |
492 frame_code | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
493 the meaning of this byte is stored in the main header |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
494 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
|
495 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
|
496 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
|
497 detection |
9420 | 498 |
17718 | 499 flags[frame_code], frame_flags |
17437 | 500 Bit Name Description |
17718 | 501 1 FLAG_SIZE_MSB if set, data_size_msb is at frame header, |
17437 | 502 otherwise data_size_msb is 0 |
17718 | 503 2 FLAG_CHECKSUM if set then the frame header contains a checksum |
504 4 FLAG_KEY if set, frame is keyframe | |
505 8 FLAG_EOR if set, stream has no relevance on | |
506 presentation. (EOR) | |
507 256 FLAG_CODED if set, coded_flags are stored in the frame header. | |
508 512 FLAG_INVALID if set, frame_code is invalid. | |
17437 | 509 |
510 EOR frames MUST be zero-length and must be set keyframe. | |
511 All streams SHOULD end with EOR, where the pts of the EOR indicates the | |
512 end presentation time of the final frame. | |
513 An EOR set stream is unset by the first content frames. | |
17551 | 514 EOR can only be unset in streams with zero decode_delay . |
17730 | 515 FLAG_CHECKSUM MUST be set if the frame is larger than max_frame_size or |
516 its pts differs by more then max_pts_distance from the last frame | |
12110
a34dc5a369ca
restrictions to ensure that O(log n) seeking and error recovery is possible
michael
parents:
12084
diff
changeset
|
517 |
12084
68baf8877c07
reversing the change to the forw/backw pointers, its somewhat simpler to update it if the forward pointer is first
michael
parents:
12082
diff
changeset
|
518 stream_id_plus1[frame_code] |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
519 must be <250 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
520 if it is 0, then the stream_id is coded in the frame |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
521 |
12082 | 522 data_size_mul[frame_code] |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
523 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
|
524 |
12082 | 525 data_size_lsb[frame_code] |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
526 must be <16384 |
12082 | 527 |
16429 | 528 pts_delta[frame_code] |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
529 must be <16384 and >-16384 |
12413 | 530 |
17640 | 531 reserved_count[frame_code] |
532 must be <256 | |
533 | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
534 data_size |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
535 data_size= data_size_lsb + data_size_msb*data_size_mul; |
12082 | 536 |
16429 | 537 coded_pts |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
538 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
|
539 pts, otherwise it is a full pts + (1<<msb_pts_shift) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
540 lsb pts is converted to a full pts by: |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
541 mask = (1<<msb_pts_shift)-1; |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
542 delta = last_pts - mask/2 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
543 pts = ((pts_lsb-delta)&mask) + delta |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
544 |
16429 | 545 lsb_pts |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
546 least significant bits of the pts in time_base precision |
9294 | 547 Example: IBBP display order |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
548 keyframe pts=0 -> pts=0 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
549 frame lsb_pts=3 -> pts=3 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
550 frame lsb_pts=1 -> pts=1 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
551 frame lsb_pts=2 -> pts=2 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
552 ... |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
553 keyframe msb_pts=257 -> pts=257 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
554 frame lsb_pts=255 -> pts=255 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
555 frame lsb_pts=0 -> pts=256 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
556 frame lsb_pts=4 -> pts=260 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
557 frame lsb_pts=2 -> pts=258 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
558 frame lsb_pts=3 -> pts=259 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
559 all pts's of keyframes of a single stream MUST be monotone |
9294 | 560 |
12333 | 561 dts |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
562 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
|
563 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
|
564 the smallest value is removed, this is then the current dts |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
565 this buffer is initalized with decode_delay -1 elements |
17327 | 566 |
567 Pts of all frames in all streams MUST be bigger or equal to dts of all | |
17437 | 568 previous frames in all streams, compared in common timebase. (EOR |
569 frames are NOT exempt from this rule) | |
12333 | 570 |
9294 | 571 width/height |
17730 | 572 MUST be set to the coded width/height, MUST NOT be 0 |
9294 | 573 |
574 sample_width/sample_height (aspect ratio) | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
575 sample_width is the horizontal distance between samples |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
576 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
|
577 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
|
578 |
10158
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
579 colorspace_type |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
580 0 unknown |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
581 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
|
582 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
|
583 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
|
584 18 ITU Rec 709 Y range: 0..255 Cb/Cr range: 0..255 |
10166 | 585 |
12333 | 586 samplerate_nom / samplerate_denom = samplerate |
17730 | 587 the number of samples per second, MUST NOT be 0 |
9294 | 588 |
17683 | 589 crc32 checksum |
17710 | 590 Generator polynomial is 0x104C11DB7. Starting value is zero. |
17683 | 591 |
9294 | 592 checksum |
17577 | 593 crc32 checksum |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
594 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
|
595 including the checksum itself (from first byte after the |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
596 forward_ptr until last byte before the checksum). |
17711 | 597 for frame headers the checksum contains the framecode byte and all |
598 following bytes upto the checksum itself | |
9294 | 599 |
17792 | 600 header_checksum |
601 checksum over the startcode and forward pointer | |
602 | |
17640 | 603 Syncpoint tags: |
604 --------------- | |
605 | |
17439
f6e39517d5b6
cosmetic change, shift stuff around to more logical places
ods15
parents:
17438
diff
changeset
|
606 back_ptr_div8 |
f6e39517d5b6
cosmetic change, shift stuff around to more logical places
ods15
parents:
17438
diff
changeset
|
607 back_ptr = back_ptr_div8 * 8 + 7 |
f6e39517d5b6
cosmetic change, shift stuff around to more logical places
ods15
parents:
17438
diff
changeset
|
608 back_ptr must point to a position within 8 bytes of a syncpoint |
f6e39517d5b6
cosmetic change, shift stuff around to more logical places
ods15
parents:
17438
diff
changeset
|
609 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
|
610 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
|
611 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
|
612 |
f6e39517d5b6
cosmetic change, shift stuff around to more logical places
ods15
parents:
17438
diff
changeset
|
613 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
|
614 |
f6e39517d5b6
cosmetic change, shift stuff around to more logical places
ods15
parents:
17438
diff
changeset
|
615 global_key_pts |
f6e39517d5b6
cosmetic change, shift stuff around to more logical places
ods15
parents:
17438
diff
changeset
|
616 After a syncpoint, last_pts of each stream is to be set to: |
f6e39517d5b6
cosmetic change, shift stuff around to more logical places
ods15
parents:
17438
diff
changeset
|
617 last_pts[i] = convert_ts(global_key_pts, timebase[stream], timebase[i]) |
f6e39517d5b6
cosmetic change, shift stuff around to more logical places
ods15
parents:
17438
diff
changeset
|
618 |
f6e39517d5b6
cosmetic change, shift stuff around to more logical places
ods15
parents:
17438
diff
changeset
|
619 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
|
620 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
|
621 |
17640 | 622 Index tags: |
623 ----------- | |
624 | |
16429 | 625 max_pts |
17796
6edc4492b777
universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents:
17795
diff
changeset
|
626 The highest pts in the entire file |
9294 | 627 |
17438 | 628 syncpoint_pos_div8 |
629 offset from begginning of file to up to 7 bytes before the syncpoint | |
630 referred to in this index entry. Relative to position of last | |
631 syncpoint. | |
632 | |
633 has_keyframe | |
634 indicates whether this stream has a keyframe between this syncpoint and | |
635 the last syncpoint. | |
636 | |
637 keyframe_pts | |
638 The pts of the first keyframe for this stream in the region between the | |
17531 | 639 2 syncpoints, in the stream's timebase. (EOR frames are also keyframes) |
640 | |
641 eor_pts | |
642 Coded only if EOR is set at the position of the syncpoint. The pts of | |
643 that EOR. EOR is unset by the first keyframe after it. | |
9294 | 644 |
16429 | 645 index_ptr |
17726 | 646 Length in bytes of the entire index, from the first byte of the |
647 startcode until the last byte of the checksum. | |
648 Note: A demuxer can use this to find the index when it is written at | |
649 EOF, as index_ptr will always be 12 bytes before the end of file if | |
650 there is an index at all. | |
651 | |
16429 | 652 |
17640 | 653 Info tags: |
654 ---------- | |
655 | |
17669 | 656 stream_id_plus1 |
657 Stream this info packet applies to. If zero, packet applies to whole | |
658 file. | |
659 | |
660 chapter_id | |
661 Id of chapter this packet applies to. If zero, packet applies to whole | |
662 file. Positive chapter_id's are real chapters and MUST NOT overlap. | |
663 Negative chapter_id indicate a sub region of file and not a real | |
664 chapter. chapter_id MUST be unique to the region it represents. | |
17711 | 665 chapter_id n MUST not be used unless there are at least n chapters in the |
666 file | |
17669 | 667 |
668 chapter_start | |
17796
6edc4492b777
universal timestamp (= stream_id + timestamp in stream timebase)
michael
parents:
17795
diff
changeset
|
669 timestamp of start of chapter |
17669 | 670 |
671 chapter_len | |
672 Length of chapter in same timebase of chapter_start. | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
673 |
9323 | 674 type |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
675 for example: "UTF8" -> string or "JPEG" -> JPEG image |
17685 | 676 "v" -> unsigned integer |
677 "s" -> signed integer | |
678 "r" -> rational | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
679 Note: nonstandard fields should be prefixed by "X-" |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
680 Note: MUST be less than 6 byte long (might be increased to 64 later) |
9323 | 681 |
13308
8ff17d153414
info packet is now file global, while meta pakcet is stream specific, as discussed with Rich
alex
parents:
13047
diff
changeset
|
682 info packet types |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
683 the name of the info entry, valid names are |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
684 "Author" |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
685 "Description" |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
686 "Copyright" |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
687 "Encoder" |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
688 the name & version of the software used for encoding |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
689 "Title" |
17669 | 690 "Cover" (allowed types are "PNG" and "JPEG") |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
691 image of the (CD, DVD, VHS, ..) cover (preferably PNG or JPEG) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
692 "Source" |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
693 "DVD", "VCD", "CD", "MD", "FM radio", "VHS", "TV", "LD" |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
694 Optional: appended PAL, NTSC, SECAM, ... in parentheses |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
695 "CaptureDevice" |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
696 "BT878", "BT848", "webcam", ... (more exact names are fine too) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
697 "CreationTime" |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
698 "2003-01-20 20:13:15Z", ... |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
699 (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
|
700 Note: do not forget the timezone |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
701 "Keywords" |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
702 "Language" |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
703 ISO 639 and ISO 3166 for language/country code |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
704 something like "eng" (US english), can be 0 if unknown |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
705 and "multi" if several languages |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
706 see http://www.loc.gov/standards/iso639-2/englangn.html |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
707 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
|
708 the language code |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
709 "Disposition" |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
710 "original", "dub" (translated), "comment", "lyrics", "karaoke" |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
711 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
|
712 can add them to the official standard (if they are sane) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
713 Note: nonstandard fields should be prefixed by "X-" |
17686 | 714 Note: names of fields SHOULD be in English if a word with the same |
17653 | 715 meaning exists in English |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
716 Note: MUST be less than 64 bytes long |
9295 | 717 |
718 value | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
719 value of this name/type pair |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
720 |
9310 | 721 stuffing |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
722 0x80 can be placed in front of any type v entry for stuffing purposes |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
723 |
9294 | 724 |
16842
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
725 |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
726 Structure: |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
727 ---------- |
9294 | 728 |
729 the headers MUST be in exactly the following order (to simplify demuxer design) | |
730 main header | |
731 stream_header (id=0) | |
732 stream_header (id=1) | |
733 ... | |
734 stream_header (id=n) | |
735 | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
736 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
|
737 together and repeated headers MUST be identical |
17547 | 738 |
739 Each set of repeated headers not at the beginning or end of the file SHOULD | |
740 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
|
741 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
|
742 the closest position after 2^12=4096 at which the headers can be placed |
9294 | 743 |
17547 | 744 Note: this allows an implementation reading the file to locate backup |
745 headers in O(log filesize) time as opposed to O(filesize) | |
746 | |
15008
0a43341c8bfd
less amateurish-looking mpcf.txt patch by (Jeff >snacky ikaruga co uk<)
michael
parents:
14919
diff
changeset
|
747 headers MUST be placed at least at the start of the file and immediately before |
12501 | 748 the index or at the file end if there is no index |
16428 | 749 headers MUST be repeated at least twice (so they exist three times in a file) |
9295 | 750 |
16685 | 751 there MUST be a sync point immediately before the first frame after any headers |
12503 | 752 |
16842
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
753 |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
754 Index: |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
755 ------ |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
756 |
15008
0a43341c8bfd
less amateurish-looking mpcf.txt patch by (Jeff >snacky ikaruga co uk<)
michael
parents:
14919
diff
changeset
|
757 Note: with realtime streaming, there is no end, so no index there either |
17533 | 758 Index MAY only be repeated after main headers. |
17726 | 759 If an index is written anywhere in the file, it MUST be written at end of |
760 file as well. | |
9310 | 761 |
16842
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
762 |
17669 | 763 Info: |
764 ----- | |
765 | |
17771 | 766 If a info packet is stored anywhere then a muxer MUST also store an identical |
767 info packet after every main-stream-header set | |
9310 | 768 |
17771 | 769 If a demuxer has seen several info packets with the same chapter_id and |
770 stream_id then it MUST ignore all but the one with the highest position in | |
771 the file | |
17669 | 772 |
17771 | 773 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
|
774 |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
775 demuxer (non-normative): |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
776 ------------------------ |
12501 | 777 |
16428 | 778 in the absence of a valid header at the beginning, players SHOULD search for |
779 backup headers starting at offset 2^x; for each x players SHOULD end their | |
780 search at a particular offset when any startcode is found (including syncpoint) | |
12501 | 781 |
16842
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
782 |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
783 |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
784 Semantic requirements: |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
785 ====================== |
16429 | 786 |
17018
baf593fcf738
Change MUST to SHOULD have disposition and if applicable language tags.
al
parents:
16843
diff
changeset
|
787 If more than one stream of a given stream class is present, each one SHOULD |
16429 | 788 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
|
789 It often highly improves usability and is therefore strongly encouraged. |
16429 | 790 |
791 A demuxer MUST NOT demux a stream which contains more than one stream, or which | |
792 is wrapped in a structure to facilitate more than one stream or otherwise | |
793 duplicate the role of a container. any such file is to be considered invalid. | |
794 | |
12501 | 795 |
16842
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
796 |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
797 Sample code (Public Domain, & untested): |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
798 ======================================== |
9294 | 799 |
800 typedef BufferContext{ | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
801 uint8_t *buf; |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
802 uint8_t *buf_ptr; |
9294 | 803 }BufferContext; |
804 | |
805 static inline uint64_t get_bytes(BufferContext *bc, int count){ | |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
806 uint64_t val=0; |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
807 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
808 assert(count>0 && count<9); |
9294 | 809 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
810 for(i=0; i<count; i++){ |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
811 val <<=8; |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
812 val += *(bc->buf_ptr++); |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
813 } |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
814 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
815 return val; |
9294 | 816 } |
817 | |
818 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
|
819 uint64_t val=0; |
9294 | 820 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
821 assert(count>0 && count<9); |
9294 | 822 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
823 for(i=count-1; i>=0; i--){ |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
824 *(bc->buf_ptr++)= val >> (8*i); |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
825 } |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
826 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
827 return val; |
9294 | 828 } |
829 | |
10061 | 830 static inline uint64_t get_v(BufferContext *bc){ |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
831 uint64_t val= 0; |
9294 | 832 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
833 for(; space_left(bc) > 0; ){ |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
834 int tmp= *(bc->buf_ptr++); |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
835 if(tmp&0x80) |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
836 val= (val<<7) + tmp - 0x80; |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
837 else |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
838 return (val<<7) + tmp; |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
839 } |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
840 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
841 return -1; |
9294 | 842 } |
843 | |
10061 | 844 static inline int put_v(BufferContext *bc, uint64_t val){ |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
845 int i; |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
846 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
847 if(space_left(bc) < 9) return -1; |
9294 | 848 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
849 val &= 0x7FFFFFFFFFFFFFFFULL; // FIXME can only encode upto 63 bits currently |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
850 for(i=7; ; i+=7){ |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
851 if(val>>i == 0) break; |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
852 } |
9294 | 853 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
854 for(i-=7; i>0; i-=7){ |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
855 *(bc->buf_ptr++)= 0x80 | (val>>i); |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
856 } |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
857 *(bc->buf_ptr++)= val&0x7F; |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
858 |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
859 return 0; |
9579
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
860 } |
89d27a306886
*signed int vlc (needs only 5 lines of code so its no increase of complexity)
michael
parents:
9422
diff
changeset
|
861 |
12333 | 862 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
|
863 if(reset) memset(pts_cache, -1, delay*sizeof(int64_t)); |
12333 | 864 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
865 while(delay--){ |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
866 int64_t t= pts_cache[delay]; |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
867 if(t < pts){ |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
868 pts_cache[delay]= pts; |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
869 pts= t; |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
870 } |
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
871 } |
12333 | 872 |
16686
93d4be7ef83e
cosmetic reformatting: tabs --> spaces, prettyprinting, trailing whitespace
diego
parents:
16685
diff
changeset
|
873 return pts; |
12333 | 874 } |
875 | |
16842
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 |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
878 Authors: |
d977560c702b
Reformat section titles so that it becomes easier to tell sections and
diego
parents:
16686
diff
changeset
|
879 ======== |
10158
93e5428d0b3e
some changes (michael: is the colorspace_type field needed?)
alex
parents:
10061
diff
changeset
|
880 |
16428 | 881 Folks from the MPlayer developers mailing list (http://www.mplayerhq.hu/). |
882 Authors in alphabetical order: (FIXME! Tell us if we left you out) | |
16843 | 883 Beregszaszi, Alex (alex@fsn.hu) |
884 Bunkus, Moritz (moritz@bunkus.org) | |
885 Diedrich, Tobias (ranma+mplayer@tdiedrich.de) | |
886 Felker, Rich (dalias@aerifal.cx) | |
887 Franz, Fabian (FabianFranz@gmx.de) | |
888 Gereoffy, Arpad (arpi@thot.banki.hu) | |
889 Hess, Andreas (jaska@gmx.net) | |
890 Niedermayer, Michael (michaelni@gmx.at) | |
891 Shimon, Oded (ods15@ods15.dyndns.org) |