ref: 094a8be0d528adf3a1cf669ecf9c1f9e50da10ed
parent: 536bf7021c0c28291276b9803a9896dd65809136
author: Paul Brossier <piem@piem.org>
date: Sat Oct 24 22:41:08 EDT 2015
src/pitch/pitch.c: disable buggy optimisation for now
--- a/src/pitch/pitch.c
+++ b/src/pitch/pitch.c
@@ -240,7 +240,7 @@
aubio_pitch_slideblock (aubio_pitch_t * p, fvec_t * ibuf)
{
uint_t overlap_size = p->buf->length - ibuf->length;
-#if !HAVE_MEMCPY_HACKS
+#if 1 //!HAVE_MEMCPY_HACKS
uint_t j;
for (j = 0; j < overlap_size; j++) {
p->buf->data[j] = p->buf->data[j + ibuf->length];