Browse code

bump version numbers and update docs for adts aac support

Originally committed as revision 4957 to svn://svn.ffmpeg.org/ffmpeg/trunk

Måns Rullgård authored on 2006/02/08 10:11:48
Showing 4 changed files
... ...
@@ -34,6 +34,7 @@ version <next>
34 34
 - build system improvements
35 35
 - tabs and trailing whitespace removed from the codebase
36 36
 - AIFF/AIFF-C audio format, encoding and decoding
37
+- ADTS AAC file reading and writing
37 38
 
38 39
 version 0.4.9-pre1:
39 40
 
... ...
@@ -696,6 +696,7 @@ library:
696 696
 @item Electronic Arts Multimedia    @tab    @tab X
697 697
 @tab Used in various EA games; files have extensions like WVE and UV2.
698 698
 @item Nullsoft Video (NSV) format @tab    @tab X
699
+@item ADTS AAC audio @tab X @tab X
699 700
 @end multitable
700 701
 
701 702
 @code{X} means that encoding (resp. decoding) is supported.
... ...
@@ -21,8 +21,8 @@ extern "C" {
21 21
 #define AV_STRINGIFY(s)         AV_TOSTRING(s)
22 22
 #define AV_TOSTRING(s) #s
23 23
 
24
-#define LIBAVCODEC_VERSION_INT  ((51<<16)+(1<<8)+0)
25
-#define LIBAVCODEC_VERSION      51.1.0
24
+#define LIBAVCODEC_VERSION_INT  ((51<<16)+(2<<8)+0)
25
+#define LIBAVCODEC_VERSION      51.2.0
26 26
 #define LIBAVCODEC_BUILD        LIBAVCODEC_VERSION_INT
27 27
 
28 28
 #define LIBAVCODEC_IDENT        "Lavc" AV_STRINGIFY(LIBAVCODEC_VERSION)
... ...
@@ -5,8 +5,8 @@
5 5
 extern "C" {
6 6
 #endif
7 7
 
8
-#define LIBAVFORMAT_VERSION_INT ((50<<16)+(0<<8)+0)
9
-#define LIBAVFORMAT_VERSION     50.0.0
8
+#define LIBAVFORMAT_VERSION_INT ((50<<16)+(1<<8)+0)
9
+#define LIBAVFORMAT_VERSION     50.1.0
10 10
 #define LIBAVFORMAT_BUILD       LIBAVFORMAT_VERSION_INT
11 11
 
12 12
 #define LIBAVFORMAT_IDENT       "Lavf" AV_STRINGIFY(LIBAVFORMAT_VERSION)