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/vc1dsp.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libavcodec/vc1dsp.c') diff --git a/libavcodec/vc1dsp.c b/libavcodec/vc1dsp.c index b2902d5886..e47bd5aff2 100644 --- a/libavcodec/vc1dsp.c +++ b/libavcodec/vc1dsp.c @@ -934,6 +934,8 @@ av_cold void ff_vc1dsp_init(VC1DSPContext *dsp) dsp->sprite_v_double_twoscale = sprite_v_double_twoscale_c; #endif /* CONFIG_WMV3IMAGE_DECODER || CONFIG_VC1IMAGE_DECODER */ + if (ARCH_AARCH64) + ff_vc1dsp_init_aarch64(dsp); if (ARCH_ARM) ff_vc1dsp_init_arm(dsp); if (ARCH_PPC) -- cgit v1.2.3