From d5dd8c7bf0f0d77c581db3236e0d938f06fd5591 Mon Sep 17 00:00:00 2001 From: Janne Grunau Date: Wed, 18 Dec 2013 15:56:50 +0100 Subject: aarch64: h264 qpel NEON optimizations Ported from ARMv7 NEON. --- libavcodec/h264qpel.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libavcodec/h264qpel.c') 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) -- cgit v1.2.3