shithub: opus

Download patch

ref: 84a85e9e63ea687544375fbed3100051249a033b
parent: a8e4ebb550dbdbb6149ad02d390c34442c8db951
author: Jean-Marc Valin <jmvalin@jmvalin.ca>
date: Mon Mar 11 22:03:22 EDT 2024

Fix meson AVX2 fixed-point

--- a/silk/meson.build
+++ b/silk/meson.build
@@ -44,9 +44,7 @@
   endif
 
   intr_sources = get_variable('silk_sources_' + intr_name)
-  if opt_fixed_point
-    intr_sources += get_variable('silk_sources_fixed_' + intr_name)
-  else
+  if not opt_fixed_point
     intr_sources += get_variable('silk_sources_float_' + intr_name)
   endif
 
--