From e73431d54110671e38b98b240c2597dc7a8e5011 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Tue, 14 Apr 2020 20:29:27 +0200 Subject: [PATCH] resample: use right define to compile sse functions See #220 --- spa/plugins/audioconvert/resample-peaks-impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spa/plugins/audioconvert/resample-peaks-impl.h b/spa/plugins/audioconvert/resample-peaks-impl.h index 6b8421970..86cb71799 100644 --- a/spa/plugins/audioconvert/resample-peaks-impl.h +++ b/spa/plugins/audioconvert/resample-peaks-impl.h @@ -34,7 +34,7 @@ struct peaks_data { float max_f[0]; }; -#if defined (__SSE__) +#if defined (HAVE_SSE) void resample_peaks_process_sse(struct resample *r, const void * SPA_RESTRICT src[], uint32_t *in_len, void * SPA_RESTRICT dst[], uint32_t *out_len);