Add MMX SIMD implementation of computationally intensive routines.


git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3648 3789f03b-4d11-0410-bbf8-ca57d06f2519
diff --git a/common/jpeg/jmorecfg.h b/common/jpeg/jmorecfg.h
index 69d4fe0..18670ec 100644
--- a/common/jpeg/jmorecfg.h
+++ b/common/jpeg/jmorecfg.h
@@ -325,7 +325,11 @@
  */
 
 #ifndef MULTIPLIER
+#ifndef WITH_SIMD
 #define MULTIPLIER  int		/* type for fastest integer multiply */
+#else
+#define MULTIPLIER short  /* prefer 16-bit with SIMD for parellelism */
+#endif
 #endif