diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-22 23:33:03 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-12-08 17:51:48 +0100 |
commit | 86b8c25455d8dfa752e1f2000c775e547b9fa433 (patch) | |
tree | 983817846c40574865fc5f7608809692f178d9f5 /libavcodec/aactab.h | |
parent | fc5d22abe40e0ab5b603b69752288565c92de670 (diff) | |
download | ffmpeg-86b8c25455d8dfa752e1f2000c775e547b9fa433.tar.gz |
avcodec/aac: Share common init code of float decoder and encoder
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/aactab.h')
-rw-r--r-- | libavcodec/aactab.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/aactab.h b/libavcodec/aactab.h index ddef8462f0..8a354e8186 100644 --- a/libavcodec/aactab.h +++ b/libavcodec/aactab.h @@ -98,6 +98,9 @@ DECLARE_ALIGNED(32, extern const float, ff_aac_eld_window_480)[1800]; DECLARE_ALIGNED(32, extern const int, ff_aac_eld_window_480_fixed)[1800]; // @} +/* Initializes data shared between float decoder and encoder. */ +void ff_aac_float_common_init(void); + /* @name number of scalefactor window bands for long and short transform windows respectively * @{ */ |