mirror of https://git.ffmpeg.org/ffmpeg.git
Mark ff_fft_init with av_cold.
Originally committed as revision 16722 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
8f05c995fd
commit
3c4ea6d5ab
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue