summaryrefslogtreecommitdiff
path: root/libavcodec/Makefile
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2009-10-04 13:12:55 +0000
committerMåns Rullgård <mans@mansr.com>2009-10-04 13:12:55 +0000
commit84d430f85a10cfbca196c686ee59c72dff558ca1 (patch)
treea26c1883897b2f2bb08d4f8bf90692828dc81379 /libavcodec/Makefile
parent384f26f428d13f1aef26da453554401236de03c5 (diff)
ARM: clean up dsputil initialisation
- Move v5 and v6 initialisation to separate files. - Move NEON IDCT selection to ff_dsputil_init_neon() Originally committed as revision 20163 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r--libavcodec/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile
index 8aabeb909e..e1271cd804 100644
--- a/libavcodec/Makefile
+++ b/libavcodec/Makefile
@@ -487,11 +487,13 @@ OBJS-$(ARCH_ARM) += arm/dsputil_arm.o \
arm/mpegvideo_arm.o \
arm/simple_idct_arm.o \
-OBJS-$(HAVE_ARMV5TE) += arm/mpegvideo_armv5te.o \
+OBJS-$(HAVE_ARMV5TE) += arm/dsputil_init_armv5te.o \
+ arm/mpegvideo_armv5te.o \
arm/mpegvideo_armv5te_s.o \
arm/simple_idct_armv5te.o \
-OBJS-$(HAVE_ARMV6) += arm/simple_idct_armv6.o \
+OBJS-$(HAVE_ARMV6) += arm/dsputil_init_armv6.o \
+ arm/simple_idct_armv6.o \
OBJS-$(HAVE_ARMVFP) += arm/dsputil_vfp.o \
arm/float_arm_vfp.o \