shithub: opus

Download patch

ref: b4909e1dd907a255fefd5cf060adf7ced93f2117
parent: 418e58dafd23136bb50a1b3611427009dc16e2d3
author: Jan Buethe <jan.buethe@gmx.net>
date: Fri Jul 18 05:48:40 EDT 2025

fixing vec_avx.h when compiled without __AVX__

Signed-off-by: Jean-Marc Valin <jeanmarcv@google.com>

--- a/dnn/vec_avx.h
+++ b/dnn/vec_avx.h
@@ -168,7 +168,9 @@
   __m128i lo;
   __m128i hi;
 } mm256i_emu;
+#ifdef __AVX__
 typedef __m256i real_m256i;
+#endif
 #define __m256i mm256i_emu
 
 static inline mm256i_emu mm256_setzero_si256(void) {
--