# HG changeset patch # User alexc # Date 1232653690 0 # Node ID 3f72756b0c5c7f617cece0045a0a01e9056149bc # Parent 9766c268bc9f76e14155ee5a715ac7405bff7c26 Mark ff_fft_init with av_cold. diff -r 9766c268bc9f -r 3f72756b0c5c fft.c --- 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;