Browse code

lavfi: add a bump and docs entries for the AVOptions switch

Anton Khirnov authored on 2013/04/05 22:37:29
Showing 3 changed files
... ...
@@ -9,6 +9,7 @@ version 10:
9 9
   or vice versa
10 10
 - new avconv options -filter_script and -filter_complex_script, which allow a
11 11
   filtergraph description to be read from a file
12
+- uniform options syntax across all filters
12 13
 
13 14
 
14 15
 version 9:
... ...
@@ -13,6 +13,12 @@ libavutil:     2012-10-22
13 13
 
14 14
 API changes, most recent first:
15 15
 
16
+2013-xx-xx - lavfi 3.7.0 - avfilter.h
17
+  Add AVFilter.priv_class for exporting filter options through the AVOptions API
18
+  in the similar way private options work in lavc and lavf.
19
+  Add avfilter_get_class().
20
+  Switch all filters to use AVOptions.
21
+
16 22
 2013-xx-xx - lavu 52.9.0 - pixdesc.h
17 23
   Add av_pix_fmt_count_planes() function for counting planes in a pixel format.
18 24
 
... ...
@@ -29,7 +29,7 @@
29 29
 #include "libavutil/avutil.h"
30 30
 
31 31
 #define LIBAVFILTER_VERSION_MAJOR  3
32
-#define LIBAVFILTER_VERSION_MINOR  6
32
+#define LIBAVFILTER_VERSION_MINOR  7
33 33
 #define LIBAVFILTER_VERSION_MICRO  0
34 34
 
35 35
 #define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \