1 audioresample: Fix build on x86 if emmintrin.h is available but can't be used
3 On x86, EMMINTRIN is defined but not usable without SSE so check for
4 __SSE__ and __SSE2__ as well.
6 https://bugzilla.gnome.org/show_bug.cgi?id=670690
8 Upstream-Status: Backport
10 Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
12 gst/audioresample/resample.c | 4 ++--
13 1 files changed, 2 insertions(+), 2 deletions(-)
15 diff --git a/gst/audioresample/resample.c b/gst/audioresample/resample.c
16 index 98d006c..481fa01 100644
17 --- a/gst/audioresample/resample.c
18 +++ b/gst/audioresample/resample.c
20 #define EXPORT G_GNUC_INTERNAL
23 -#ifndef HAVE_XMMINTRIN_H
24 +#if !defined(__SSE__) || !defined(HAVE_XMMINTRIN_H)
30 -#ifndef HAVE_EMMINTRIN_H
31 +#if !defined(__SSE2__) || !defined(HAVE_EMMINTRIN_H)