diff armv4l/dsputil_neon.c @ 8340:834a77844ba3 libavcodec

ARM: NEON optimised h264_idct_dc_add
author mru
date Mon, 15 Dec 2008 22:12:54 +0000
parents a561ec6d1bf6
children
line wrap: on
line diff
--- a/armv4l/dsputil_neon.c	Mon Dec 15 22:12:51 2008 +0000
+++ b/armv4l/dsputil_neon.c	Mon Dec 15 22:12:54 2008 +0000
@@ -93,6 +93,7 @@
                                        int beta, int8_t *tc0);
 
 void ff_h264_idct_add_neon(uint8_t *dst, DCTELEM *block, int stride);
+void ff_h264_idct_dc_add_neon(uint8_t *dst, DCTELEM *block, int stride);
 
 void ff_dsputil_init_neon(DSPContext *c, AVCodecContext *avctx)
 {
@@ -164,4 +165,5 @@
     c->h264_h_loop_filter_chroma = ff_h264_h_loop_filter_chroma_neon;
 
     c->h264_idct_add = ff_h264_idct_add_neon;
+    c->h264_idct_dc_add = ff_h264_idct_dc_add_neon;
 }