diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-01-30 00:54:36 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-07-30 19:23:08 +0200 |
commit | 547d64a49a870e83463edd23fb0af736673ea9f2 (patch) | |
tree | 6eeb48f67253b8968383ad1b0672a166a0d4d1a2 /doc/ffprobe.xsd | |
parent | ba3e3311ef3f8b33a975535988d2305cea15d514 (diff) | |
download | ffmpeg-547d64a49a870e83463edd23fb0af736673ea9f2.tar.gz |
ffprobe: print some basic information about avframe side data
Reviewed-by: Stefano Sabatini <stefasab@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'doc/ffprobe.xsd')
-rw-r--r-- | doc/ffprobe.xsd | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/ffprobe.xsd b/doc/ffprobe.xsd index 9ef9ecbdca..2d933c12f7 100644 --- a/doc/ffprobe.xsd +++ b/doc/ffprobe.xsd @@ -55,6 +55,7 @@ <xsd:complexType name="frameType"> <xsd:sequence> <xsd:element name="tag" type="ffprobe:tagType" minOccurs="0" maxOccurs="unbounded"/> + <xsd:element name="side_data_list" type="ffprobe:frameSideDataListType" minOccurs="0" maxOccurs="1" /> </xsd:sequence> <xsd:attribute name="media_type" type="xsd:string" use="required"/> @@ -91,6 +92,16 @@ <xsd:attribute name="repeat_pict" type="xsd:int" /> </xsd:complexType> + <xsd:complexType name="frameSideDataListType"> + <xsd:sequence> + <xsd:element name="side_data" type="ffprobe:frameSideDataType" minOccurs="1" maxOccurs="unbounded"/> + </xsd:sequence> + </xsd:complexType> + <xsd:complexType name="frameSideDataType"> + <xsd:attribute name="side_data_type" type="xsd:string"/> + <xsd:attribute name="side_data_size" type="xsd:int" /> + </xsd:complexType> + <xsd:complexType name="subtitleType"> <xsd:attribute name="media_type" type="xsd:string" fixed="subtitle" use="required"/> <xsd:attribute name="pts" type="xsd:long" /> |