Browse code

Add minor bumps and APIChanges entries for lavf private options.

Anton Khirnov authored on 2011/06/17 00:21:46
Showing 3 changed files
... ...
@@ -13,6 +13,16 @@ libavutil:   2011-04-18
13 13
 
14 14
 API changes, most recent first:
15 15
 
16
+2011-06-xx - xxxxxxx - lavf 53.2.0 - avformat.h
17
+  Add avformat_open_input and avformat_write_header().
18
+  Deprecate av_open_input_stream, av_open_input_file,
19
+  AVFormatParameters and av_write_header.
20
+
21
+2011-06-xx - xxxxxxx - lavu 51.7.0 - opt.h
22
+  Add av_opt_set_dict() and av_opt_find().
23
+  Deprecate av_find_opt().
24
+  Add AV_DICT_APPEND flag.
25
+
16 26
 2011-06-xx - xxxxxxx - lavu 51.6.0 - opt.h
17 27
   Add av_opt_flag_is_set().
18 28
 
... ...
@@ -24,8 +24,8 @@
24 24
 #include "libavutil/avutil.h"
25 25
 
26 26
 #define LIBAVFORMAT_VERSION_MAJOR 53
27
-#define LIBAVFORMAT_VERSION_MINOR  1
28
-#define LIBAVFORMAT_VERSION_MICRO  3
27
+#define LIBAVFORMAT_VERSION_MINOR  2
28
+#define LIBAVFORMAT_VERSION_MICRO  0
29 29
 
30 30
 #define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
31 31
                                                LIBAVFORMAT_VERSION_MINOR, \
... ...
@@ -40,7 +40,7 @@
40 40
 #define AV_VERSION(a, b, c) AV_VERSION_DOT(a, b, c)
41 41
 
42 42
 #define LIBAVUTIL_VERSION_MAJOR 51
43
-#define LIBAVUTIL_VERSION_MINOR  6
43
+#define LIBAVUTIL_VERSION_MINOR  7
44 44
 #define LIBAVUTIL_VERSION_MICRO  0
45 45
 
46 46
 #define LIBAVUTIL_VERSION_INT   AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \