diff options
author | Janne Grunau <janne-libav@jannau.net> | 2013-12-13 00:33:48 +0100 |
---|---|---|
committer | Janne Grunau <janne-libav@jannau.net> | 2014-01-15 12:13:41 +0100 |
commit | 8438b3f09f6b225d0886cc385117c38eb44ca0c1 (patch) | |
tree | a915ff80bf5aa27f6c4a47cec35c26d04e111e85 /libavcodec/aarch64/Makefile | |
parent | 71617884a2a673908bd5c0f73d4f91fdca3da82a (diff) | |
download | ffmpeg-8438b3f09f6b225d0886cc385117c38eb44ca0c1.tar.gz |
aarch64: h264 idct NEON assembler optimizations
Ported from ARMv7 NEON.
Diffstat (limited to 'libavcodec/aarch64/Makefile')
-rw-r--r-- | libavcodec/aarch64/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/aarch64/Makefile b/libavcodec/aarch64/Makefile index 879e6befee..06e3c778ad 100644 --- a/libavcodec/aarch64/Makefile +++ b/libavcodec/aarch64/Makefile @@ -1,5 +1,7 @@ OBJS-$(CONFIG_H264CHROMA) += aarch64/h264chroma_init_aarch64.o +OBJS-$(CONFIG_H264DSP) += aarch64/h264dsp_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 |