diff options
author | Tobias Rapp <t.rapp@noa-audio.com> | 2014-09-15 17:15:17 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-10-07 23:18:15 +0200 |
commit | b36b2c89dfd7540c8b4a041fbe702d02a8f04f9e (patch) | |
tree | 170bd60bcef82ad14734e90ca128514c9fe5ac24 /doc | |
parent | 143a8a44f4ec7a9a0fbd10909cc0cc93d5f39ace (diff) | |
download | ffmpeg-b36b2c89dfd7540c8b4a041fbe702d02a8f04f9e.tar.gz |
ffprobe: add pixel format flags output
Adds output of pixel format flags to ffprobe -show_pixel_formats option.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
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 598f6518cf..e460e01f42 100644 --- a/doc/ffprobe.xsd +++ b/doc/ffprobe.xsd @@ -279,7 +279,22 @@ </xsd:sequence> </xsd:complexType> + <xsd:complexType name="pixelFormatFlagsType"> + <xsd:attribute name="big_endian" type="xsd:int" use="required"/> + <xsd:attribute name="palette" type="xsd:int" use="required"/> + <xsd:attribute name="bitstream" type="xsd:int" use="required"/> + <xsd:attribute name="hwaccel" type="xsd:int" use="required"/> + <xsd:attribute name="planar" type="xsd:int" use="required"/> + <xsd:attribute name="rgb" type="xsd:int" use="required"/> + <xsd:attribute name="pseudopal" type="xsd:int" use="required"/> + <xsd:attribute name="alpha" type="xsd:int" use="required"/> + </xsd:complexType> + <xsd:complexType name="pixelFormatType"> + <xsd:sequence> + <xsd:element name="flags" type="ffprobe:pixelFormatFlagsType" minOccurs="0" maxOccurs="1"/> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required"/> <xsd:attribute name="nb_components" type="xsd:int" use="required"/> <xsd:attribute name="bits_per_pixel" type="xsd:int"/> |