diff Plugins/Input/wma/libffwma/fft.c @ 1361:62a33367a6cb trunk

[svn] Forcibly disabled Altivec ifdefs. The code that it wants to call is not actually present. ffmpeg SVN (libavcodec/ppc) has code you could pinch, but that needs to be integrated in proper style. I have given up on this. If you get it working, submit me a patch.
author chainsaw
date Thu, 29 Jun 2006 16:46:01 -0700
parents 0bea7509d6ba
children 1ddaf20ab50e
line wrap: on
line diff
--- a/Plugins/Input/wma/libffwma/fft.c	Thu Jun 29 05:58:34 2006 -0700
+++ b/Plugins/Input/wma/libffwma/fft.c	Thu Jun 29 16:46:01 2006 -0700
@@ -56,14 +56,14 @@
     s->fft_calc = fft_calc_c;
     s->exptab1 = NULL;
     /* compute constant table for HAVE_SSE version */
-#if (defined(HAVE_MMX) && defined(HAVE_BUILTIN_VECTOR)) || defined(HAVE_ALTIVEC)
+#if (defined(HAVE_MMX) && defined(HAVE_BUILTIN_VECTOR)) || defined(BLAH_NO_ALTIVEC)
     {
         int has_vectors = 0;
 
 #if defined(HAVE_MMX)
         has_vectors = mm_support() & MM_SSE;
 #endif
-#if defined(HAVE_ALTIVEC) && !defined(ALTIVEC_USE_REFERENCE_C_CODE)
+#if defined(BLAH_NO_ALTIVEC) && !defined(ALTIVEC_USE_REFERENCE_C_CODE)
         has_vectors = mm_support() & MM_ALTIVEC;
 #endif
         if (has_vectors) {