audioresample: It's HAVE_EMMINTRIN_H, not HAVE_XMMINTRIN_H for SSE2
authorSebastian Dröge <sebastian@centricular.com>
Mon, 20 Jan 2014 15:11:04 +0000 (16:11 +0100)
committerSebastian Dröge <sebastian@centricular.com>
Mon, 20 Jan 2014 15:11:04 +0000 (16:11 +0100)
gst/audioresample/resample.c

index 481fa01..4410bdd 100644 (file)
@@ -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