summaryrefslogtreecommitdiff
path: root/vp9/vp9_common.mk
diff options
context:
space:
mode:
authorJames Yu <james.yu@linaro.org>2014-01-27 18:38:35 +0800
committerJohann <johannkoenig@google.com>2014-12-15 12:16:19 -0800
commit6b7101327723436ad78047e30ae752429836c528 (patch)
tree87ee6717b16d6491c75f0d89e06e2f33487005d5 /vp9/vp9_common.mk
parentd916b0f22f89e435517ded9da66ff5194cc9613b (diff)
downloadlibvpx-6b7101327723436ad78047e30ae752429836c528.tar
libvpx-6b7101327723436ad78047e30ae752429836c528.tar.gz
libvpx-6b7101327723436ad78047e30ae752429836c528.tar.bz2
libvpx-6b7101327723436ad78047e30ae752429836c528.zip
VP9 common for ARMv8 by using NEON intrinsics 05
Add vp9_iht4x4_add_neon.c - vp9_iht4x4_16_add_neon The assembly did not previously implement tx_type 0 BUG=715 Change-Id: I60034d1568de034edba45c5cdd13f3d87dbc73b6 Signed-off-by: James Yu <james.yu@linaro.org>
Diffstat (limited to 'vp9/vp9_common.mk')
-rw-r--r--vp9/vp9_common.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/vp9/vp9_common.mk b/vp9/vp9_common.mk
index 2504f4db9..c2d1a7af2 100644
--- a/vp9/vp9_common.mk
+++ b/vp9/vp9_common.mk
@@ -135,12 +135,13 @@ endif
VP9_COMMON_SRCS-$(HAVE_NEON_ASM) += common/arm/neon/vp9_loopfilter_16_neon_asm$(ASM)
VP9_COMMON_SRCS-$(HAVE_NEON_ASM) += common/arm/neon/vp9_dc_only_idct_add_neon$(ASM)
-VP9_COMMON_SRCS-$(HAVE_NEON_ASM) += common/arm/neon/vp9_iht4x4_add_neon$(ASM)
VP9_COMMON_SRCS-$(HAVE_NEON_ASM) += common/arm/neon/vp9_iht8x8_add_neon$(ASM)
VP9_COMMON_SRCS-$(HAVE_NEON_ASM) += common/arm/neon/vp9_mb_lpf_neon$(ASM)
VP9_COMMON_SRCS-$(HAVE_NEON_ASM) += common/arm/neon/vp9_save_reg_neon$(ASM)
VP9_COMMON_SRCS-$(HAVE_NEON_ASM) += common/arm/neon/vp9_reconintra_neon$(ASM)
+VP9_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/vp9_iht4x4_add_neon.c
+
# neon with assembly and intrinsics implementations. If both are available
# prefer assembly.
ifeq ($(HAVE_NEON_ASM), yes)