diff options
author | Alex Converse <alex.converse@gmail.com> | 2009-01-22 19:48:10 +0000 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2009-01-22 19:48:10 +0000 |
commit | 3c4ea6d5ab8f736a95b1141ff2d03c5a1854eb88 (patch) | |
tree | cdc9560dca6852b9caff8c3a5afbd816887e1573 /libavcodec/fft.c | |
parent | 8f05c995fd5dac7be01f24382687a944e1105d76 (diff) | |
download | ffmpeg-3c4ea6d5ab8f736a95b1141ff2d03c5a1854eb88.tar.gz |
Mark ff_fft_init with av_cold.
Originally committed as revision 16722 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/fft.c')
-rw-r--r-- | libavcodec/fft.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/fft.c b/libavcodec/fft.c index 03301d81b2..e342c0516d 100644 --- a/libavcodec/fft.c +++ b/libavcodec/fft.c @@ -58,7 +58,7 @@ static int split_radix_permutation(int i, int n, int inverse) else return split_radix_permutation(i, m, inverse)*4 - 1; } -int ff_fft_init(FFTContext *s, int nbits, int inverse) +av_cold int ff_fft_init(FFTContext *s, int nbits, int inverse) { int i, j, m, n; float alpha, c1, s1, s2; |