summaryrefslogtreecommitdiff
path: root/doc/ffprobe.xsd
diff options
context:
space:
mode:
authorDave Rice <dave@dericed.com>2017-03-14 12:59:43 -0400
committerMichael Niedermayer <michael@niedermayer.cc>2017-03-28 00:13:47 +0200
commit52d9442a557e8137f261ba19defb08583f59d572 (patch)
tree0517003408fd720209778b3360b428ecafb20ac7 /doc/ffprobe.xsd
parentbcd7153df382d0ff81453bc4044a954058c92841 (diff)
ffprobe.xsd: add frame log data
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'doc/ffprobe.xsd')
-rw-r--r--doc/ffprobe.xsd15
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/ffprobe.xsd b/doc/ffprobe.xsd
index f64656adf1..6d929a1a32 100644
--- a/doc/ffprobe.xsd
+++ b/doc/ffprobe.xsd
@@ -83,6 +83,7 @@
<xsd:complexType name="frameType">
<xsd:sequence>
<xsd:element name="tag" type="ffprobe:tagType" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="logs" type="ffprobe:logsType" minOccurs="0" maxOccurs="1"/>
<xsd:element name="side_data_list" type="ffprobe:frameSideDataListType" minOccurs="0" maxOccurs="1" />
</xsd:sequence>
@@ -121,6 +122,20 @@
<xsd:attribute name="repeat_pict" type="xsd:int" />
</xsd:complexType>
+ <xsd:complexType name="logsType">
+ <xsd:sequence>
+ <xsd:element name="log" type="ffprobe:logType" minOccurs="1" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ <xsd:complexType name="logType">
+ <xsd:attribute name="context" type="xsd:string"/>
+ <xsd:attribute name="level" type="xsd:int" />
+ <xsd:attribute name="category" type="xsd:int" />
+ <xsd:attribute name="parent_context" type="xsd:string"/>
+ <xsd:attribute name="parent_category" type="xsd:int" />
+ <xsd:attribute name="message" type="xsd:string"/>
+ </xsd:complexType>
+
<xsd:complexType name="frameSideDataListType">
<xsd:sequence>
<xsd:element name="side_data" type="ffprobe:frameSideDataType" minOccurs="1" maxOccurs="unbounded"/>