diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-06-16 17:21:46 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-06-16 20:24:58 +0200 |
commit | 7c44d716e76cbd1c29369563a8b384addd5e7c03 (patch) | |
tree | 590589ed1d184791853c2f8101ff153cc0e36d5f | |
parent | 55ba12e3009fd6c8f78102f7c747496d500d0bac (diff) | |
download | ffmpeg-7c44d716e76cbd1c29369563a8b384addd5e7c03.tar.gz |
Add minor bumps and APIChanges entries for lavf private options.
-rw-r--r-- | doc/APIchanges | 10 | ||||
-rw-r--r-- | libavformat/version.h | 4 | ||||
-rw-r--r-- | libavutil/avutil.h | 2 |
3 files changed, 13 insertions, 3 deletions
diff --git a/doc/APIchanges b/doc/APIchanges index 0ab658d89c..460e8dde83 100644 --- a/doc/APIchanges +++ b/doc/APIchanges @@ -13,6 +13,16 @@ libavutil: 2011-04-18 API changes, most recent first: +2011-06-xx - xxxxxxx - lavf 53.2.0 - avformat.h + Add avformat_open_input and avformat_write_header(). + Deprecate av_open_input_stream, av_open_input_file, + AVFormatParameters and av_write_header. + +2011-06-xx - xxxxxxx - lavu 51.7.0 - opt.h + Add av_opt_set_dict() and av_opt_find(). + Deprecate av_find_opt(). + Add AV_DICT_APPEND flag. + 2011-06-xx - xxxxxxx - lavu 51.6.0 - opt.h Add av_opt_flag_is_set(). diff --git a/libavformat/version.h b/libavformat/version.h index 83fa431246..3cc1718f2b 100644 --- a/libavformat/version.h +++ b/libavformat/version.h @@ -24,8 +24,8 @@ #include "libavutil/avutil.h" #define LIBAVFORMAT_VERSION_MAJOR 53 -#define LIBAVFORMAT_VERSION_MINOR 1 -#define LIBAVFORMAT_VERSION_MICRO 3 +#define LIBAVFORMAT_VERSION_MINOR 2 +#define LIBAVFORMAT_VERSION_MICRO 0 #define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \ LIBAVFORMAT_VERSION_MINOR, \ diff --git a/libavutil/avutil.h b/libavutil/avutil.h index 21df460c1f..18461467b4 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 6 +#define LIBAVUTIL_VERSION_MINOR 7 #define LIBAVUTIL_VERSION_MICRO 0 #define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \ |