diff libmpcodecs/vf_tfields.c @ 28335:31287e75b5d8

HAVE_3DNOW --> HAVE_AMD3DNOW
author diego
date Mon, 26 Jan 2009 09:29:53 +0000
parents 25337a2147e7
children 0f1b5b68af32
line wrap: on
line diff
--- a/libmpcodecs/vf_tfields.c	Mon Jan 26 09:11:23 2009 +0000
+++ b/libmpcodecs/vf_tfields.c	Mon Jan 26 09:29:53 2009 +0000
@@ -46,7 +46,7 @@
 	}
 }
 
-#if HAVE_3DNOW
+#if HAVE_AMD3DNOW
 static void qpel_li_3DNOW(unsigned char *d, unsigned char *s, int w, int h, int ds, int ss, int up)
 {
 	int i, j, ssd=ss;
@@ -485,7 +485,7 @@
 #if HAVE_MMX2
 	if(gCpuCaps.hasMMX2) qpel_li = qpel_li_MMX2;
 #endif
-#if HAVE_3DNOW
+#if HAVE_AMD3DNOW
 	if(gCpuCaps.has3DNow) qpel_li = qpel_li_3DNOW;
 #endif
 	return 1;