diff options
author | Mans Rullgard <mans@mansr.com> | 2011-02-02 16:26:20 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-02-07 16:08:23 +0000 |
commit | a1c1d3c003b0ec16fdb6574913781313fb2c7ab6 (patch) | |
tree | df33c3a7a54ec1a24675091eaf2e94bb9335d699 /libavcodec/vp8dsp.h | |
parent | 5bea615dc383cf3617c5057db4fbc6832fc64137 (diff) | |
download | ffmpeg-a1c1d3c003b0ec16fdb6574913781313fb2c7ab6.tar.gz |
VP8: ARM NEON optimisations for dsp functions
This adds NEON optimised versions of all functions in VP8DSPContext.
Based on initial work by Rob Clark.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/vp8dsp.h')
-rw-r--r-- | libavcodec/vp8dsp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/vp8dsp.h b/libavcodec/vp8dsp.h index ee5c7ec0fb..e8757ab7d0 100644 --- a/libavcodec/vp8dsp.h +++ b/libavcodec/vp8dsp.h @@ -79,5 +79,6 @@ void ff_put_vp8_pixels4_c(uint8_t *dst, uint8_t *src, int stride, int h, int x, void ff_vp8dsp_init(VP8DSPContext *c); void ff_vp8dsp_init_x86(VP8DSPContext *c); void ff_vp8dsp_init_altivec(VP8DSPContext *c); +void ff_vp8dsp_init_arm(VP8DSPContext *c); #endif /* AVCODEC_VP8DSP_H */ |