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/hpeldsp.c | |
parent | d5dd8c7bf0f0d77c581db3236e0d938f06fd5591 (diff) | |
download | ffmpeg-c65d67ef50241886b9749e88fd333c52090f70c7.tar.gz |
aarch64: hpeldsp NEON optimizations
Ported from ARMv7 NEON.
Diffstat (limited to 'libavcodec/hpeldsp.c')
-rw-r--r-- | libavcodec/hpeldsp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/hpeldsp.c b/libavcodec/hpeldsp.c index 598f9561a3..f8b90e43d6 100644 --- a/libavcodec/hpeldsp.c +++ b/libavcodec/hpeldsp.c @@ -54,6 +54,8 @@ av_cold void ff_hpeldsp_init(HpelDSPContext *c, int flags) hpel_funcs(avg, [3], 2); hpel_funcs(avg_no_rnd,, 16); + if (ARCH_AARCH64) + ff_hpeldsp_init_aarch64(c, flags); if (ARCH_ARM) ff_hpeldsp_init_arm(c, flags); if (ARCH_BFIN) |