提交 4accd1fd 编写于 作者: M Måns Rullgård

bump version numbers and update docs for adts aac support

Originally committed as revision 4957 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 86db37df
...@@ -34,6 +34,7 @@ version <next> ...@@ -34,6 +34,7 @@ version <next>
- build system improvements - build system improvements
- tabs and trailing whitespace removed from the codebase - tabs and trailing whitespace removed from the codebase
- AIFF/AIFF-C audio format, encoding and decoding - AIFF/AIFF-C audio format, encoding and decoding
- ADTS AAC file reading and writing
version 0.4.9-pre1: version 0.4.9-pre1:
......
...@@ -696,6 +696,7 @@ library: ...@@ -696,6 +696,7 @@ library:
@item Electronic Arts Multimedia @tab @tab X @item Electronic Arts Multimedia @tab @tab X
@tab Used in various EA games; files have extensions like WVE and UV2. @tab Used in various EA games; files have extensions like WVE and UV2.
@item Nullsoft Video (NSV) format @tab @tab X @item Nullsoft Video (NSV) format @tab @tab X
@item ADTS AAC audio @tab X @tab X
@end multitable @end multitable
@code{X} means that encoding (resp. decoding) is supported. @code{X} means that encoding (resp. decoding) is supported.
......
...@@ -21,8 +21,8 @@ extern "C" { ...@@ -21,8 +21,8 @@ extern "C" {
#define AV_STRINGIFY(s) AV_TOSTRING(s) #define AV_STRINGIFY(s) AV_TOSTRING(s)
#define AV_TOSTRING(s) #s #define AV_TOSTRING(s) #s
#define LIBAVCODEC_VERSION_INT ((51<<16)+(1<<8)+0) #define LIBAVCODEC_VERSION_INT ((51<<16)+(2<<8)+0)
#define LIBAVCODEC_VERSION 51.1.0 #define LIBAVCODEC_VERSION 51.2.0
#define LIBAVCODEC_BUILD LIBAVCODEC_VERSION_INT #define LIBAVCODEC_BUILD LIBAVCODEC_VERSION_INT
#define LIBAVCODEC_IDENT "Lavc" AV_STRINGIFY(LIBAVCODEC_VERSION) #define LIBAVCODEC_IDENT "Lavc" AV_STRINGIFY(LIBAVCODEC_VERSION)
......
...@@ -5,8 +5,8 @@ ...@@ -5,8 +5,8 @@
extern "C" { extern "C" {
#endif #endif
#define LIBAVFORMAT_VERSION_INT ((50<<16)+(0<<8)+0) #define LIBAVFORMAT_VERSION_INT ((50<<16)+(1<<8)+0)
#define LIBAVFORMAT_VERSION 50.0.0 #define LIBAVFORMAT_VERSION 50.1.0
#define LIBAVFORMAT_BUILD LIBAVFORMAT_VERSION_INT #define LIBAVFORMAT_BUILD LIBAVFORMAT_VERSION_INT
#define LIBAVFORMAT_IDENT "Lavf" AV_STRINGIFY(LIBAVFORMAT_VERSION) #define LIBAVFORMAT_IDENT "Lavf" AV_STRINGIFY(LIBAVFORMAT_VERSION)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册