diff options
author | Dave Rice <dave@dericed.com> | 2017-03-14 12:59:43 -0400 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2017-03-28 00:13:47 +0200 |
commit | 52d9442a557e8137f261ba19defb08583f59d572 (patch) | |
tree | 0517003408fd720209778b3360b428ecafb20ac7 /doc | |
parent | bcd7153df382d0ff81453bc4044a954058c92841 (diff) | |
download | ffmpeg-52d9442a557e8137f261ba19defb08583f59d572.tar.gz |
ffprobe.xsd: add frame log data
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ffprobe.xsd | 15 |
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"/> |