comparison rdft.c @ 11374:1cd8731bbe7f libavcodec

Make some functions static These functions are not used outside their respective files, and they lack a prototype in a header.
author mru
date Sat, 06 Mar 2010 22:36:41 +0000
parents 4b3da727d832
children 4c7afa50df6f
comparison
equal deleted inserted replaced
11373:b57409c0c286 11374:1cd8731bbe7f
78 78
79 /** Map one real FFT into two parallel real even and odd FFTs. Then interleave 79 /** Map one real FFT into two parallel real even and odd FFTs. Then interleave
80 * the two real FFTs into one complex FFT. Unmangle the results. 80 * the two real FFTs into one complex FFT. Unmangle the results.
81 * ref: http://www.engineeringproductivitytools.com/stuff/T0001/PT10.HTM 81 * ref: http://www.engineeringproductivitytools.com/stuff/T0001/PT10.HTM
82 */ 82 */
83 void ff_rdft_calc_c(RDFTContext* s, FFTSample* data) 83 static void ff_rdft_calc_c(RDFTContext* s, FFTSample* data)
84 { 84 {
85 int i, i1, i2; 85 int i, i1, i2;
86 FFTComplex ev, od; 86 FFTComplex ev, od;
87 const int n = 1 << s->nbits; 87 const int n = 1 << s->nbits;
88 const float k1 = 0.5; 88 const float k1 = 0.5;