audiomixer: add AVX optimized mixer functions

This commit is contained in:
Wim Taymans 2019-10-17 09:36:18 +02:00
parent d8eb7ce81f
commit e2f6a7a34e
4 changed files with 152 additions and 0 deletions

View file

@ -59,3 +59,6 @@ DEFINE_FUNCTION(f32, sse);
#if defined(HAVE_SSE2)
DEFINE_FUNCTION(f64, sse2);
#endif
#if defined(HAVE_AVX)
DEFINE_FUNCTION(f32, avx);
#endif