# HG changeset patch # User rfelker # Date 1097565374 0 # Node ID c8f35aaeb857d86efb2d43658277f49e71893577 # Parent fac626a2b73b75445e2d8a15c08fe7b81ee6147b 1000l btw what is the sense in all these nonsense REAL_* macros? the extra level of indirection seems to help nothing... can we reverse that and commit a sane replacement? diff -r fac626a2b73b -r c8f35aaeb857 libpostproc/postprocess_template.c --- a/libpostproc/postprocess_template.c Mon Oct 11 22:47:09 2004 +0000 +++ b/libpostproc/postprocess_template.c Tue Oct 12 07:16:14 2004 +0000 @@ -50,7 +50,7 @@ #ifdef HAVE_MMX2 #define REAL_PAVGB(a,b) "pavgb " #a ", " #b " \n\t" #elif defined (HAVE_3DNOW) -#define REAL_RPAVGB(a,b) "pavgusb " #a ", " #b " \n\t" +#define REAL_PAVGB(a,b) "pavgusb " #a ", " #b " \n\t" #endif #define PAVGB(a,b) REAL_PAVGB(a,b)