diff i386/h264dsp_mmx.c @ 3173:9a2cc7b0fbdb libavcodec

h264_idct_add only needs mmx1
author lorenm
date Tue, 07 Mar 2006 22:33:32 +0000
parents 8b51e108cba6
children b65cbae9d940
line wrap: on
line diff
--- a/i386/h264dsp_mmx.c	Mon Mar 06 22:06:33 2006 +0000
+++ b/i386/h264dsp_mmx.c	Tue Mar 07 22:33:32 2006 +0000
@@ -65,7 +65,7 @@
     "packuswb  "#z",    "#p" \n\t"\
     "movd      "#p",    (%0) \n\t"
 
-void ff_h264_idct_add_mmx2(uint8_t *dst, int16_t *block, int stride)
+static void ff_h264_idct_add_mmx(uint8_t *dst, int16_t *block, int stride)
 {
     /* Load dct coeffs */
     asm volatile(
@@ -104,7 +104,7 @@
     );
 }
 
-void ff_h264_idct_dc_add_mmx2(uint8_t *dst, int16_t *block, int stride)
+static void ff_h264_idct_dc_add_mmx2(uint8_t *dst, int16_t *block, int stride)
 {
     int dc = (block[0] + 32) >> 6;
     asm volatile(
@@ -140,7 +140,7 @@
     );
 }
 
-void ff_h264_idct8_dc_add_mmx2(uint8_t *dst, int16_t *block, int stride)
+static void ff_h264_idct8_dc_add_mmx2(uint8_t *dst, int16_t *block, int stride)
 {
     int dc = (block[0] + 32) >> 6;
     int y;