comparison arm/fft_init_arm.c @ 11370:4b3da727d832 libavcodec

Move FFT parts from dsputil.h to fft.h
author mru
date Sat, 06 Mar 2010 14:34:46 +0000
parents 89a852950c34
children e011e73a902b
comparison
equal deleted inserted replaced
11369:98970e51365a 11370:4b3da727d832
16 * You should have received a copy of the GNU Lesser General Public 16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software 17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */ 19 */
20 20
21 #include "libavcodec/dsputil.h" 21 #include "libavcodec/fft.h"
22 22
23 void ff_fft_permute_neon(FFTContext *s, FFTComplex *z); 23 void ff_fft_permute_neon(FFTContext *s, FFTComplex *z);
24 void ff_fft_calc_neon(FFTContext *s, FFTComplex *z); 24 void ff_fft_calc_neon(FFTContext *s, FFTComplex *z);
25 25
26 void ff_imdct_calc_neon(FFTContext *s, FFTSample *output, const FFTSample *input); 26 void ff_imdct_calc_neon(FFTContext *s, FFTSample *output, const FFTSample *input);