diff arm/dsputil_init_armv6.c @ 11117:ad6d17b36a3a libavcodec

ARMv6 optimised pix_sum
author mru
date Tue, 09 Feb 2010 16:13:52 +0000
parents 0198e3582544
children
line wrap: on
line diff
--- a/arm/dsputil_init_armv6.c	Tue Feb 09 16:13:49 2010 +0000
+++ b/arm/dsputil_init_armv6.c	Tue Feb 09 16:13:52 2010 +0000
@@ -68,6 +68,7 @@
                    int line_size, int h);
 
 int ff_pix_norm1_armv6(uint8_t *pix, int line_size);
+int ff_pix_sum_armv6(uint8_t *pix, int line_size);
 
 void av_cold ff_dsputil_init_armv6(DSPContext* c, AVCodecContext *avctx)
 {
@@ -116,4 +117,5 @@
     c->sse[0] = ff_sse16_armv6;
 
     c->pix_norm1 = ff_pix_norm1_armv6;
+    c->pix_sum   = ff_pix_sum_armv6;
 }