From: Paul Brossier Date: Sun, 12 Mar 2017 16:58:25 +0000 (+0100) Subject: src/synth/sampler.c: unthreaded read for now X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=7dfd972bd638ac52be9ce33bc6fe3a29428c0cf9;p=aubio.git src/synth/sampler.c: unthreaded read for now --- diff --git a/src/synth/sampler.c b/src/synth/sampler.c index 7ee8ef63..ef3b476b 100644 --- a/src/synth/sampler.c +++ b/src/synth/sampler.c @@ -148,7 +148,7 @@ aubio_sampler_t *new_aubio_sampler(uint_t blocksize, uint_t samplerate) #elif 1 // threaded with ringhbuffer s->source_blocksize = 2048; //32 * s->blocksize; s->perfectloop = 1; - s->threaded_read = 1; + s->threaded_read = 0; #endif if (s->source_blocksize < s->blocksize) {