diff i386/dsputil_mmx.c @ 5394:e9a6215f4e3a libavcodec

help some gcc version to optimize out those functions
author aurel
date Tue, 24 Jul 2007 08:54:56 +0000
parents ef85411bb7e8
children 3ae03eacbe9f
line wrap: on
line diff
--- a/i386/dsputil_mmx.c	Tue Jul 24 02:08:27 2007 +0000
+++ b/i386/dsputil_mmx.c	Tue Jul 24 08:54:56 2007 +0000
@@ -622,6 +622,7 @@
         "paddb %%mm1, %%mm6             \n\t"
 
 static void h263_v_loop_filter_mmx(uint8_t *src, int stride, int qscale){
+    if(ENABLE_ANY_H263) {
     const int strength= ff_h263_loop_filter_strength[qscale];
 
     asm volatile(
@@ -638,6 +639,7 @@
           "+m" (*(uint64_t*)(src + 1*stride))
         : "g" (2*strength), "m"(ff_pb_FC)
     );
+    }
 }
 
 static inline void transpose4x4(uint8_t *dst, uint8_t *src, int dst_stride, int src_stride){
@@ -670,6 +672,7 @@
 }
 
 static void h263_h_loop_filter_mmx(uint8_t *src, int stride, int qscale){
+    if(ENABLE_ANY_H263) {
     const int strength= ff_h263_loop_filter_strength[qscale];
     uint64_t temp[4] __attribute__ ((aligned(8)));
     uint8_t *btemp= (uint8_t*)temp;
@@ -718,6 +721,7 @@
            "r" ((long)   stride ),
            "r" ((long)(3*stride))
     );
+    }
 }
 
 #ifdef CONFIG_ENCODERS