diff options
author | Måns Rullgård <mans@mansr.com> | 2010-02-09 16:13:45 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-02-09 16:13:45 +0000 |
commit | 0c28474c92093d9b8a06ef7f6cf3d1c974422aad (patch) | |
tree | 26ec6ba4508ce44ae01a3eb9fe79c6332a97350a /libavcodec/arm/dsputil_init_armv6.c | |
parent | 3132614305a4591c75ac20e4f13d1398e17375b4 (diff) | |
download | ffmpeg-0c28474c92093d9b8a06ef7f6cf3d1c974422aad.tar.gz |
ARMv6 optimised sse16
Originally committed as revision 21703 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/arm/dsputil_init_armv6.c')
-rw-r--r-- | libavcodec/arm/dsputil_init_armv6.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/arm/dsputil_init_armv6.c b/libavcodec/arm/dsputil_init_armv6.c index 43eab46f0a..13ea01d4f7 100644 --- a/libavcodec/arm/dsputil_init_armv6.c +++ b/libavcodec/arm/dsputil_init_armv6.c @@ -64,6 +64,9 @@ int ff_pix_abs16_y2_armv6(void *s, uint8_t *blk1, uint8_t *blk2, int ff_pix_abs8_armv6(void *s, uint8_t *blk1, uint8_t *blk2, int line_size, int h); +int ff_sse16_armv6(void *s, uint8_t *blk1, uint8_t *blk2, + int line_size, int h); + void av_cold ff_dsputil_init_armv6(DSPContext* c, AVCodecContext *avctx) { if (!avctx->lowres && (avctx->idct_algo == FF_IDCT_AUTO || @@ -107,4 +110,6 @@ void av_cold ff_dsputil_init_armv6(DSPContext* c, AVCodecContext *avctx) c->sad[0] = ff_pix_abs16_armv6; c->sad[1] = ff_pix_abs8_armv6; + + c->sse[0] = ff_sse16_armv6; } |