From b3fdfc8c4e4d35430262e9c4dda0be040dec42ee Mon Sep 17 00:00:00 2001 From: Nedeljko Babic Date: Tue, 4 Sep 2012 18:43:34 +0200 Subject: Optimization of AC3 floating point decoder for MIPS FFT in MIPS implementation is working iteratively instead of "recursively" calling functions for smaller FFT sizes. Some of DSP and format convert utils functions are also optimized. Signed-off-by: Nedeljko Babic Reviewed-by: Vitor Sessak Signed-off-by: Michael Niedermayer --- libavcodec/fft.h | 1 + 1 file changed, 1 insertion(+) (limited to 'libavcodec/fft.h') diff --git a/libavcodec/fft.h b/libavcodec/fft.h index 0e19e947b1..15e5a121d2 100644 --- a/libavcodec/fft.h +++ b/libavcodec/fft.h @@ -137,6 +137,7 @@ int ff_fft_init(FFTContext *s, int nbits, int inverse); void ff_fft_init_altivec(FFTContext *s); void ff_fft_init_mmx(FFTContext *s); void ff_fft_init_arm(FFTContext *s); +void ff_fft_init_mips(FFTContext *s); #else void ff_fft_fixed_init_arm(FFTContext *s); #endif -- cgit v1.2.1