changeset 2295:c8f35aaeb857 libavcodec

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?
author rfelker
date Tue, 12 Oct 2004 07:16:14 +0000
parents fac626a2b73b
children 2b75dff01118
files libpostproc/postprocess_template.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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)