diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-01-15 14:59:44 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-01-15 15:00:06 +0100 |
commit | 6f001d87ff019735ec0758bd2f0b183f36386748 (patch) | |
tree | 6689b055bc6438d894ebd81905c8c2ef1b2dfcbd /libavcodec/h264chroma.c | |
parent | d5560f1fecde7d7a1fa0d6089ec1e8dd68ed8be1 (diff) | |
parent | 71617884a2a673908bd5c0f73d4f91fdca3da82a (diff) | |
download | ffmpeg-6f001d87ff019735ec0758bd2f0b183f36386748.tar.gz |
Merge commit '71617884a2a673908bd5c0f73d4f91fdca3da82a'
* commit '71617884a2a673908bd5c0f73d4f91fdca3da82a':
aarch64: h264 chroma motion compensation NEON optimizations
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h264chroma.c')
-rw-r--r-- | libavcodec/h264chroma.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/h264chroma.c b/libavcodec/h264chroma.c index 5f8ed9193b..5b3e13bdac 100644 --- a/libavcodec/h264chroma.c +++ b/libavcodec/h264chroma.c @@ -46,6 +46,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) |