diff options
author | Janne Grunau <janne-libav@jannau.net> | 2013-12-20 21:02:43 +0100 |
---|---|---|
committer | Janne Grunau <janne-libav@jannau.net> | 2014-01-15 12:31:04 +0100 |
commit | 36e3b1f2fd262028834a9d7b1eb533c1218ee6c2 (patch) | |
tree | d897dbdd7b40d0b58d8c9d6d383283a448cb54b6 /libavcodec/aarch64/Makefile | |
parent | c65d67ef50241886b9749e88fd333c52090f70c7 (diff) | |
download | ffmpeg-36e3b1f2fd262028834a9d7b1eb533c1218ee6c2.tar.gz |
aarch64: h264 loop filter NEON optimizations
Ported from ARMv7 NEON.
Diffstat (limited to 'libavcodec/aarch64/Makefile')
-rw-r--r-- | libavcodec/aarch64/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/aarch64/Makefile b/libavcodec/aarch64/Makefile index aa1dd4e073..93a8d0c294 100644 --- a/libavcodec/aarch64/Makefile +++ b/libavcodec/aarch64/Makefile @@ -6,7 +6,8 @@ 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_H264DSP) += aarch64/h264dsp_neon.o \ + aarch64/h264idct_neon.o NEON-OBJS-$(CONFIG_H264QPEL) += aarch64/h264qpel_neon.o \ aarch64/hpeldsp_neon.o NEON-OBJS-$(CONFIG_HPELDSP) += aarch64/hpeldsp_neon.o |