From 001d668d40b5f87d19271c7d5521368b5187425b Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Wed, 13 Jul 2011 11:45:17 +0200 Subject: lavf: factor out conversion of ISO8601 string to unix time --- libavformat/movenc.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'libavformat/movenc.c') 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) -- cgit v1.2.3