diff options
author | Zuxy Meng <zuxy.meng@gmail.com> | 2010-01-09 14:44:20 +0000 |
---|---|---|
committer | Zuxy Meng <zuxy.meng@gmail.com> | 2010-01-09 14:44:20 +0000 |
commit | 4b19045566d5b67be200eebb4eba577c865d133a (patch) | |
tree | 6d6e229ddeedaeb78fc81cc14d5c6afd88221464 | |
parent | 14b8607065ff7204cff29b108e42fd930a52a5ed (diff) | |
download | ffmpeg-4b19045566d5b67be200eebb4eba577c865d133a.tar.gz |
Remove unused PREFETCHW macro
Originally committed as revision 30253 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
-rw-r--r-- | libswscale/rgb2rgb_template.c | 4 | ||||
-rw-r--r-- | libswscale/swscale_template.c | 4 |
2 files changed, 0 insertions, 8 deletions
diff --git a/libswscale/rgb2rgb_template.c b/libswscale/rgb2rgb_template.c index 1a5464a8c9..cdb5c8e7c8 100644 --- a/libswscale/rgb2rgb_template.c +++ b/libswscale/rgb2rgb_template.c @@ -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 diff --git a/libswscale/swscale_template.c b/libswscale/swscale_template.c index d14cf8f4a4..9aa9bd8d41 100644 --- a/libswscale/swscale_template.c +++ b/libswscale/swscale_template.c @@ -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 |