summaryrefslogtreecommitdiff
path: root/libavcodec/aarch64/Makefile
diff options
context:
space:
mode:
authorJanne Grunau <janne-libav@jannau.net>2013-12-20 20:03:58 +0100
committerJanne Grunau <janne-libav@jannau.net>2014-01-15 12:30:24 +0100
commitc65d67ef50241886b9749e88fd333c52090f70c7 (patch)
tree096a5625f5f2ac0d7be304772e1b18ce0615f8a7 /libavcodec/aarch64/Makefile
parentd5dd8c7bf0f0d77c581db3236e0d938f06fd5591 (diff)
aarch64: hpeldsp NEON optimizations
Ported from ARMv7 NEON.
Diffstat (limited to 'libavcodec/aarch64/Makefile')
-rw-r--r--libavcodec/aarch64/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/libavcodec/aarch64/Makefile b/libavcodec/aarch64/Makefile
index 1d80d9a268..aa1dd4e073 100644
--- a/libavcodec/aarch64/Makefile
+++ b/libavcodec/aarch64/Makefile
@@ -1,9 +1,12 @@
OBJS-$(CONFIG_H264CHROMA) += aarch64/h264chroma_init_aarch64.o
OBJS-$(CONFIG_H264DSP) += aarch64/h264dsp_init_aarch64.o
OBJS-$(CONFIG_H264QPEL) += aarch64/h264qpel_init_aarch64.o
+OBJS-$(CONFIG_HPELDSP) += aarch64/hpeldsp_init_aarch64.o
OBJS-$(CONFIG_RV40_DECODER) += aarch64/rv40dsp_init_aarch64.o
OBJS-$(CONFIG_VC1_DECODER) += aarch64/vc1dsp_init_aarch64.o
NEON-OBJS-$(CONFIG_H264CHROMA) += aarch64/h264cmc_neon.o
NEON-OBJS-$(CONFIG_H264DSP) += aarch64/h264idct_neon.o
-NEON-OBJS-$(CONFIG_H264QPEL) += aarch64/h264qpel_neon.o
+NEON-OBJS-$(CONFIG_H264QPEL) += aarch64/h264qpel_neon.o \
+ aarch64/hpeldsp_neon.o
+NEON-OBJS-$(CONFIG_HPELDSP) += aarch64/hpeldsp_neon.o