diff options
author | Tobias Rapp <t.rapp@noa-audio.com> | 2014-09-15 17:15:42 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-10-07 23:18:15 +0200 |
commit | 7d327d62426206bd89fc2e0b996faa5be867c0a2 (patch) | |
tree | 751916589f20cb842be258b04adee2c8b95e2720 /doc/ffprobe.xsd | |
parent | b36b2c89dfd7540c8b4a041fbe702d02a8f04f9e (diff) | |
download | ffmpeg-7d327d62426206bd89fc2e0b996faa5be867c0a2.tar.gz |
ffprobe: add pixel format component bit depth output
Adds output of bit depth per pixel format component to
ffprobe -show_pixel_formats option.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'doc/ffprobe.xsd')
-rw-r--r-- | doc/ffprobe.xsd | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/ffprobe.xsd b/doc/ffprobe.xsd index e460e01f42..bf17186d32 100644 --- a/doc/ffprobe.xsd +++ b/doc/ffprobe.xsd @@ -290,9 +290,21 @@ <xsd:attribute name="alpha" type="xsd:int" use="required"/> </xsd:complexType> + <xsd:complexType name="pixelFormatComponentType"> + <xsd:attribute name="index" type="xsd:int" use="required"/> + <xsd:attribute name="bit_depth" type="xsd:int" use="required"/> + </xsd:complexType> + + <xsd:complexType name="pixelFormatComponentsType"> + <xsd:sequence> + <xsd:element name="component" type="ffprobe:pixelFormatComponentType" minOccurs="0" maxOccurs="unbounded"/> + </xsd:sequence> + </xsd:complexType> + <xsd:complexType name="pixelFormatType"> <xsd:sequence> <xsd:element name="flags" type="ffprobe:pixelFormatFlagsType" minOccurs="0" maxOccurs="1"/> + <xsd:element name="components" type="ffprobe:pixelFormatComponentsType" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required"/> |