summaryrefslogtreecommitdiff
path: root/libavcodec/rv40dsp.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/rv40dsp.c
parentd5560f1fecde7d7a1fa0d6089ec1e8dd68ed8be1 (diff)
parent71617884a2a673908bd5c0f73d4f91fdca3da82a (diff)
Merge commit '71617884a2a673908bd5c0f73d4f91fdca3da82a'
* commit '71617884a2a673908bd5c0f73d4f91fdca3da82a': aarch64: h264 chroma motion compensation NEON optimizations Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/rv40dsp.c')
-rw-r--r--libavcodec/rv40dsp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/rv40dsp.c b/libavcodec/rv40dsp.c
index bdd9a3e3e6..62dd5b57b8 100644
--- a/libavcodec/rv40dsp.c
+++ b/libavcodec/rv40dsp.c
@@ -619,6 +619,8 @@ av_cold void ff_rv40dsp_init(RV34DSPContext *c)
c->rv40_loop_filter_strength[0] = rv40_h_loop_filter_strength;
c->rv40_loop_filter_strength[1] = rv40_v_loop_filter_strength;
+ if (ARCH_AARCH64)
+ ff_rv40dsp_init_aarch64(c);
if (ARCH_ARM)
ff_rv40dsp_init_arm(c);
if (ARCH_X86)