changeset 30211:1e02e823023c

Remove unused PREFETCHW macro
author zuxy
date Sat, 09 Jan 2010 14:44:20 +0000
parents 0917c3e8c499
children c1531f608d76
files libswscale/rgb2rgb_template.c libswscale/swscale_template.c
diffstat 2 files changed, 0 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/libswscale/rgb2rgb_template.c	Sat Jan 09 14:17:23 2010 +0000
+++ b/libswscale/rgb2rgb_template.c	Sat Jan 09 14:44:20 2010 +0000
@@ -34,7 +34,6 @@
 #undef EMMS
 #undef SFENCE
 #undef MMREG_SIZE
-#undef PREFETCHW
 #undef PAVGB
 
 #if HAVE_SSE2
@@ -45,15 +44,12 @@
 
 #if HAVE_AMD3DNOW
 #define PREFETCH  "prefetch"
-#define PREFETCHW "prefetchw"
 #define PAVGB     "pavgusb"
 #elif HAVE_MMX2
 #define PREFETCH "prefetchnta"
-#define PREFETCHW "prefetcht0"
 #define PAVGB     "pavgb"
 #else
 #define PREFETCH  " # nop"
-#define PREFETCHW " # nop"
 #endif
 
 #if HAVE_AMD3DNOW
--- a/libswscale/swscale_template.c	Sat Jan 09 14:17:23 2010 +0000
+++ b/libswscale/swscale_template.c	Sat Jan 09 14:44:20 2010 +0000
@@ -25,17 +25,13 @@
 #undef MOVNTQ
 #undef PAVGB
 #undef PREFETCH
-#undef PREFETCHW
 
 #if COMPILE_TEMPLATE_AMD3DNOW
 #define PREFETCH  "prefetch"
-#define PREFETCHW "prefetchw"
 #elif COMPILE_TEMPLATE_MMX2
 #define PREFETCH "prefetchnta"
-#define PREFETCHW "prefetcht0"
 #else
 #define PREFETCH  " # nop"
-#define PREFETCHW " # nop"
 #endif
 
 #if COMPILE_TEMPLATE_MMX2