diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2011-02-20 08:46:22 -0500 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-02-20 19:05:49 +0100 |
commit | bbcaaf752f09cf6475f6d28a91c4e4cdcdf03147 (patch) | |
tree | b39f48446d29d84a7508aa3aafdccd8599fa68a8 | |
parent | ae99313aa585fbf74339a2630a37402819f197c6 (diff) | |
download | ffmpeg-bbcaaf752f09cf6475f6d28a91c4e4cdcdf03147.tar.gz |
Update version and APIchanges.
Update libavformat/version.h and doc/APIChanges after renaming
init_put_byte() and ByteIOContext to ffio_init_context() (private)
and AVIOContext, (public), and deprecating the originals.
(cherry picked from commit d2bbf82e65e4a128ab1f0bf48df5d1e43c43c698)
-rw-r--r-- | doc/APIchanges | 6 | ||||
-rw-r--r-- | libavformat/version.h | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/doc/APIchanges b/doc/APIchanges index bbc6aee2e0..d9d744ad79 100644 --- a/doc/APIchanges +++ b/doc/APIchanges @@ -12,6 +12,12 @@ libavutil: 2009-03-08 API changes, most recent first: +2011-02-20 - e731b8d - lavf 52.102.0 - avio.h + * e731b8d - rename init_put_byte() to ffio_init_context(), deprecating the + original, and move it to a private header so it is no longer + part of our public API. Instead, use av_alloc_put_byte(). + * ae628ec - rename ByteIOContext to AVIOContext. + 2011-02-16 - 09d171b - lavf 52.101.0 - avformat.h lavu 52.39.0 - parseutils.h * 610219a - Add av_ prefix to dump_format(). diff --git a/libavformat/version.h b/libavformat/version.h index 9a15fe4df6..494cf11a25 100644 --- a/libavformat/version.h +++ b/libavformat/version.h @@ -24,7 +24,7 @@ #include "libavutil/avutil.h" #define LIBAVFORMAT_VERSION_MAJOR 52 -#define LIBAVFORMAT_VERSION_MINOR 101 +#define LIBAVFORMAT_VERSION_MINOR 102 #define LIBAVFORMAT_VERSION_MICRO 0 #define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \ |