diff i386/dsputil_mmx.c @ 5587:3ae03eacbe9f libavcodec

use 16bit IDWT (a SIMD implementation of it should be >2x faster then with the old 32bit code) disable mmx/sse2 optimizations as they need a rewrite now
author michael
date Sat, 25 Aug 2007 03:00:51 +0000
parents e9a6215f4e3a
children 642588a60570
line wrap: on
line diff
--- a/i386/dsputil_mmx.c	Fri Aug 24 23:49:11 2007 +0000
+++ b/i386/dsputil_mmx.c	Sat Aug 25 03:00:51 2007 +0000
@@ -3621,6 +3621,7 @@
 #endif
 
 #ifdef CONFIG_SNOW_DECODER
+#if 0
         if(mm_flags & MM_SSE2){
             c->horizontal_compose97i = ff_snow_horizontal_compose97i_sse2;
             c->vertical_compose97i = ff_snow_vertical_compose97i_sse2;
@@ -3632,6 +3633,7 @@
             c->inner_add_yblock = ff_snow_inner_add_yblock_mmx;
         }
 #endif
+#endif
 
         if(mm_flags & MM_3DNOW){
 #ifdef CONFIG_ENCODERS