summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2014-01-20 16:11:04 +0100
committerWim Taymans <wtaymans@redhat.com>2014-05-23 17:47:49 +0200
commit74b741d0a43f6d44bd5f9801c34a3a6242d3bde6 (patch)
tree02929a535fa092291bb40b24d3bd738ab8d84d32
parentfa16f25ba6ecf92aa54b03b7ea25d1a87510cb52 (diff)
downloadgstreamer-plugins-base-74b741d0a43f6d44bd5f9801c34a3a6242d3bde6.tar.gz
audioresample: It's HAVE_EMMINTRIN_H, not HAVE_XMMINTRIN_H for SSE2
-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