Commit eacc40e8 authored by Baptiste Coudurier's avatar Baptiste Coudurier

use timestamp as creation date

Originally committed as revision 17007 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 71a48ff2
......@@ -359,9 +359,9 @@ static void mxf_write_preface(AVFormatContext *s)
mxf_write_uuid(pb, Preface, 0);
PRINT_KEY(s, "preface uid", pb->buf_ptr - 16);
// write create date as unknown
// write creation date
mxf_write_local_tag(pb, 8, 0x3B02);
put_be64(pb, 0);
put_be64(pb, s->timestamp);
// write version
mxf_write_local_tag(pb, 2, 0x3B05);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment