diff options
author | Janne Grunau <janne-libav@jannau.net> | 2013-12-20 20:03:58 +0100 |
---|---|---|
committer | Janne Grunau <janne-libav@jannau.net> | 2014-01-15 12:30:24 +0100 |
commit | c65d67ef50241886b9749e88fd333c52090f70c7 (patch) | |
tree | 096a5625f5f2ac0d7be304772e1b18ce0615f8a7 /libavcodec/aarch64/Makefile | |
parent | d5dd8c7bf0f0d77c581db3236e0d938f06fd5591 (diff) | |
download | ffmpeg-c65d67ef50241886b9749e88fd333c52090f70c7.tar.gz |
aarch64: hpeldsp NEON optimizations
Ported from ARMv7 NEON.
Diffstat (limited to 'libavcodec/aarch64/Makefile')
-rw-r--r-- | libavcodec/aarch64/Makefile | 5 |
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 |