diff options
author | D Richard Felker III | 2004-10-12 07:16:14 +0000 |
---|---|---|
committer | D Richard Felker III | 2004-10-12 07:16:14 +0000 |
commit | 4471e59b24a7092d92c42997788b77a3f4100ff9 (patch) | |
tree | 77d1c28d195566ddc8d9a5702c9575dede3351e4 /libavcodec/libpostproc | |
parent | 83582de4c1a9a65167e3e033e9481a3be3aa6679 (diff) |
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
Diffstat (limited to 'libavcodec/libpostproc')
-rw-r--r-- | libavcodec/libpostproc/postprocess_template.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libpostproc/postprocess_template.c b/libavcodec/libpostproc/postprocess_template.c index a18242aad2..5e056aa04c 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) |