From d3789eeeed3423bd1ca9dc40030a2f7a21ea5332 Mon Sep 17 00:00:00 2001 From: Janne Grunau Date: Sat, 5 Apr 2014 11:47:18 +0200 Subject: aarch64: implement videodsp.prefetch 8% faster h264 decoding on Apple A7. --- libavcodec/videodsp.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libavcodec/videodsp.c') diff --git a/libavcodec/videodsp.c b/libavcodec/videodsp.c index a6a1d3753a..e6d9303903 100644 --- a/libavcodec/videodsp.c +++ b/libavcodec/videodsp.c @@ -43,6 +43,8 @@ av_cold void ff_videodsp_init(VideoDSPContext *ctx, int bpc) ctx->emulated_edge_mc = ff_emulated_edge_mc_16; } + if (ARCH_AARCH64) + ff_videodsp_init_aarch64(ctx, bpc); if (ARCH_ARM) ff_videodsp_init_arm(ctx, bpc); if (ARCH_PPC) -- cgit v1.2.3