summaryrefslogtreecommitdiff
path: root/libavcodec/ppc/mathops.h
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-05-26 05:00:51 +0000
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-05-26 05:00:51 +0000
commit34d11b875f96cab642893f12656f24899ca42ad7 (patch)
tree1605cbf942e86770284fbfdb9082523f61000e24 /libavcodec/ppc/mathops.h
parent71b0654cc6693a8c925966cfb88ec62c1052609f (diff)
Change HAVE_PPC64 to ARCH_PPC64.
As a side-effect this also gives it the correct value on e.g. PPC970FX-based PPC64 systems, thus fixing "make test" (mp2/mp3 decoding). Originally committed as revision 18953 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 a74fcfa792..1dcc09aebd 100644
--- a/libavcodec/ppc/mathops.h
+++ b/libavcodec/ppc/mathops.h
@@ -44,7 +44,7 @@ static inline av_const int MULH(int a, int b){
return r;
}
-#if !HAVE_PPC64
+#if !ARCH_PPC64
static inline av_const int64_t MAC64(int64_t d, int a, int b)
{
union { uint64_t x; unsigned hl[2]; } x = { d };