From 0b9a237b2386ff84a6f99716bd58fa27a1b767e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexandra=20H=C3=A1jkov=C3=A1?= Date: Mon, 27 Mar 2017 09:52:55 +0200 Subject: hevc: Add NEON 4x4 and 8x8 IDCT MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Optimized by Martin Storsjö . The speedup vs C code is around 3.2-4.4x. Signed-off-by: Martin Storsjö --- libavcodec/hevcdsp.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libavcodec/hevcdsp.c') diff --git a/libavcodec/hevcdsp.c b/libavcodec/hevcdsp.c index 8ae023b..81db9e2 100644 --- a/libavcodec/hevcdsp.c +++ b/libavcodec/hevcdsp.c @@ -245,6 +245,8 @@ void ff_hevc_dsp_init(HEVCDSPContext *hevcdsp, int bit_depth) break; } + if (ARCH_ARM) + ff_hevc_dsp_init_arm(hevcdsp, bit_depth); if (ARCH_PPC) ff_hevc_dsp_init_ppc(hevcdsp, bit_depth); if (ARCH_X86) -- cgit v1.1