From 4471e59b24a7092d92c42997788b77a3f4100ff9 Mon Sep 17 00:00:00 2001
From: D Richard Felker III <dalias@aerifal.cx>
Date: Tue, 12 Oct 2004 07:16:14 +0000
Subject: [PATCH] 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?

Originally committed as revision 3587 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavcodec/libpostproc/postprocess_template.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/libpostproc/postprocess_template.c b/libavcodec/libpostproc/postprocess_template.c
index a18242aad29..5e056aa04c4 100644
--- a/libavcodec/libpostproc/postprocess_template.c
+++ b/libavcodec/libpostproc/postprocess_template.c
@@ -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)
 
-- 
GitLab