diff options
author | Janne Grunau <janne-libav@jannau.net> | 2015-07-12 18:30:09 +0200 |
---|---|---|
committer | Janne Grunau <janne-libav@jannau.net> | 2015-07-20 23:10:29 +0200 |
commit | f56d8d8dd72b1ab52aa814c5a0fccabf8040ef68 (patch) | |
tree | 536ad92351f6a907af34e6ea2187567023f66ede /libavcodec/aarch64/Makefile | |
parent | 40cf1bbacc6220a0aa6bed5c331871d43f9ce370 (diff) | |
download | ffmpeg-f56d8d8dd72b1ab52aa814c5a0fccabf8040ef68.tar.gz |
h264: aarch64: intra prediction optimisations
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 2afff297dc..d001b345c0 100644 --- a/libavcodec/aarch64/Makefile +++ b/libavcodec/aarch64/Makefile @@ -1,6 +1,7 @@ OBJS-$(CONFIG_FFT) += aarch64/fft_init_aarch64.o OBJS-$(CONFIG_H264CHROMA) += aarch64/h264chroma_init_aarch64.o OBJS-$(CONFIG_H264DSP) += aarch64/h264dsp_init_aarch64.o +OBJS-$(CONFIG_H264PRED) += aarch64/h264pred_init.o OBJS-$(CONFIG_H264QPEL) += aarch64/h264qpel_init_aarch64.o OBJS-$(CONFIG_HPELDSP) += aarch64/hpeldsp_init_aarch64.o OBJS-$(CONFIG_IMDCT15) += aarch64/imdct15_init.o @@ -18,6 +19,7 @@ NEON-OBJS-$(CONFIG_FFT) += aarch64/fft_neon.o NEON-OBJS-$(CONFIG_H264CHROMA) += aarch64/h264cmc_neon.o NEON-OBJS-$(CONFIG_H264DSP) += aarch64/h264dsp_neon.o \ aarch64/h264idct_neon.o +NEON-OBJS-$(CONFIG_H264PRED) += aarch64/h264pred_neon.o NEON-OBJS-$(CONFIG_H264QPEL) += aarch64/h264qpel_neon.o \ aarch64/hpeldsp_neon.o NEON-OBJS-$(CONFIG_HPELDSP) += aarch64/hpeldsp_neon.o |