diff options
author | Jovan Zelincevic <jovan.zelincevic@imgtec.com> | 2015-06-30 11:53:06 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-07-09 14:41:41 +0200 |
commit | f21b4472efb3b350676faa5a8af0b49e764f47ca (patch) | |
tree | db00cf142cec40e26449e2e43049f1ac59af9230 /libavcodec/aacdec_fixed.c | |
parent | b04f46cb4bc07e41345f360e184ea4b3eab6e43f (diff) | |
download | ffmpeg-f21b4472efb3b350676faa5a8af0b49e764f47ca.tar.gz |
libavcodec: Implementation of AAC_fixed_decoder (LC-module) [4/4]
Build system modified
There are several warnings occurring during build after this patch is
applied. The cause of most of these warnings is in that some definitions
needed here are logical part of sbr module and are added in later patches.
When this patches are applied these warnings stop occurring.
The only warning that is added here and is not fixed with later patches
is warning that warns that type mismatch for table ff_aac_eld_window_480.
The reason for this warning is in that ER AAC ELD 480 is not integrated in
to the fixed point implementation at this moment and there is no fixed point
version of this table.
Signed-off-by: Nedeljko Babic <nedeljko.babic@imgtec.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/aacdec_fixed.c')
-rw-r--r-- | libavcodec/aacdec_fixed.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/aacdec_fixed.c b/libavcodec/aacdec_fixed.c index 0089baa57a..17808114d6 100644 --- a/libavcodec/aacdec_fixed.c +++ b/libavcodec/aacdec_fixed.c @@ -61,7 +61,6 @@ #define FFT_FLOAT 0 #define FFT_FIXED_32 1 #define USE_FIXED 1 -#define CONFIG_FIXED 1 #include "libavutil/fixed_dsp.h" #include "libavutil/opt.h" |