diff options
author | Janne Grunau <j@jannau.net> | 2014-04-05 11:47:18 +0200 |
---|---|---|
committer | Janne Grunau <janne-libav@jannau.net> | 2014-04-06 21:18:49 +0200 |
commit | d3789eeeed3423bd1ca9dc40030a2f7a21ea5332 (patch) | |
tree | e611418f1b7b3e83aa908fc03ed77485df17843e /libavcodec/videodsp.c | |
parent | 8675bcb0addb1c7fb0b04682d1f3f95d5b8dae14 (diff) | |
download | ffmpeg-d3789eeeed3423bd1ca9dc40030a2f7a21ea5332.tar.gz |
aarch64: implement videodsp.prefetch
8% faster h264 decoding on Apple A7.
Diffstat (limited to 'libavcodec/videodsp.c')
-rw-r--r-- | libavcodec/videodsp.c | 2 |
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) |