diff options
author | Roman Shaposhnik <roman@shaposhnik.org> | 2004-08-18 08:15:07 +0000 |
---|---|---|
committer | Roman Shaposhnik <roman@shaposhnik.org> | 2004-08-18 08:15:07 +0000 |
commit | 0c9fc6e1878fb7d56f6cff0109ea546fda7710c8 (patch) | |
tree | 168ffd5abceb60a66f89f8a8f881a7a239e9cd79 /libavformat/avformat.h | |
parent | 0722ccdbc000b82b4bf52644a0e4964c64d1f537 (diff) | |
download | ffmpeg-0c9fc6e1878fb7d56f6cff0109ea546fda7710c8.tar.gz |
* 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
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 5f2e56c67b..d286d29bcf 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -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); |