diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2013-07-28 15:54:35 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-07-28 16:38:49 +0200 |
commit | 18df69d238fb024022e9e6231b86e21350b3f4a1 (patch) | |
tree | a238bb71831df7af25defcaba700fbe30f5e6bca /doc/ffprobe.xsd | |
parent | f0308af5fac9f009ed05044bb3e2749a8868d8a3 (diff) | |
download | ffmpeg-18df69d238fb024022e9e6231b86e21350b3f4a1.tar.gz |
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.xsd | 2 |
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"/> |