diff options
author | Janne Grunau <janne-libav@jannau.net> | 2013-12-18 15:56:50 +0100 |
---|---|---|
committer | Janne Grunau <janne-libav@jannau.net> | 2014-01-15 12:17:49 +0100 |
commit | d5dd8c7bf0f0d77c581db3236e0d938f06fd5591 (patch) | |
tree | 64d24b2bace14abe057982948bb6178fa86f2309 /libavcodec/h264qpel.c | |
parent | 8438b3f09f6b225d0886cc385117c38eb44ca0c1 (diff) | |
download | ffmpeg-d5dd8c7bf0f0d77c581db3236e0d938f06fd5591.tar.gz |
aarch64: h264 qpel NEON optimizations
Ported from ARMv7 NEON.
Diffstat (limited to 'libavcodec/h264qpel.c')
-rw-r--r-- | libavcodec/h264qpel.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/h264qpel.c b/libavcodec/h264qpel.c index 24c9299786..ec46da244f 100644 --- a/libavcodec/h264qpel.c +++ b/libavcodec/h264qpel.c @@ -78,6 +78,8 @@ av_cold void ff_h264qpel_init(H264QpelContext *c, int bit_depth) break; } + if (ARCH_AARCH64) + ff_h264qpel_init_aarch64(c, bit_depth); if (ARCH_ARM) ff_h264qpel_init_arm(c, bit_depth); if (ARCH_PPC) |