summaryrefslogtreecommitdiff
path: root/doc/ffprobe.xsd
diff options
context:
space:
mode:
authorDave Rice <dave@dericed.com>2015-05-12 16:52:55 -0400
committerStefano Sabatini <stefasab@gmail.com>2015-05-13 12:35:16 +0200
commit6d787aea96d4bfa441d1c3251dfaff7ef2bcb74b (patch)
tree0b1e32db0272ded087c859504b4aa8e18b5b9ae0 /doc/ffprobe.xsd
parentb0294f0cfb1bd16bbb570064d01e788bc6221fd1 (diff)
doc/ffprobe.xsd: add build_date and build_time as optional attributes
This partly undoes 7b35a01. The intent of patch 7b35a01 was to no longer use build_date and build_time as attributes of programVersion, but the patch also had the effect of making all records generated with an earlier ffprobe build with build_date and build_time as invalid. This patch puts the two attributes back but without mandating their use, thus older ffprobe records as backwards compatible with the current schema and their use is no longer required. Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
Diffstat (limited to 'doc/ffprobe.xsd')
-rw-r--r--doc/ffprobe.xsd2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/ffprobe.xsd b/doc/ffprobe.xsd
index dab55eeffb..1481ad9eb0 100644
--- a/doc/ffprobe.xsd
+++ b/doc/ffprobe.xsd
@@ -272,6 +272,8 @@
<xsd:complexType name="programVersionType">
<xsd:attribute name="version" type="xsd:string" use="required"/>
<xsd:attribute name="copyright" type="xsd:string" use="required"/>
+ <xsd:attribute name="build_date" type="xsd:string"/>
+ <xsd:attribute name="build_time" type="xsd:string"/>
<xsd:attribute name="compiler_ident" type="xsd:string" use="required"/>
<xsd:attribute name="configuration" type="xsd:string" use="required"/>
</xsd:complexType>