mirror of https://git.ffmpeg.org/ffmpeg.git
use timestamp as modification date
Originally committed as revision 17010 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
da2dc39e74
commit
5ccad11da0
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue