Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / ffmpeg / doc / ffprobe.xsd
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
4     targetNamespace="http://www.ffmpeg.org/schema/ffprobe"
5     xmlns:ffprobe="http://www.ffmpeg.org/schema/ffprobe">
6
7     <xsd:element name="ffprobe" type="ffprobe:ffprobeType"/>
8
9     <xsd:complexType name="ffprobeType">
10         <xsd:sequence>
11             <xsd:element name="program_version"  type="ffprobe:programVersionType"  minOccurs="0" maxOccurs="1" />
12             <xsd:element name="library_versions" type="ffprobe:libraryVersionsType" minOccurs="0" maxOccurs="1" />
13             <xsd:element name="packets"  type="ffprobe:packetsType" minOccurs="0" maxOccurs="1" />
14             <xsd:element name="frames"   type="ffprobe:framesType"  minOccurs="0" maxOccurs="1" />
15             <xsd:element name="programs" type="ffprobe:programsType" minOccurs="0" maxOccurs="1" />
16             <xsd:element name="streams"  type="ffprobe:streamsType" minOccurs="0" maxOccurs="1" />
17             <xsd:element name="chapters" type="ffprobe:chaptersType" minOccurs="0" maxOccurs="1" />
18             <xsd:element name="format"   type="ffprobe:formatType"  minOccurs="0" maxOccurs="1" />
19             <xsd:element name="error"    type="ffprobe:errorType"   minOccurs="0" maxOccurs="1" />
20         </xsd:sequence>
21     </xsd:complexType>
22
23     <xsd:complexType name="packetsType">
24         <xsd:sequence>
25             <xsd:element name="packet" type="ffprobe:packetType" minOccurs="0" maxOccurs="unbounded"/>
26         </xsd:sequence>
27     </xsd:complexType>
28
29     <xsd:complexType name="framesType">
30         <xsd:sequence>
31             <xsd:choice minOccurs="0" maxOccurs="unbounded">
32                 <xsd:element name="frame" type="ffprobe:frameType" minOccurs="0" maxOccurs="unbounded"/>
33                 <xsd:element name="subtitle" type="ffprobe:subtitleType" minOccurs="0" maxOccurs="unbounded"/>
34             </xsd:choice>
35         </xsd:sequence>
36     </xsd:complexType>
37
38     <xsd:complexType name="packetType">
39       <xsd:attribute name="codec_type"    type="xsd:string" use="required" />
40       <xsd:attribute name="stream_index"  type="xsd:int" use="required" />
41       <xsd:attribute name="pts"           type="xsd:long"  />
42       <xsd:attribute name="pts_time"      type="xsd:float" />
43       <xsd:attribute name="dts"           type="xsd:long"  />
44       <xsd:attribute name="dts_time"      type="xsd:float" />
45       <xsd:attribute name="duration"      type="xsd:long"  />
46       <xsd:attribute name="duration_time" type="xsd:float" />
47       <xsd:attribute name="convergence_duration"      type="xsd:long"  />
48       <xsd:attribute name="convergence_duration_time" type="xsd:float" />
49       <xsd:attribute name="size"          type="xsd:long" use="required" />
50       <xsd:attribute name="pos"           type="xsd:long"  />
51       <xsd:attribute name="flags"         type="xsd:string" use="required" />
52       <xsd:attribute name="data"          type="xsd:string" />
53       <xsd:attribute name="data_hash"     type="xsd:string" />
54     </xsd:complexType>
55
56     <xsd:complexType name="frameType">
57       <xsd:sequence>
58             <xsd:element name="tag" type="ffprobe:tagType" minOccurs="0" maxOccurs="unbounded"/>
59             <xsd:element name="side_data_list" type="ffprobe:frameSideDataListType"   minOccurs="0" maxOccurs="1" />
60       </xsd:sequence>
61
62       <xsd:attribute name="media_type"    type="xsd:string" use="required"/>
63       <xsd:attribute name="key_frame"     type="xsd:int"    use="required"/>
64       <xsd:attribute name="pts"           type="xsd:long" />
65       <xsd:attribute name="pts_time"      type="xsd:float"/>
66       <xsd:attribute name="pkt_pts"       type="xsd:long" />
67       <xsd:attribute name="pkt_pts_time"  type="xsd:float"/>
68       <xsd:attribute name="pkt_dts"       type="xsd:long" />
69       <xsd:attribute name="pkt_dts_time"  type="xsd:float"/>
70       <xsd:attribute name="best_effort_timestamp"      type="xsd:long" />
71       <xsd:attribute name="best_effort_timestamp_time" type="xsd:float" />
72       <xsd:attribute name="pkt_duration"  type="xsd:long" />
73       <xsd:attribute name="pkt_duration_time" type="xsd:float"/>
74       <xsd:attribute name="pkt_pos"       type="xsd:long" />
75       <xsd:attribute name="pkt_size"      type="xsd:int" />
76
77       <!-- audio attributes -->
78       <xsd:attribute name="sample_fmt"             type="xsd:string"/>
79       <xsd:attribute name="nb_samples"             type="xsd:long"  />
80       <xsd:attribute name="channels"               type="xsd:int"   />
81       <xsd:attribute name="channel_layout"         type="xsd:string"/>
82
83       <!-- video attributes -->
84       <xsd:attribute name="width"                  type="xsd:long"  />
85       <xsd:attribute name="height"                 type="xsd:long"  />
86       <xsd:attribute name="pix_fmt"                type="xsd:string"/>
87       <xsd:attribute name="sample_aspect_ratio"    type="xsd:string"/>
88       <xsd:attribute name="pict_type"              type="xsd:string"/>
89       <xsd:attribute name="coded_picture_number"   type="xsd:long"  />
90       <xsd:attribute name="display_picture_number" type="xsd:long"  />
91       <xsd:attribute name="interlaced_frame"       type="xsd:int"   />
92       <xsd:attribute name="top_field_first"        type="xsd:int"   />
93       <xsd:attribute name="repeat_pict"            type="xsd:int"   />
94     </xsd:complexType>
95
96     <xsd:complexType name="frameSideDataListType">
97         <xsd:sequence>
98             <xsd:element name="side_data" type="ffprobe:frameSideDataType" minOccurs="1" maxOccurs="unbounded"/>
99         </xsd:sequence>
100     </xsd:complexType>
101     <xsd:complexType name="frameSideDataType">
102         <xsd:attribute name="side_data_type"              type="xsd:string"/>
103         <xsd:attribute name="side_data_size"              type="xsd:int"   />
104     </xsd:complexType>
105
106     <xsd:complexType name="subtitleType">
107       <xsd:attribute name="media_type"         type="xsd:string" fixed="subtitle" use="required"/>
108       <xsd:attribute name="pts"                type="xsd:long" />
109       <xsd:attribute name="pts_time"           type="xsd:float"/>
110       <xsd:attribute name="format"             type="xsd:int"  />
111       <xsd:attribute name="start_display_time" type="xsd:int"  />
112       <xsd:attribute name="end_display_time"   type="xsd:int"  />
113       <xsd:attribute name="num_rects"          type="xsd:int"  />
114     </xsd:complexType>
115
116     <xsd:complexType name="streamsType">
117         <xsd:sequence>
118             <xsd:element name="stream" type="ffprobe:streamType" minOccurs="0" maxOccurs="unbounded"/>
119         </xsd:sequence>
120     </xsd:complexType>
121
122     <xsd:complexType name="programsType">
123         <xsd:sequence>
124             <xsd:element name="program" type="ffprobe:programType" minOccurs="0" maxOccurs="unbounded"/>
125         </xsd:sequence>
126     </xsd:complexType>
127
128     <xsd:complexType name="streamDispositionType">
129       <xsd:attribute name="default"          type="xsd:int" use="required" />
130       <xsd:attribute name="dub"              type="xsd:int" use="required" />
131       <xsd:attribute name="original"         type="xsd:int" use="required" />
132       <xsd:attribute name="comment"          type="xsd:int" use="required" />
133       <xsd:attribute name="lyrics"           type="xsd:int" use="required" />
134       <xsd:attribute name="karaoke"          type="xsd:int" use="required" />
135       <xsd:attribute name="forced"           type="xsd:int" use="required" />
136       <xsd:attribute name="hearing_impaired" type="xsd:int" use="required" />
137       <xsd:attribute name="visual_impaired"  type="xsd:int" use="required" />
138       <xsd:attribute name="clean_effects"    type="xsd:int" use="required" />
139       <xsd:attribute name="attached_pic"     type="xsd:int" use="required" />
140     </xsd:complexType>
141
142     <xsd:complexType name="streamType">
143       <xsd:sequence>
144         <xsd:element name="disposition" type="ffprobe:streamDispositionType" minOccurs="0" maxOccurs="1"/>
145         <xsd:element name="tag" type="ffprobe:tagType" minOccurs="0" maxOccurs="unbounded"/>
146       </xsd:sequence>
147
148       <xsd:attribute name="index"            type="xsd:int" use="required"/>
149       <xsd:attribute name="codec_name"       type="xsd:string" />
150       <xsd:attribute name="codec_long_name"  type="xsd:string" />
151       <xsd:attribute name="profile"          type="xsd:string" />
152       <xsd:attribute name="codec_type"       type="xsd:string" />
153       <xsd:attribute name="codec_time_base"  type="xsd:string" use="required"/>
154       <xsd:attribute name="codec_tag"        type="xsd:string" use="required"/>
155       <xsd:attribute name="codec_tag_string" type="xsd:string" use="required"/>
156       <xsd:attribute name="extradata"        type="xsd:string" />
157       <xsd:attribute name="extradata_hash"   type="xsd:string" />
158
159       <!-- video attributes -->
160       <xsd:attribute name="width"                type="xsd:int"/>
161       <xsd:attribute name="height"               type="xsd:int"/>
162       <xsd:attribute name="has_b_frames"         type="xsd:int"/>
163       <xsd:attribute name="sample_aspect_ratio"  type="xsd:string"/>
164       <xsd:attribute name="display_aspect_ratio" type="xsd:string"/>
165       <xsd:attribute name="pix_fmt"              type="xsd:string"/>
166       <xsd:attribute name="level"                type="xsd:int"/>
167       <xsd:attribute name="color_range"          type="xsd:string"/>
168       <xsd:attribute name="color_space"          type="xsd:string"/>
169       <xsd:attribute name="timecode"             type="xsd:string"/>
170
171       <!-- audio attributes -->
172       <xsd:attribute name="sample_fmt"       type="xsd:string"/>
173       <xsd:attribute name="sample_rate"      type="xsd:int"/>
174       <xsd:attribute name="channels"         type="xsd:int"/>
175       <xsd:attribute name="channel_layout"   type="xsd:string"/>
176       <xsd:attribute name="bits_per_sample"  type="xsd:int"/>
177
178       <xsd:attribute name="id"               type="xsd:string"/>
179       <xsd:attribute name="r_frame_rate"     type="xsd:string" use="required"/>
180       <xsd:attribute name="avg_frame_rate"   type="xsd:string" use="required"/>
181       <xsd:attribute name="time_base"        type="xsd:string" use="required"/>
182       <xsd:attribute name="start_pts"        type="xsd:long"/>
183       <xsd:attribute name="start_time"       type="xsd:float"/>
184       <xsd:attribute name="duration_ts"      type="xsd:long"/>
185       <xsd:attribute name="duration"         type="xsd:float"/>
186       <xsd:attribute name="bit_rate"         type="xsd:int"/>
187       <xsd:attribute name="max_bit_rate"     type="xsd:int"/>
188       <xsd:attribute name="bits_per_raw_sample" type="xsd:int"/>
189       <xsd:attribute name="nb_frames"        type="xsd:int"/>
190       <xsd:attribute name="nb_read_frames"   type="xsd:int"/>
191       <xsd:attribute name="nb_read_packets"  type="xsd:int"/>
192     </xsd:complexType>
193
194     <xsd:complexType name="programType">
195       <xsd:sequence>
196         <xsd:element name="tag" type="ffprobe:tagType" minOccurs="0" maxOccurs="unbounded"/>
197         <xsd:element name="streams" type="ffprobe:streamsType" minOccurs="0" maxOccurs="1"/>
198       </xsd:sequence>
199
200       <xsd:attribute name="program_id"           type="xsd:int"    use="required"/>
201       <xsd:attribute name="program_num"          type="xsd:int"    use="required"/>
202       <xsd:attribute name="nb_streams"           type="xsd:int"    use="required"/>
203       <xsd:attribute name="start_time"           type="xsd:float"/>
204       <xsd:attribute name="start_pts"            type="xsd:long"/>
205       <xsd:attribute name="end_time"             type="xsd:float"/>
206       <xsd:attribute name="end_pts"              type="xsd:long"/>
207       <xsd:attribute name="pmt_pid"              type="xsd:int"    use="required"/>
208       <xsd:attribute name="pcr_pid"              type="xsd:int"    use="required"/>
209     </xsd:complexType>
210
211     <xsd:complexType name="formatType">
212       <xsd:sequence>
213         <xsd:element name="tag" type="ffprobe:tagType" minOccurs="0" maxOccurs="unbounded"/>
214       </xsd:sequence>
215
216       <xsd:attribute name="filename"         type="xsd:string" use="required"/>
217       <xsd:attribute name="nb_streams"       type="xsd:int"    use="required"/>
218       <xsd:attribute name="nb_programs"      type="xsd:int"    use="required"/>
219       <xsd:attribute name="format_name"      type="xsd:string" use="required"/>
220       <xsd:attribute name="format_long_name" type="xsd:string"/>
221       <xsd:attribute name="start_time"       type="xsd:float"/>
222       <xsd:attribute name="duration"         type="xsd:float"/>
223       <xsd:attribute name="size"             type="xsd:long"/>
224       <xsd:attribute name="bit_rate"         type="xsd:long"/>
225       <xsd:attribute name="probe_score"      type="xsd:int"/>
226     </xsd:complexType>
227
228     <xsd:complexType name="tagType">
229       <xsd:attribute name="key"   type="xsd:string" use="required"/>
230       <xsd:attribute name="value" type="xsd:string" use="required"/>
231     </xsd:complexType>
232
233     <xsd:complexType name="errorType">
234       <xsd:attribute name="code"   type="xsd:int"    use="required"/>
235       <xsd:attribute name="string" type="xsd:string" use="required"/>
236     </xsd:complexType>
237
238     <xsd:complexType name="programVersionType">
239       <xsd:attribute name="version"          type="xsd:string" use="required"/>
240       <xsd:attribute name="copyright"        type="xsd:string" use="required"/>
241       <xsd:attribute name="build_date"       type="xsd:string" use="required"/>
242       <xsd:attribute name="build_time"       type="xsd:string" use="required"/>
243       <xsd:attribute name="compiler_ident"   type="xsd:string" use="required"/>
244       <xsd:attribute name="configuration"    type="xsd:string" use="required"/>
245     </xsd:complexType>
246
247     <xsd:complexType name="chaptersType">
248       <xsd:sequence>
249         <xsd:element name="chapter" type="ffprobe:chapterType" minOccurs="0" maxOccurs="unbounded"/>
250       </xsd:sequence>
251     </xsd:complexType>
252
253     <xsd:complexType name="chapterType">
254       <xsd:sequence>
255         <xsd:element name="tag" type="ffprobe:tagType" minOccurs="0" maxOccurs="unbounded"/>
256       </xsd:sequence>
257
258       <xsd:attribute name="id"         type="xsd:int" use="required"/>
259       <xsd:attribute name="time_base"  type="xsd:string" use="required"/>
260       <xsd:attribute name="start"      type="xsd:int" use="required"/>
261       <xsd:attribute name="start_time" type="xsd:float"/>
262       <xsd:attribute name="end"        type="xsd:int" use="required"/>
263       <xsd:attribute name="end_time"   type="xsd:float" use="required"/>
264     </xsd:complexType>
265
266     <xsd:complexType name="libraryVersionType">
267       <xsd:attribute name="name"        type="xsd:string" use="required"/>
268       <xsd:attribute name="major"       type="xsd:int"    use="required"/>
269       <xsd:attribute name="minor"       type="xsd:int"    use="required"/>
270       <xsd:attribute name="micro"       type="xsd:int"    use="required"/>
271       <xsd:attribute name="version"     type="xsd:int"    use="required"/>
272       <xsd:attribute name="ident"       type="xsd:string" use="required"/>
273     </xsd:complexType>
274
275     <xsd:complexType name="libraryVersionsType">
276         <xsd:sequence>
277           <xsd:element name="library_version" type="ffprobe:libraryVersionType" minOccurs="0" maxOccurs="unbounded"/>
278         </xsd:sequence>
279     </xsd:complexType>
280 </xsd:schema>