[SCM] libav/experimental: use timestamp as modification date
siretart at users.alioth.debian.org
siretart at users.alioth.debian.org
Sun Jun 30 16:36:58 UTC 2013
The following commit has been merged in the experimental branch:
commit 5ccad11da0b14816d3f2820641ac7a2bc25aae97
Author: Baptiste Coudurier <baptiste.coudurier at gmail.com>
Date: Thu Feb 5 19:30:01 2009 +0000
use timestamp as modification date
Originally committed as revision 17010 to svn://svn.ffmpeg.org/ffmpeg/trunk
diff --git a/libavformat/mxfenc.c b/libavformat/mxfenc.c
index 414ef55..992cc76 100644
--- a/libavformat/mxfenc.c
+++ b/libavformat/mxfenc.c
@@ -432,9 +432,9 @@ static void mxf_write_identification(AVFormatContext *s)
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)
--
Libav/FFmpeg packaging
More information about the pkg-multimedia-commits
mailing list