diff options
author | Siarhei Siamashka <siarhei.siamashka@gmail.com> | 2008-05-11 20:06:03 +0000 |
---|---|---|
committer | Guillaume Poirier <gpoirier@mplayerhq.hu> | 2008-05-11 20:06:03 +0000 |
commit | e6303192c7c957724f1d2bb26a528869980b58c0 (patch) | |
tree | 4fcff99321d5aa9c63bf21ef7be7734527a2cac1 /libavcodec/Makefile | |
parent | bff2266a7fe834495738d0a03d568fecbcedcf69 (diff) | |
download | ffmpeg-e6303192c7c957724f1d2bb26a528869980b58c0.tar.gz |
Add some initial optimizations for ARM VFP (floating
point coprocessor available in some ARM11 cores).
Patch by Siarhei Siamashka % siarhei.siamashka@gmail.com %
Original thread:
date: Apr 20, 2008 5:41 PM
subject: [FFmpeg-devel] [PATCH] Some ARM VFP optimizations (vector_fmul, vector_fmul_reverse, float_to_int16)
Originally committed as revision 13128 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 237f2f8fc4..39c8c62388 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -419,6 +419,8 @@ ASM_OBJS-$(HAVE_ARMV5TE) += armv4l/simple_idct_armv5te.o \ ASM_OBJS-$(HAVE_ARMV6) += armv4l/simple_idct_armv6.o \ +ASM_OBJS-$(HAVE_ARMVFP) += armv4l/float_arm_vfp.o \ + OBJS-$(HAVE_VIS) += sparc/dsputil_vis.o \ sparc/simple_idct_vis.o \ |