summaryrefslogtreecommitdiff
path: root/libavcodec/h264qpel.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-01-15 15:13:12 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-01-15 15:13:41 +0100
commit19fc3c0122ebbffd5d8678cc70750503545fa7f8 (patch)
treed4181c5647f90d5d18c3f95484abc6073ec5e95d /libavcodec/h264qpel.c
parentfb1c786a9dc646b7fdd1d15ad98a4be87c8deb87 (diff)
parentd5dd8c7bf0f0d77c581db3236e0d938f06fd5591 (diff)
downloadffmpeg-19fc3c0122ebbffd5d8678cc70750503545fa7f8.tar.gz
Merge commit 'd5dd8c7bf0f0d77c581db3236e0d938f06fd5591'
* commit 'd5dd8c7bf0f0d77c581db3236e0d938f06fd5591': aarch64: h264 qpel NEON optimizations Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h264qpel.c')
-rw-r--r--libavcodec/h264qpel.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/h264qpel.c b/libavcodec/h264qpel.c
index 7c86d2a2a9..5f1bfa3176 100644
--- a/libavcodec/h264qpel.c
+++ b/libavcodec/h264qpel.c
@@ -96,6 +96,8 @@ av_cold void ff_h264qpel_init(H264QpelContext *c, int bit_depth)
break;
}
+ if (ARCH_AARCH64)
+ ff_h264qpel_init_aarch64(c, bit_depth);
if (ARCH_ARM)
ff_h264qpel_init_arm(c, bit_depth);
if (ARCH_PPC)