diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2014-08-30 17:35:18 +0200 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2014-08-31 10:33:02 +0200 |
commit | 03bf4572419739a6a308c2a667a62f4797fadf49 (patch) | |
tree | 17729e29c121b82f8133dc82365c4bb8f8609274 /libavcodec/aac_tablegen.h | |
parent | 4fe448738e8d4d87295e1fc7b68bb04f7453c3b9 (diff) | |
download | ffmpeg-03bf4572419739a6a308c2a667a62f4797fadf49.tar.gz |
Add av_cold to table generation functions.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
Diffstat (limited to 'libavcodec/aac_tablegen.h')
-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 1c19a1529a..bf71e59cb5 100644 --- a/libavcodec/aac_tablegen.h +++ b/libavcodec/aac_tablegen.h @@ -31,7 +31,7 @@ #include "libavutil/mathematics.h" float ff_aac_pow2sf_tab[428]; -void ff_aac_tableinit(void) +av_cold void ff_aac_tableinit(void) { int i; for (i = 0; i < 428; i++) |