changeset 436:35de17dd6ed8 libavcodec

* undefine local defines when they are no longer needed
author kabi
date Mon, 27 May 2002 08:37:13 +0000
parents 9247ad420889
children 86f68813b97f
files i386/idct_mmx.c
diffstat 1 files changed, 7 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/i386/idct_mmx.c	Mon May 27 08:34:24 2002 +0000
+++ b/i386/idct_mmx.c	Mon May 27 08:37:13 2002 +0000
@@ -528,9 +528,13 @@
     movq_r2m (mm3, *(col+offset+4*8));	// save y4
 
     movq_r2m (mm4, *(col+offset+3*8));	// save y3
+
+#undef T1
+#undef T2
+#undef T3
+#undef C4
 }
 
-
 static int32_t rounder0[] ATTR_ALIGN(8) =
     rounder ((1 << (COL_SHIFT - 1)) - 0.5);
 static int32_t rounder4[] ATTR_ALIGN(8) = rounder (0);
@@ -547,6 +551,8 @@
 static int32_t rounder5[] ATTR_ALIGN(8) =
     rounder (-0.441341716183);	/* C3*(-C5/C4+C5-C3)/2 */
 
+#undef COL_SHIFT
+#undef ROW_SHIFT
 
 #define declare_idct(idct,table,idct_row_head,idct_row,idct_row_tail,idct_row_mid)	\
 void idct (int16_t * block)					\