summaryrefslogtreecommitdiff
path: root/libavcodec/videodsp.c
diff options
context:
space:
mode:
authorJanne Grunau <j@jannau.net>2014-04-05 11:47:18 +0200
committerJanne Grunau <janne-libav@jannau.net>2014-04-06 21:18:49 +0200
commitd3789eeeed3423bd1ca9dc40030a2f7a21ea5332 (patch)
treee611418f1b7b3e83aa908fc03ed77485df17843e /libavcodec/videodsp.c
parent8675bcb0addb1c7fb0b04682d1f3f95d5b8dae14 (diff)
aarch64: implement videodsp.prefetch
8% faster h264 decoding on Apple A7.
Diffstat (limited to 'libavcodec/videodsp.c')
-rw-r--r--libavcodec/videodsp.c2
1 files changed, 2 insertions, 0 deletions
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)