diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-07-13 11:45:17 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-07-13 12:14:25 +0200 |
commit | 001d668d40b5f87d19271c7d5521368b5187425b (patch) | |
tree | 0812bd4345eff2b6aa09a664064c4cc643d69321 /libavformat/movenc.c | |
parent | b21e6b707fbc80511f4886d3b272a77b86157a2d (diff) | |
download | ffmpeg-001d668d40b5f87d19271c7d5521368b5187425b.tar.gz |
lavf: factor out conversion of ISO8601 string to unix time
Diffstat (limited to 'libavformat/movenc.c')
-rw-r--r-- | libavformat/movenc.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c index 78e5db7444..12ebef5426 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -2266,11 +2266,8 @@ static int mov_write_header(AVFormatContext *s) mov->time = s->timestamp; else #endif - if (t = av_dict_get(s->metadata, "creation_time", NULL, 0)) { - struct tm time = {0}; - strptime(t->value, "%Y - %m - %dT%T", &time); - mov->time = mktime(&time); - } + if (t = av_dict_get(s->metadata, "creation_time", NULL, 0)) + mov->time = ff_iso8601_to_unix_time(t->value); mov->time += 0x7C25B080; //1970 based -> 1904 based if (mov->chapter_track) |