Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJanne Grunau <janne-libav@jannau.net>2013-12-10 23:16:08 +0400
committerJanne Grunau <janne-libav@jannau.net>2014-01-15 15:07:18 +0400
commit71617884a2a673908bd5c0f73d4f91fdca3da82a (patch)
treeb35815791bf524d87d9b16ad0c083dd589d0437c /libavcodec/rv40dsp.c
parentb7b17ed66e199afc7246e642bf3b35c3f8eca217 (diff)
aarch64: h264 chroma motion compensation NEON optimizations
Since RV40 and VC-1 use almost the same algorithm so optimizations for those two decoders are easy to do and included.
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 a7af1d6d8e..6517d46019 100644
--- a/libavcodec/rv40dsp.c
+++ b/libavcodec/rv40dsp.c
@@ -618,6 +618,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)