diff options
author | Mason Carter <void.main.argc.argv@gmail.com> | 2013-12-14 17:32:56 -0800 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-12-20 14:53:39 +0200 |
commit | 832e19063209a5f355af733d1a45f5051f49ce33 (patch) | |
tree | 816403978498ea9fb3b7a3dbc3619784b9ae1485 /libavcodec/vc1dsp.c | |
parent | e1b9de4fe15cda08cb18a2821a5729cf95e33d2a (diff) | |
download | ffmpeg-832e19063209a5f355af733d1a45f5051f49ce33.tar.gz |
vc1: arm: Add NEON assembly
For:
ff_vc1_inv_trans_{8,4}x{8,4}_{dc_,}neon
ff_put_pixels8x8_neon
ff_put_vc1_mspel_mc{0,1,2,3}{0,1,2,3}_neon (except for 00)
Based on ARM assembly code in libavcodec/arm by Rob Clark and Mans
Rullgard.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/vc1dsp.c')
-rw-r--r-- | libavcodec/vc1dsp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/vc1dsp.c b/libavcodec/vc1dsp.c index 12295fff2b..7ef580d24e 100644 --- a/libavcodec/vc1dsp.c +++ b/libavcodec/vc1dsp.c @@ -854,6 +854,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) |