Browse code

Edit documentation and versioning for the fixed point AAC decoder

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

Jovan Zelincevic authored on 2015/07/20 20:36:22
Showing 4 changed files
... ...
@@ -21,6 +21,7 @@ version <next>:
21 21
 - Reverse filter
22 22
 - Random filter
23 23
 - deband filter
24
+- AAC fixed-point decoding
24 25
 
25 26
 
26 27
 version 2.7:
... ...
@@ -863,7 +863,7 @@ following image formats are supported:
863 863
 @item Name @tab Encoding @tab Decoding @tab Comments
864 864
 @item 8SVX exponential       @tab     @tab  X
865 865
 @item 8SVX fibonacci         @tab     @tab  X
866
-@item AAC+                   @tab  E  @tab  X
866
+@item AAC+                   @tab  E  @tab  IX
867 867
     @tab encoding supported through external library libaacplus
868 868
 @item AAC                    @tab  E  @tab  X
869 869
     @tab encoding supported through external library libfaac and libvo-aacenc
... ...
@@ -47,12 +47,16 @@ Files that have MIPS copyright notice in them:
47 47
 * libavutil/mips/
48 48
       float_dsp_mips.c
49 49
       libm_mips.h
50
+      softfloat_tables.h
50 51
 * libavcodec/
51 52
       fft_fixed_32.c
52 53
       fft_init_table.c
53 54
       fft_table.h
54 55
       mdct_fixed_32.c
55 56
 * libavcodec/mips/
57
+      aacdec_fixed.c
58
+      aacsbr_fixed.c
59
+      aacsbr_template.c
56 60
       aaccoder_mips.c
57 61
       aacpsy_mips.h
58 62
       ac3dsp_mips.c
... ...
@@ -29,7 +29,7 @@
29 29
 #include "libavutil/version.h"
30 30
 
31 31
 #define LIBAVCODEC_VERSION_MAJOR 56
32
-#define LIBAVCODEC_VERSION_MINOR  51
32
+#define LIBAVCODEC_VERSION_MINOR  52
33 33
 #define LIBAVCODEC_VERSION_MICRO 100
34 34
 
35 35
 #define LIBAVCODEC_VERSION_INT  AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \