Commit 006afc7a authored by Anton Khirnov's avatar Anton Khirnov

lavr: bump major to 1 and declare it stable.

parent e7ba5b1d
...@@ -13,6 +13,11 @@ libavutil: 2011-04-18 ...@@ -13,6 +13,11 @@ libavutil: 2011-04-18
API changes, most recent first: API changes, most recent first:
2012-10-xx - xxxxxxx - lavr 1.0.0 - avresample.h
Data planes parameters to avresample_convert() and
avresample_read() are now uint8_t** instead of void**.
Libavresample is now stable.
2012-09-23 - xxxxxxx - lavc 54.28.0 - avcodec.h 2012-09-23 - xxxxxxx - lavc 54.28.0 - avcodec.h
Add avcodec_free_frame(). This function must now Add avcodec_free_frame(). This function must now
be used for freeing an AVFrame. be used for freeing an AVFrame.
......
...@@ -19,9 +19,9 @@ ...@@ -19,9 +19,9 @@
#ifndef AVRESAMPLE_VERSION_H #ifndef AVRESAMPLE_VERSION_H
#define AVRESAMPLE_VERSION_H #define AVRESAMPLE_VERSION_H
#define LIBAVRESAMPLE_VERSION_MAJOR 0 #define LIBAVRESAMPLE_VERSION_MAJOR 1
#define LIBAVRESAMPLE_VERSION_MINOR 0 #define LIBAVRESAMPLE_VERSION_MINOR 0
#define LIBAVRESAMPLE_VERSION_MICRO 3 #define LIBAVRESAMPLE_VERSION_MICRO 0
#define LIBAVRESAMPLE_VERSION_INT AV_VERSION_INT(LIBAVRESAMPLE_VERSION_MAJOR, \ #define LIBAVRESAMPLE_VERSION_INT AV_VERSION_INT(LIBAVRESAMPLE_VERSION_MAJOR, \
LIBAVRESAMPLE_VERSION_MINOR, \ LIBAVRESAMPLE_VERSION_MINOR, \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment