From d8eb7ce81f22bc3e696c3adff5e8ba76c3244715 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Thu, 17 Oct 2019 09:35:24 +0200 Subject: [PATCH] audioconvert: fix avx flags --- spa/plugins/audioconvert/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spa/plugins/audioconvert/meson.build b/spa/plugins/audioconvert/meson.build index b843afe94..8c76016e5 100644 --- a/spa/plugins/audioconvert/meson.build +++ b/spa/plugins/audioconvert/meson.build @@ -67,7 +67,7 @@ endif if have_avx and have_fma audioconvert_avx = static_library('audioconvert_avx', ['resample-native-avx.c'], - c_args : [avx2_args, fma_args, '-O3', '-DHAVE_AVX', '-DHAVE_FMA'], + c_args : [avx_args, fma_args, '-O3', '-DHAVE_AVX', '-DHAVE_FMA'], include_directories : [spa_inc], install : false )