summaryrefslogtreecommitdiff
path: root/libavformat/wtv.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2014-10-24 10:36:54 +0300
committerMartin Storsjö <martin@martin.st>2014-10-26 00:14:54 +0300
commit851ace79a307bea54b44bd6f7ecd3b7861c28ec6 (patch)
treeb9f65fcbcc060fa1a04fd18ec87452e9f8830e0e /libavformat/wtv.c
parent50dbe6b3544fa64d5611e16553bf542fd71276b8 (diff)
wtv: Avoid needlessly calling gmtime twice with the same argument
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/wtv.c')
-rw-r--r--libavformat/wtv.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/wtv.c b/libavformat/wtv.c
index ce0122dc1c..fa864e840a 100644
--- a/libavformat/wtv.c
+++ b/libavformat/wtv.c
@@ -430,7 +430,7 @@ static void filetime_to_iso8601(char *buf, int buf_size, int64_t value)
time_t t = (value / 10000000LL) - 11644473600LL;
struct tm *tm = gmtime(&t);
if (tm)
- strftime(buf, buf_size, "%Y-%m-%d %H:%M:%S", gmtime(&t));
+ strftime(buf, buf_size, "%Y-%m-%d %H:%M:%S", tm);
else
buf[0] = '\0';
}
@@ -443,7 +443,7 @@ static void crazytime_to_iso8601(char *buf, int buf_size, int64_t value)
time_t t = (value / 10000000LL) - 719162LL*86400LL;
struct tm *tm = gmtime(&t);
if (tm)
- strftime(buf, buf_size, "%Y-%m-%d %H:%M:%S", gmtime(&t));
+ strftime(buf, buf_size, "%Y-%m-%d %H:%M:%S", tm);
else
buf[0] = '\0';
}
@@ -456,7 +456,7 @@ static void oledate_to_iso8601(char *buf, int buf_size, int64_t value)
time_t t = 631112400LL + 86400*av_int2double(value);
struct tm *tm = gmtime(&t);
if (tm)
- strftime(buf, buf_size, "%Y-%m-%d %H:%M:%S", gmtime(&t));
+ strftime(buf, buf_size, "%Y-%m-%d %H:%M:%S", tm);
else
buf[0] = '\0';
}