diff options
author | Diego Elio Pettenò <flameeyes@gmail.com> | 2011-01-25 00:29:43 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-01-26 15:32:08 +0000 |
commit | 7767d8d361ca104d74c8390b72db21aa4d7fc322 (patch) | |
tree | 0b8d48bd756880c34b3ce05fbc676cdea9d24761 /libavcodec/fft.h | |
parent | b09f5482854f9b4a139b1401d196b26db11dd10f (diff) | |
download | ffmpeg-7767d8d361ca104d74c8390b72db21aa4d7fc322.tar.gz |
Mark C base versions of FFT functions static to fft.c
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/fft.h')
-rw-r--r-- | libavcodec/fft.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/fft.h b/libavcodec/fft.h index eb6714fe95..37cbfbf6a1 100644 --- a/libavcodec/fft.h +++ b/libavcodec/fft.h @@ -106,8 +106,6 @@ extern SINTABLE(65536); * @param inverse if 0 perform the forward transform, if 1 perform the inverse */ int ff_fft_init(FFTContext *s, int nbits, int inverse); -void ff_fft_permute_c(FFTContext *s, FFTComplex *z); -void ff_fft_calc_c(FFTContext *s, FFTComplex *z); void ff_fft_init_altivec(FFTContext *s); void ff_fft_init_mmx(FFTContext *s); |