PAVGB support

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2552 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
nick 2001-10-30 16:16:49 +00:00
parent 3940009136
commit a6edfc86db
1 changed files with 3 additions and 1 deletions

View File

@ -28,15 +28,17 @@
#ifdef HAVE_3DNOW
#define PREFETCH "prefetch"
#define PREFETCHW "prefetchw"
#define PAVGB "pavgusb"
#elif defined ( HAVE_MMX2 )
#define PREFETCH "prefetchnta"
#define PREFETCHW "prefetcht0"
#define PAVGB "pavgb"
#else
#define PREFETCH "/nop"
#define PREFETCHW "/nop"
#endif
#ifdef HAVE_K6_2PLUS
#ifdef HAVE_3DNOW
/* On K6 femms is faster of emms. On K7 femms is directly mapped on emms. */
#define EMMS "femms"
#else