From 1913aba8ede69b39e26e6d884fbf16affa1e69d6 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Mon, 24 May 2004 16:22:12 +0000 Subject: gst-libs/gst/resample/private.h: don't use optimizations that are #if 0'ed Original commit message from CVS: * gst-libs/gst/resample/private.h: don't use optimizations that are #if 0'ed --- gst-libs/gst/resample/private.h | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'gst-libs/gst/resample') diff --git a/gst-libs/gst/resample/private.h b/gst-libs/gst/resample/private.h index 5791f580..c2eb86ad 100644 --- a/gst-libs/gst/resample/private.h +++ b/gst-libs/gst/resample/private.h @@ -88,11 +88,16 @@ void conv_short_double_ppcasm(short *dest, double *src, int n); #endif #ifdef HAVE_CPU_PPC -#define conv_double_short conv_double_short_table -#define conv_short_double conv_short_double_ppcasm +# define conv_double_short conv_double_short_table +# if 0 +/* disabled as in .c */ +# define conv_short_double conv_short_double_ppcasm +# else +# define conv_short_double conv_short_double_ref +# endif #else -#define conv_double_short conv_double_short_ref -#define conv_short_double conv_short_double_ref +# define conv_double_short conv_double_short_ref +# define conv_short_double conv_short_double_ref #endif #define conv_double_float conv_double_float_ref -- cgit v1.2.1