Mercurial > libavcodec.hg
changeset 8637:3f72756b0c5c libavcodec
Mark ff_fft_init with av_cold.
author | alexc |
---|---|
date | Thu, 22 Jan 2009 19:48:10 +0000 |
parents | 9766c268bc9f |
children | 1088ea188568 |
files | fft.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/fft.c Thu Jan 22 19:46:23 2009 +0000 +++ b/fft.c Thu Jan 22 19:48:10 2009 +0000 @@ -58,7 +58,7 @@ 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;