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.h | |
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.h')
-rw-r--r-- | libavcodec/vc1dsp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/vc1dsp.h b/libavcodec/vc1dsp.h index 84d4b707a8..862119264b 100644 --- a/libavcodec/vc1dsp.h +++ b/libavcodec/vc1dsp.h @@ -75,6 +75,7 @@ typedef struct VC1DSPContext { } VC1DSPContext; void ff_vc1dsp_init(VC1DSPContext* c); +void ff_vc1dsp_init_arm(VC1DSPContext* dsp); void ff_vc1dsp_init_ppc(VC1DSPContext *c); void ff_vc1dsp_init_x86(VC1DSPContext* dsp); |