| ... | ... |
@@ -13,6 +13,20 @@ libavutil: 2011-04-18 |
| 13 | 13 |
|
| 14 | 14 |
API changes, most recent first: |
| 15 | 15 |
|
| 16 |
+2011-12-25 - lavfi 2.14.0 |
|
| 17 |
+ e1d9dbf Add a new installed header - buffersrc.h |
|
| 18 |
+ It contains a new function av_buffersrc_buffer() that allows passing |
|
| 19 |
+ frames to the 'buffer' filter, but unlike av_vsrc_buffer_add_frame() |
|
| 20 |
+ it allows for direct rendering. |
|
| 21 |
+ 1c9e340 Add avfilter_copy_frame_props() for copying properties from |
|
| 22 |
+ AVFrame to AVFilterBufferRef. |
|
| 23 |
+ |
|
| 24 |
+2011-12-25 - lavc 53.31.0 |
|
| 25 |
+ Add the following new fields to AVFrame: |
|
| 26 |
+ b58dbb5 sample_aspect_ratio |
|
| 27 |
+ 3a2ddf7 width, height |
|
| 28 |
+ 8a4a5f6 format |
|
| 29 |
+ |
|
| 16 | 30 |
2011-12-18 - 8400b12 - lavc 53.28.1 |
| 17 | 31 |
Deprecate AVFrame.age. The field is unused. |
| 18 | 32 |
|
| ... | ... |
@@ -21,7 +21,7 @@ |
| 21 | 21 |
#define AVCODEC_VERSION_H |
| 22 | 22 |
|
| 23 | 23 |
#define LIBAVCODEC_VERSION_MAJOR 53 |
| 24 |
-#define LIBAVCODEC_VERSION_MINOR 30 |
|
| 24 |
+#define LIBAVCODEC_VERSION_MINOR 31 |
|
| 25 | 25 |
#define LIBAVCODEC_VERSION_MICRO 0 |
| 26 | 26 |
|
| 27 | 27 |
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ |
| ... | ... |
@@ -30,8 +30,8 @@ |
| 30 | 30 |
#include "libavcodec/avcodec.h" |
| 31 | 31 |
|
| 32 | 32 |
#define LIBAVFILTER_VERSION_MAJOR 2 |
| 33 |
-#define LIBAVFILTER_VERSION_MINOR 13 |
|
| 34 |
-#define LIBAVFILTER_VERSION_MICRO 1 |
|
| 33 |
+#define LIBAVFILTER_VERSION_MINOR 14 |
|
| 34 |
+#define LIBAVFILTER_VERSION_MICRO 0 |
|
| 35 | 35 |
|
| 36 | 36 |
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \ |
| 37 | 37 |
LIBAVFILTER_VERSION_MINOR, \ |