* 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.

Originally committed as revision 3399 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Roman Shaposhnik
2004-08-18 08:15:07 +00:00
parent 0722ccdbc0
commit 0c9fc6e187
3 changed files with 40 additions and 5 deletions

View File

@@ -620,6 +620,7 @@ do {\
#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);