aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/avformat.h
diff options
context:
space:
mode:
authorRoman Shaposhnik <roman@shaposhnik.org>2004-08-18 08:15:07 +0000
committerRoman Shaposhnik <roman@shaposhnik.org>2004-08-18 08:15:07 +0000
commit0c9fc6e1878fb7d56f6cff0109ea546fda7710c8 (patch)
tree168ffd5abceb60a66f89f8a8f881a7a239e9cd79 /libavformat/avformat.h
parent0722ccdbc000b82b4bf52644a0e4964c64d1f537 (diff)
downloadffmpeg-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.h1
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);