audiorsample: Fix build on 32-bit x86
authorArun Raghavan <arun@osg.samsung.com>
Thu, 29 Sep 2016 14:15:16 +0000 (19:45 +0530)
committerArun Raghavan <arun@arunraghavan.net>
Thu, 29 Sep 2016 14:15:16 +0000 (19:45 +0530)
Turns out _mm_cvtsi128_si64() isn't available on 32-bit, so only build
SSE 4.1 optimisations on x86-64 for now.

gst-libs/gst/audio/audio-resampler-x86-sse41.c
gst-libs/gst/audio/audio-resampler-x86.h

index cf3d818..ce1cc24 100644 (file)
 #pragma GCC target("sse4.1")
 #endif
 
-#if defined (HAVE_SMMINTRIN_H) && defined (HAVE_EMMINTRIN_H) && defined(__SSE4_1__)
+#if defined (__x86_64__) && \
+    defined (HAVE_SMMINTRIN_H) && defined (HAVE_EMMINTRIN_H) && \
+    defined (__SSE4_1__)
+
 #include <emmintrin.h>
 #include <smmintrin.h>
 
index 8e2bed3..47bc430 100644 (file)
@@ -57,7 +57,9 @@ audio_resampler_check_x86 (const gchar *option)
     GST_DEBUG ("SSE2 optimisations not enabled");
 #endif
   } else if (!strcmp (option, "sse41")) {
-#if defined (HAVE_SMMINTRIN_H) && defined (HAVE_EMMINTRIN_H) && HAVE_SSE41
+#if defined (__x86_64__) && \
+    defined (HAVE_SMMINTRIN_H) && defined (HAVE_EMMINTRIN_H) && \
+    HAVE_SSE41
     GST_DEBUG ("enable SSE41 optimisations");
     resample_gint32_full_1 = resample_gint32_full_1_sse41;
     resample_gint32_linear_1 = resample_gint32_linear_1_sse41;