Revision d4a84771 libavcodec/fft.c
libavcodec/fft.c | ||
---|---|---|
53 | 53 |
ff_cos_2048, ff_cos_4096, ff_cos_8192, ff_cos_16384, ff_cos_32768, ff_cos_65536, |
54 | 54 |
}; |
55 | 55 |
|
56 |
static void ff_fft_permute_c(FFTContext *s, FFTComplex *z); |
|
57 |
static void ff_fft_calc_c(FFTContext *s, FFTComplex *z); |
|
58 |
|
|
56 | 59 |
static int split_radix_permutation(int i, int n, int inverse) |
57 | 60 |
{ |
58 | 61 |
int m; |
... | ... | |
120 | 123 |
return -1; |
121 | 124 |
} |
122 | 125 |
|
123 |
void ff_fft_permute_c(FFTContext *s, FFTComplex *z) |
|
126 |
static void ff_fft_permute_c(FFTContext *s, FFTComplex *z)
|
|
124 | 127 |
{ |
125 | 128 |
int j, np; |
126 | 129 |
const uint16_t *revtab = s->revtab; |
... | ... | |
289 | 292 |
fft2048, fft4096, fft8192, fft16384, fft32768, fft65536, |
290 | 293 |
}; |
291 | 294 |
|
292 |
void ff_fft_calc_c(FFTContext *s, FFTComplex *z) |
|
295 |
static void ff_fft_calc_c(FFTContext *s, FFTComplex *z)
|
|
293 | 296 |
{ |
294 | 297 |
fft_dispatch[s->nbits-2](z); |
295 | 298 |
} |
Also available in: Unified diff