[FFmpeg-cvslog] doc/ffprobe.xsd: add build_date and build_time as optional attributes

Dave Rice git at videolan.org
Wed May 13 12:37:36 CEST 2015


ffmpeg | branch: master | Dave Rice <dave at dericed.com> | Tue May 12 16:52:55 2015 -0400| [6d787aea96d4bfa441d1c3251dfaff7ef2bcb74b] | committer: Stefano Sabatini

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 at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6d787aea96d4bfa441d1c3251dfaff7ef2bcb74b
---

 doc/ffprobe.xsd |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/doc/ffprobe.xsd b/doc/ffprobe.xsd
index dab55ee..1481ad9 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>



More information about the ffmpeg-cvslog mailing list