summaryrefslogtreecommitdiff
path: root/libavcodec/ppc/dsputil_altivec.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2007-08-22 22:46:39 +0000
committerDiego Biurrun <diego@biurrun.de>2007-08-22 22:46:39 +0000
commit9d16f87ffddff90182d679531a3c3b09f1243471 (patch)
tree9ed49f703a7564056f452a28b0dc8a713749f672 /libavcodec/ppc/dsputil_altivec.c
parente241ba148fb725c84cdaef896f960767c5d6dcc4 (diff)
Rename CONFIG_DARWIN to SYS_DARWIN, it is not configurable (in FFmpeg).
Originally committed as revision 10190 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ppc/dsputil_altivec.c')
-rw-r--r--libavcodec/ppc/dsputil_altivec.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/ppc/dsputil_altivec.c b/libavcodec/ppc/dsputil_altivec.c
index 700c9e6295..34fdab1bcf 100644
--- a/libavcodec/ppc/dsputil_altivec.c
+++ b/libavcodec/ppc/dsputil_altivec.c
@@ -26,7 +26,7 @@
#include "dsputil_altivec.h"
-#ifdef CONFIG_DARWIN
+#ifdef SYS_DARWIN
#include <sys/sysctl.h>
#elif __AMIGAOS4__
#include <exec/exec.h>
@@ -49,7 +49,7 @@ static void sigill_handler (int sig)
canjump = 0;
siglongjmp (jmpbuf, 1);
}
-#endif /* CONFIG_DARWIN */
+#endif /* SYS_DARWIN */
int sad16_x2_altivec(void *v, uint8_t *pix1, uint8_t *pix2, int line_size, int h)
{
@@ -1428,7 +1428,7 @@ int has_altivec(void)
return 0;
#else /* __AMIGAOS4__ */
-#ifdef CONFIG_DARWIN
+#ifdef SYS_DARWIN
int sels[2] = {CTL_HW, HW_VECTORUNIT};
int has_vu = 0;
size_t len = sizeof(has_vu);
@@ -1437,7 +1437,7 @@ int has_altivec(void)
err = sysctl(sels, 2, &has_vu, &len, NULL, 0);
if (err == 0) return (has_vu != 0);
-#else /* CONFIG_DARWIN */
+#else /* SYS_DARWIN */
/* no Darwin, do it the brute-force way */
/* this is borrowed from the libmpeg2 library */
{
@@ -1456,7 +1456,7 @@ int has_altivec(void)
return 1;
}
}
-#endif /* CONFIG_DARWIN */
+#endif /* SYS_DARWIN */
return 0;
#endif /* __AMIGAOS4__ */
}