diff options
author | Ganesh Ajjanagadde <gajjanagadde@gmail.com> | 2015-11-27 13:21:48 -0500 |
---|---|---|
committer | Ganesh Ajjanagadde <gajjanagadde@gmail.com> | 2015-11-27 13:23:35 -0500 |
commit | 8453095f3eb8a635719a85b04773a72b9763a672 (patch) | |
tree | 900df1d9b7ff688468fc534c5110c7bc017e00d0 | |
parent | ef9f7bbfa47317f9d46bf46982a394d2be78503c (diff) | |
download | ffmpeg-8453095f3eb8a635719a85b04773a72b9763a672.tar.gz |
avcodec/aac_tablegen: make exp2_lut static
Suggested-by: Clément Bœsch <u@pkh.me>
Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
-rw-r--r-- | libavcodec/aac_tablegen.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aac_tablegen.h b/libavcodec/aac_tablegen.h index 85e189d6b5..e7d96d574b 100644 --- a/libavcodec/aac_tablegen.h +++ b/libavcodec/aac_tablegen.h @@ -37,7 +37,7 @@ av_cold void ff_aac_tableinit(void) int i; /* 2^(i/16) for 0 <= i <= 15 */ - const float exp2_lut[] = { + static const float exp2_lut[] = { 1.00000000000000000000, 1.04427378242741384032, 1.09050773266525765921, |