[FFmpeg-cvslog] r30253 - in trunk/libswscale: rgb2rgb_template.c swscale_template.c

zuxy subversion
Sat Jan 9 15:44:20 CET 2010


Author: zuxy
Date: Sat Jan  9 15:44:20 2010
New Revision: 30253

Log:
Remove unused PREFETCHW macro

Modified:
   trunk/libswscale/rgb2rgb_template.c
   trunk/libswscale/swscale_template.c

Modified: trunk/libswscale/rgb2rgb_template.c
==============================================================================
--- trunk/libswscale/rgb2rgb_template.c	Sat Jan  9 15:17:23 2010	(r30252)
+++ trunk/libswscale/rgb2rgb_template.c	Sat Jan  9 15:44:20 2010	(r30253)
@@ -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

Modified: trunk/libswscale/swscale_template.c
==============================================================================
--- trunk/libswscale/swscale_template.c	Sat Jan  9 15:17:23 2010	(r30252)
+++ trunk/libswscale/swscale_template.c	Sat Jan  9 15:44:20 2010	(r30253)
@@ -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



More information about the ffmpeg-cvslog mailing list