fixed missing aubio_vDSP_vclr define
authorEduard Müller <mueller.eduard@googlemail.com>
Sun, 30 Jul 2017 07:58:44 +0000 (09:58 +0200)
committerPaul Brossier <piem@piem.org>
Sun, 1 Oct 2017 11:16:30 +0000 (13:16 +0200)
old fvec_zeros impl never used it with HAVE_ACCELERATE, when
HAVE_MEMCPY_HACKS was also defined

src/aubio_priv.h

index 368c599..bc0ce9c 100644 (file)
@@ -93,6 +93,7 @@
 #define aubio_vDSP_minv       vDSP_minv
 #define aubio_vDSP_minvi      vDSP_minvi
 #define aubio_vDSP_dotpr      vDSP_dotpr
+#define aubio_vDSP_vclr       vDSP_vclr
 #else /* HAVE_AUBIO_DOUBLE */
 #define aubio_vDSP_mmov       vDSP_mmovD
 #define aubio_vDSP_vmul       vDSP_vmulD
 #define aubio_vDSP_minv       vDSP_minvD
 #define aubio_vDSP_minvi      vDSP_minviD
 #define aubio_vDSP_dotpr      vDSP_dotprD
+#define aubio_vDSP_vclr       vDSP_vclrD
 #endif /* HAVE_AUBIO_DOUBLE */
 #endif /* HAVE_ACCELERATE */