diff options
author | Maxim Poliakovski <max_pole@gmx.de> | 2013-10-02 01:55:13 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-10-02 10:17:50 +0200 |
commit | 852241561d040e0b147b5c866fd4f288324fbe48 (patch) | |
tree | 44de7e6b07ddae856b98cea010e9d81e85066262 /libavcodec/atrac.c | |
parent | 286beebdc34d11a301dfa5189e84f1c399d56133 (diff) | |
download | ffmpeg-852241561d040e0b147b5c866fd4f288324fbe48.tar.gz |
atrac: Add missing av_cold.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/atrac.c')
-rw-r--r-- | libavcodec/atrac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/atrac.c b/libavcodec/atrac.c index 3d37b02fd1..c4241a9492 100644 --- a/libavcodec/atrac.c +++ b/libavcodec/atrac.c @@ -48,7 +48,7 @@ static const float qmf_48tap_half[24] = { * Generate common tables */ -void ff_atrac_generate_tables(void) +av_cold void ff_atrac_generate_tables(void) { int i; float s; |