summaryrefslogtreecommitdiff
path: root/libavcodec/vc1dsp.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-01-15 14:59:44 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-01-15 15:00:06 +0100
commit6f001d87ff019735ec0758bd2f0b183f36386748 (patch)
tree6689b055bc6438d894ebd81905c8c2ef1b2dfcbd /libavcodec/vc1dsp.c
parentd5560f1fecde7d7a1fa0d6089ec1e8dd68ed8be1 (diff)
parent71617884a2a673908bd5c0f73d4f91fdca3da82a (diff)
downloadffmpeg-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/vc1dsp.c')
-rw-r--r--libavcodec/vc1dsp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/vc1dsp.c b/libavcodec/vc1dsp.c
index 3b352d6d83..ec9c17b198 100644
--- a/libavcodec/vc1dsp.c
+++ b/libavcodec/vc1dsp.c
@@ -947,6 +947,8 @@ av_cold void ff_vc1dsp_init(VC1DSPContext *dsp)
dsp->sprite_v_double_twoscale = sprite_v_double_twoscale_c;
#endif /* CONFIG_WMV3IMAGE_DECODER || CONFIG_VC1IMAGE_DECODER */
+ if (ARCH_AARCH64)
+ ff_vc1dsp_init_aarch64(dsp);
if (ARCH_ARM)
ff_vc1dsp_init_arm(dsp);
if (ARCH_PPC)