summaryrefslogtreecommitdiffstats
path: root/libavcodec/h264chroma.c
diff options
context:
space:
mode:
authorJanne Grunau <janne-libav@jannau.net>2013-12-10 20:16:08 +0100
committerJanne Grunau <janne-libav@jannau.net>2014-01-15 12:07:18 +0100
commit71617884a2a673908bd5c0f73d4f91fdca3da82a (patch)
treeb35815791bf524d87d9b16ad0c083dd589d0437c /libavcodec/h264chroma.c
parentb7b17ed66e199afc7246e642bf3b35c3f8eca217 (diff)
downloadffmpeg-streaming-71617884a2a673908bd5c0f73d4f91fdca3da82a.zip
ffmpeg-streaming-71617884a2a673908bd5c0f73d4f91fdca3da82a.tar.gz
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.
Diffstat (limited to 'libavcodec/h264chroma.c')
-rw-r--r--libavcodec/h264chroma.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/h264chroma.c b/libavcodec/h264chroma.c
index 8aa5e93..d5146de 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)
OpenPOWER on IntegriCloud