[FFmpeg-cvslog] AVOptions: bump minor and add APIchanges entry.
Anton Khirnov
git at videolan.org
Thu Oct 13 06:01:48 CEST 2011
ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Tue Oct 4 08:13:40 2011 +0200| [492bd1a28f98b6558aaebfddb570f95f192142f2] | committer: Anton Khirnov
AVOptions: bump minor and add APIchanges entry.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=492bd1a28f98b6558aaebfddb570f95f192142f2
---
doc/APIchanges | 19 +++++++++++++++++++
libavutil/avutil.h | 2 +-
2 files changed, 20 insertions(+), 1 deletions(-)
diff --git a/doc/APIchanges b/doc/APIchanges
index e3236e9..e48173c 100644
--- a/doc/APIchanges
+++ b/doc/APIchanges
@@ -13,6 +13,25 @@ libavutil: 2011-04-18
API changes, most recent first:
+2011-10-12 - lavu 51.12.0
+ AVOptions API rewrite.
+
+ - 145f741 FF_OPT_TYPE* renamed to AV_OPT_TYPE_*
+ - new setting/getting functions with slightly different semantics:
+ dac66da av_set_string3 -> av_opt_set
+ av_set_double -> av_opt_set_double
+ av_set_q -> av_opt_set_q
+ av_set_int -> av_opt_set_int
+
+ 41d9d51 av_get_string -> av_opt_get
+ av_get_double -> av_opt_get_double
+ av_get_q -> av_opt_get_q
+ av_get_int -> av_opt_get_int
+
+ - 8c5dcaa trivial rename av_next_option -> av_opt_next
+ - 641c7af new functions - av_opt_child_next, av_opt_child_class_next
+ and av_opt_find2()
+
2011-09-03 - fb4ca26 - lavc 53.10.0
lavf 53.6.0
lsws 2.1.0
diff --git a/libavutil/avutil.h b/libavutil/avutil.h
index d89b23c..fae6801 100644
--- a/libavutil/avutil.h
+++ b/libavutil/avutil.h
@@ -40,7 +40,7 @@
#define AV_VERSION(a, b, c) AV_VERSION_DOT(a, b, c)
#define LIBAVUTIL_VERSION_MAJOR 51
-#define LIBAVUTIL_VERSION_MINOR 11
+#define LIBAVUTIL_VERSION_MINOR 12
#define LIBAVUTIL_VERSION_MICRO 0
#define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
More information about the ffmpeg-cvslog
mailing list