diff options
author | Måns Rullgård <mans@mansr.com> | 2009-09-10 08:50:03 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2009-09-10 08:50:03 +0000 |
commit | 648d792042cb6d58d032f3ae2518169d91a87274 (patch) | |
tree | a934b90c65f30fede4e46a1e314d7690b354c30b /libavcodec/Makefile | |
parent | 6d9d289e7671df94caba0a1ca1a93c0b12052d32 (diff) | |
download | ffmpeg-648d792042cb6d58d032f3ae2518169d91a87274.tar.gz |
ARM: NEON optimised FFT and MDCT
Vorbis and AC3 ~3x faster.
Parts by Naotoshi Nojiri, naonoj gmail
Originally committed as revision 19806 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 75b3beead4..68387d614f 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -496,6 +496,10 @@ OBJS-$(HAVE_ARMVFP) += arm/dsputil_vfp.o \ OBJS-$(HAVE_IWMMXT) += arm/dsputil_iwmmxt.o \ arm/mpegvideo_iwmmxt.o \ +NEON-OBJS-$(CONFIG_FFT) += arm/fft_neon.o \ + +NEON-OBJS-$(CONFIG_MDCT) += arm/mdct_neon.o \ + NEON-OBJS-$(CONFIG_H264_DECODER) += arm/h264dsp_neon.o \ arm/h264idct_neon.o \ |