summaryrefslogtreecommitdiff
path: root/doc/ffprobe.xsd
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2011-12-29 13:24:59 +0100
committerStefano Sabatini <stefasab@gmail.com>2012-01-04 01:06:28 +0100
commitd6da16dca5a64ed7ab2db54710a0c703f179d3ba (patch)
treedb1894ce7e35cc3c9ac6b67d523cbe5a87266655 /doc/ffprobe.xsd
parent55ed19bf3b651c6215a6ffb20b751dbb3dd8568e (diff)
ffprobe: add support to option -show_error
Diffstat (limited to 'doc/ffprobe.xsd')
-rw-r--r--doc/ffprobe.xsd6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/ffprobe.xsd b/doc/ffprobe.xsd
index 92bc2b1b55..93da1d4429 100644
--- a/doc/ffprobe.xsd
+++ b/doc/ffprobe.xsd
@@ -11,6 +11,7 @@
<xsd:element name="packets" type="ffprobe:packetsType" minOccurs="0" maxOccurs="1" />
<xsd:element name="streams" type="ffprobe:streamsType" minOccurs="0" maxOccurs="1" />
<xsd:element name="format" type="ffprobe:formatType" minOccurs="0" maxOccurs="1" />
+ <xsd:element name="error" type="ffprobe:errorType" minOccurs="0" maxOccurs="1" />
</xsd:sequence>
</xsd:complexType>
@@ -93,4 +94,9 @@
<xsd:attribute name="key" type="xsd:string" use="required"/>
<xsd:attribute name="value" type="xsd:string" use="required"/>
</xsd:complexType>
+
+ <xsd:complexType name="errorType">
+ <xsd:attribute name="code" type="xsd:int" use="required"/>
+ <xsd:attribute name="string" type="xsd:string" use="required"/>
+ </xsd:complexType>
</xsd:schema>