[FFmpeg-cvslog] ffprobe.xsd: add frame log data
Dave Rice
git at videolan.org
Tue Mar 28 01:14:04 EEST 2017
ffmpeg | branch: master | Dave Rice <dave at dericed.com> | Tue Mar 14 12:59:43 2017 -0400| [52d9442a557e8137f261ba19defb08583f59d572] | committer: Michael Niedermayer
ffprobe.xsd: add frame log data
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=52d9442a557e8137f261ba19defb08583f59d572
---
doc/ffprobe.xsd | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/doc/ffprobe.xsd b/doc/ffprobe.xsd
index f64656a..6d929a1 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"/>
More information about the ffmpeg-cvslog
mailing list