summaryrefslogtreecommitdiff
path: root/gst/audioresample
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2014-01-20 16:11:04 +0100
committerSebastian Dröge <sebastian@centricular.com>2014-01-20 16:11:04 +0100
commit4e3d101aa854cfee633a9689efeb75e5001baa5e (patch)
tree7d7fb3fcbc0dd17735a7f8a88ec2d1587799ca08 /gst/audioresample
parentdaa194b71ea6f9e8ee522ab02e8c56150b7e62b3 (diff)
downloadgstreamer-plugins-base-4e3d101aa854cfee633a9689efeb75e5001baa5e.tar.gz
audioresample: It's HAVE_EMMINTRIN_H, not HAVE_XMMINTRIN_H for SSE2
Diffstat (limited to 'gst/audioresample')
-rw-r--r--gst/audioresample/resample.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/audioresample/resample.c b/gst/audioresample/resample.c
index 481fa01b3..4410bdd9b 100644
--- a/gst/audioresample/resample.c
+++ b/gst/audioresample/resample.c
@@ -83,7 +83,7 @@
#endif
#ifdef _USE_SSE2
-#if !defined(__SSE2__) || !defined(HAVE_XMMINTRIN_H)
+#if !defined(__SSE2__) || !defined(HAVE_EMMINTRIN_H)
#undef _USE_SSE2
#endif
#endif