diff options
author | Nathan Caldwell <saintdev@gmail.com> | 2012-01-06 14:24:37 -0700 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2012-01-23 11:40:46 -0800 |
commit | 80d44277e6ae6291a1ddba476939bb394a2ed822 (patch) | |
tree | bcc4b85abcf2bf33f2abfe5f3588afb1334db234 /libavcodec/aacenc.h | |
parent | 025ccf1f8bd669f45b628acf51e7febcb1fddd3b (diff) | |
download | ffmpeg-80d44277e6ae6291a1ddba476939bb394a2ed822.tar.gz |
aacenc: Move Q^3/4 calculation to it's own table
This should be moved to tablegen at some point.
Signed-off-by: Alex Converse <alex.converse@gmail.com>
Diffstat (limited to 'libavcodec/aacenc.h')
-rw-r--r-- | libavcodec/aacenc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/aacenc.h b/libavcodec/aacenc.h index 1f5e6503ca..79d542f70a 100644 --- a/libavcodec/aacenc.h +++ b/libavcodec/aacenc.h @@ -74,4 +74,6 @@ typedef struct AACEncContext { DECLARE_ALIGNED(32, float, scoefs)[1024]; ///< scaled coefficients } AACEncContext; +extern float ff_aac_pow34sf_tab[428]; + #endif /* AVCODEC_AACENC_H */ |