From 71617884a2a673908bd5c0f73d4f91fdca3da82a Mon Sep 17 00:00:00 2001 From: Janne Grunau Date: Tue, 10 Dec 2013 20:16:08 +0100 Subject: aarch64: h264 chroma motion compensation NEON optimizations Since RV40 and VC-1 use almost the same algorithm so optimizations for those two decoders are easy to do and included. --- libavcodec/h264chroma.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libavcodec/h264chroma.c') diff --git a/libavcodec/h264chroma.c b/libavcodec/h264chroma.c index 8aa5e93e0d..d5146de7b1 100644 --- a/libavcodec/h264chroma.c +++ b/libavcodec/h264chroma.c @@ -44,6 +44,8 @@ av_cold void ff_h264chroma_init(H264ChromaContext *c, int bit_depth) SET_CHROMA(8); } + if (ARCH_AARCH64) + ff_h264chroma_init_aarch64(c, bit_depth); if (ARCH_ARM) ff_h264chroma_init_arm(c, bit_depth); if (ARCH_PPC) -- cgit v1.2.3