diff options
author | Mans Rullgard <mans@mansr.com> | 2011-03-27 10:26:58 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-04-03 22:39:52 +0100 |
commit | dba9852935f31d81d16bf26ee21d164d5d5f5764 (patch) | |
tree | cdf5f333296aac3bf7d6fa5914919f073c74e533 /libavcodec/arm/Makefile | |
parent | 4dcde00cfcf7914dec32683a8d511e281d0875fc (diff) | |
download | ffmpeg-dba9852935f31d81d16bf26ee21d164d5d5f5764.tar.gz |
ARM: NEON fixed-point FFT
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/arm/Makefile')
-rw-r--r-- | libavcodec/arm/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/arm/Makefile b/libavcodec/arm/Makefile index 3b77a5548d..2876e8f69c 100644 --- a/libavcodec/arm/Makefile +++ b/libavcodec/arm/Makefile @@ -16,6 +16,7 @@ OBJS-$(CONFIG_H264PRED) += arm/h264pred_init_arm.o OBJS += arm/dsputil_init_arm.o \ arm/dsputil_arm.o \ arm/fft_init_arm.o \ + arm/fft_fixed_init_arm.o \ arm/fmtconvert_init_arm.o \ arm/jrevdct_arm.o \ arm/mpegvideo_arm.o \ @@ -41,6 +42,7 @@ OBJS-$(HAVE_IWMMXT) += arm/dsputil_iwmmxt.o \ arm/mpegvideo_iwmmxt.o \ NEON-OBJS-$(CONFIG_FFT) += arm/fft_neon.o \ + arm/fft_fixed_neon.o \ NEON-OBJS-$(CONFIG_MDCT) += arm/mdct_neon.o \ |