summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2011-11-07 23:20:31 +0200
committerMartin Storsjö <martin@martin.st>2011-11-16 11:22:41 +0200
commit627067118c6674dd944df962d24cf386afcd4326 (patch)
treed9b589e4fc6c326537f2d4ac500aa0f2045a3b71 /doc
parent747283a0788b088872ca58d3d15bb2ec5349dcb0 (diff)
avutil: Add av_timegm as a public function
This is useful, since the normal timegm function isn't a standard function (requiring _BSD_SOURCE or _SVID_SOURCE on glibc to be visible, and not available on e.g. windows). The widely available function mktime uses the local time zone, which requires ugly workarounds to handle UTC time. Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'doc')
-rw-r--r--doc/APIchanges3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/APIchanges b/doc/APIchanges
index 5ef1fa50df..c45aca62a2 100644
--- a/doc/APIchanges
+++ b/doc/APIchanges
@@ -13,6 +13,9 @@ libavutil: 2011-04-18
API changes, most recent first:
+2011-11-xx - xxxxxxx - lavu 51.16.0
+ Add av_timegm()
+
2011-11-06 - ba04ecf - lavu 51.14.0
Add av_strcasecmp() and av_strncasecmp() to avstring.h.