changeset 4384:bfb10be2b631 libavformat

use timestamp as modification date
author bcoudurier
date Thu, 05 Feb 2009 19:30:01 +0000
parents 0b688ff86d2f
children e8e064a00ea5
files mxfenc.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mxfenc.c	Thu Feb 05 18:41:06 2009 +0000
+++ b/mxfenc.c	Thu Feb 05 19:30:01 2009 +0000
@@ -432,9 +432,9 @@
     mxf_write_local_tag(pb, 16, 0x3C05);
     mxf_write_uuid(pb, Identification, 2);
 
-    // write modified date
+    // modification date
     mxf_write_local_tag(pb, 8, 0x3C06);
-    put_be64(pb, 0);
+    put_be64(pb, s->timestamp);
 }
 
 static void mxf_write_content_storage(AVFormatContext *s)