diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-09-01 13:32:43 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-09-06 00:40:01 +0200 |
commit | 29e972f67c914d35417bc7368493d2617abdd26e (patch) | |
tree | 4d138efbd74711b03eaf34d51761604dcecbe2cd /doc | |
parent | 79dcd58d839714e8e645fd4414ee4c3645bc419e (diff) | |
download | ffmpeg-29e972f67c914d35417bc7368493d2617abdd26e.tar.gz |
lavu/parseutils: add av_small_strptime()
Make internal small_strptime() function public, and use it in place of
strptime().
This allows to avoid a dependency on strptime() on systems which do not
support it.
In particular, fix trac ticket #992.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/APIchanges | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/APIchanges b/doc/APIchanges index 5af9eb2b8c..8173eb878d 100644 --- a/doc/APIchanges +++ b/doc/APIchanges @@ -15,6 +15,12 @@ libavutil: 2011-04-18 API changes, most recent first: +2012-09-01 - xxxxxxx - lavu 51.72.100 - parseutils.h + Add av_small_strptime() time parsing function. + + Can be used as a stripped-down replacement for strptime(), on + systems which do not support it. + 2012-08-13 - xxxxxxx - lavfi 3.8.100 - avfilter.h Add avfilter_get_class() function, and priv_class field to AVFilter struct. |