From 094a8be0d528adf3a1cf669ecf9c1f9e50da10ed Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sun, 25 Oct 2015 02:41:08 +0100 Subject: [PATCH] src/pitch/pitch.c: disable buggy optimisation for now --- src/pitch/pitch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pitch/pitch.c b/src/pitch/pitch.c index 66eac4a1..29dd758e 100644 --- a/src/pitch/pitch.c +++ b/src/pitch/pitch.c @@ -240,7 +240,7 @@ void 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]; -- 2.11.0