summaryrefslogtreecommitdiff
path: root/libavcodec/ppc/mathops.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-12-27 11:33:26 +0000
committerDiego Biurrun <diego@biurrun.de>2008-12-27 11:33:26 +0000
commit79cb09b2f76c86dc988a5eba33b0cf8bd08a9b0e (patch)
tree1d4069cd7b3a696e41f88689fb170e431c2430aa /libavcodec/ppc/mathops.h
parentd89eae6f1a143b5af89f6907cc8abea4d1dee8e4 (diff)
consistency cosmetics: Rename POWERPC identifiers to PPC.
Originally committed as revision 16359 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ppc/mathops.h')
-rw-r--r--libavcodec/ppc/mathops.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ppc/mathops.h b/libavcodec/ppc/mathops.h
index 776ee62eca..edfe2ea242 100644
--- a/libavcodec/ppc/mathops.h
+++ b/libavcodec/ppc/mathops.h
@@ -23,7 +23,7 @@
#ifndef AVCODEC_PPC_MATHOPS_H
#define AVCODEC_PPC_MATHOPS_H
-#if defined(ARCH_POWERPC_405)
+#if defined(ARCH_PPC_405)
/* signed 16x16 -> 32 multiply add accumulate */
#define MAC16(rt, ra, rb) \
__asm__ ("maclhw %0, %2, %3" : "=r" (rt) : "0" (rt), "r" (ra), "r" (rb));