Magellan Linux

Contents of /trunk/gst-plugins-good/patches/gst-plugins-good-0.10.36-audioresample-its-HAVE_EMMINTRIN_H-not-HAVE_XMMINTR.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2929 - (show annotations) (download)
Fri May 26 07:34:06 2017 UTC (6 years, 11 months ago) by niro
File size: 730 byte(s)
-added build fixes
1 From e9746600b409db9a5c63dc7a22b21f80c8c5328c Mon Sep 17 00:00:00 2001
2 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= <sebastian@centricular.com>
3 Date: Mon, 20 Jan 2014 16:11:04 +0100
4 Subject: [PATCH 2/2] audioresample: It's HAVE_EMMINTRIN_H, not
5 HAVE_XMMINTRIN_H for SSE2
6
7 ---
8 gst/audioresample/resample.c | 2 +-
9 1 file changed, 1 insertion(+), 1 deletion(-)
10
11 diff --git a/gst/audioresample/resample.c b/gst/audioresample/resample.c
12 index 481fa01..4410bdd 100644
13 --- a/gst/audioresample/resample.c
14 +++ b/gst/audioresample/resample.c
15 @@ -83,7 +83,7 @@
16 #endif
17
18 #ifdef _USE_SSE2
19 -#if !defined(__SSE2__) || !defined(HAVE_XMMINTRIN_H)
20 +#if !defined(__SSE2__) || !defined(HAVE_EMMINTRIN_H)
21 #undef _USE_SSE2
22 #endif
23 #endif
24 --
25 1.9.0
26