diff avformat.h @ 515:ad72189eec07 libavformat

* replacing calls to not-always-available gmtime_r with our own code. The new helper function actually differs in semantics from gmtime_r, so if that seems to be a problem I can actually move it to dv.c completely, since only DV muxer uses the code anyway.
author romansh
date Wed, 18 Aug 2004 08:15:07 +0000
parents 056991ab9f10
children 59da52e5f5a5
line wrap: on
line diff
--- a/avformat.h	Sat Aug 14 15:08:09 2004 +0000
+++ b/avformat.h	Wed Aug 18 08:15:07 2004 +0000
@@ -620,6 +620,7 @@
 #endif
 
 time_t mktimegm(struct tm *tm);
+struct tm *brktimegm(time_t secs, struct tm *tm);
 const char *small_strptime(const char *p, const char *fmt, 
                            struct tm *dt);