Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2011-03-27 13:26:58 +0400
committerMans Rullgard <mans@mansr.com>2011-04-04 01:39:52 +0400
commitdba9852935f31d81d16bf26ee21d164d5d5f5764 (patch)
treecdf5f333296aac3bf7d6fa5914919f073c74e533 /libavcodec/fft.h
parent4dcde00cfcf7914dec32683a8d511e281d0875fc (diff)
ARM: NEON fixed-point FFT
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/fft.h')
-rw-r--r--libavcodec/fft.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/fft.h b/libavcodec/fft.h
index 0f324cf5a2..a4fee0033b 100644
--- a/libavcodec/fft.h
+++ b/libavcodec/fft.h
@@ -132,9 +132,13 @@ void ff_init_ff_cos_tabs(int index);
*/
int ff_fft_init(FFTContext *s, int nbits, int inverse);
+#if CONFIG_FFT_FLOAT
void ff_fft_init_altivec(FFTContext *s);
void ff_fft_init_mmx(FFTContext *s);
void ff_fft_init_arm(FFTContext *s);
+#else
+void ff_fft_fixed_init_arm(FFTContext *s);
+#endif
void ff_fft_end(FFTContext *s);