diff options
author | Janne Grunau <janne-libav@jannau.net> | 2013-12-10 20:16:08 +0100 |
---|---|---|
committer | Janne Grunau <janne-libav@jannau.net> | 2014-01-15 12:07:18 +0100 |
commit | 71617884a2a673908bd5c0f73d4f91fdca3da82a (patch) | |
tree | b35815791bf524d87d9b16ad0c083dd589d0437c /libavcodec/rv40dsp.c | |
parent | b7b17ed66e199afc7246e642bf3b35c3f8eca217 (diff) | |
download | ffmpeg-71617884a2a673908bd5c0f73d4f91fdca3da82a.tar.gz |
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.c | 2 |
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) |