Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2013-07-28 17:54:35 +0400
committerStefano Sabatini <stefasab@gmail.com>2013-07-28 18:38:49 +0400
commit18df69d238fb024022e9e6231b86e21350b3f4a1 (patch)
treea238bb71831df7af25defcaba700fbe30f5e6bca /doc/ffprobe.xsd
parentf0308af5fac9f009ed05044bb3e2749a8868d8a3 (diff)
doc/ffprobe.xsd: specify tag elements in stream after disposition element
Fix XML schema validation, since elements must appear in the same order as specified in the schema.
Diffstat (limited to 'doc/ffprobe.xsd')
-rw-r--r--doc/ffprobe.xsd2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ffprobe.xsd b/doc/ffprobe.xsd
index bd890b1fd0..82cb80d048 100644
--- a/doc/ffprobe.xsd
+++ b/doc/ffprobe.xsd
@@ -103,8 +103,8 @@
<xsd:complexType name="streamType">
<xsd:sequence>
- <xsd:element name="tag" type="ffprobe:tagType" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="disposition" type="ffprobe:streamDispositionType" minOccurs="0" maxOccurs="1"/>
+ <xsd:element name="tag" type="ffprobe:tagType" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="index" type="xsd:int" use="required"/>