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.
| ... | ... |
@@ -12,6 +12,12 @@ libavutil: 2009-03-08 |
| 12 | 12 |
|
| 13 | 13 |
API changes, most recent first: |
| 14 | 14 |
|
| 15 |
+2011-02-20 - e731b8d - lavf 52.102.0 - avio.h |
|
| 16 |
+ * e731b8d - rename init_put_byte() to ffio_init_context(), deprecating the |
|
| 17 |
+ original, and move it to a private header so it is no longer |
|
| 18 |
+ part of our public API. Instead, use av_alloc_put_byte(). |
|
| 19 |
+ * ae628ec - rename ByteIOContext to AVIOContext. |
|
| 20 |
+ |
|
| 15 | 21 |
2011-02-16 - 09d171b - lavf 52.101.0 - avformat.h |
| 16 | 22 |
lavu 52.39.0 - parseutils.h |
| 17 | 23 |
* 610219a - Add av_ prefix to dump_format(). |
| ... | ... |
@@ -24,7 +24,7 @@ |
| 24 | 24 |
#include "libavutil/avutil.h" |
| 25 | 25 |
|
| 26 | 26 |
#define LIBAVFORMAT_VERSION_MAJOR 52 |
| 27 |
-#define LIBAVFORMAT_VERSION_MINOR 101 |
|
| 27 |
+#define LIBAVFORMAT_VERSION_MINOR 102 |
|
| 28 | 28 |
#define LIBAVFORMAT_VERSION_MICRO 0 |
| 29 | 29 |
|
| 30 | 30 |
#define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \ |