summaryrefslogtreecommitdiff
path: root/libavcodec/vc1dsp.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-12-20 23:11:29 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-12-20 23:12:16 +0100
commit69278d94c4823f5ea988751e34cb2b8e33426b01 (patch)
tree85f53f9af0336138eea9c0eed5021c340f332615 /libavcodec/vc1dsp.c
parenteedd9148733ff4467c62092ad1c1a26d6125b249 (diff)
parent832e19063209a5f355af733d1a45f5051f49ce33 (diff)
Merge commit '832e19063209a5f355af733d1a45f5051f49ce33'
* commit '832e19063209a5f355af733d1a45f5051f49ce33': vc1: arm: Add NEON assembly 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 aab9d1aa6d..8cca521872 100644
--- a/libavcodec/vc1dsp.c
+++ b/libavcodec/vc1dsp.c
@@ -888,6 +888,8 @@ av_cold void ff_vc1dsp_init(VC1DSPContext* dsp) {
dsp->sprite_v_double_twoscale = sprite_v_double_twoscale_c;
#endif
+ if (ARCH_ARM)
+ ff_vc1dsp_init_arm(dsp);
if (ARCH_PPC)
ff_vc1dsp_init_ppc(dsp);
if (ARCH_X86)