shithub: aubio

Download patch

ref: 9953f096e82d459444a8d2279f77222ddd5559da
parent: ce0dfe9110c379201345fc801372ea841eb689fd
author: Paul Brossier <piem@piem.org>
date: Wed Sep 21 12:56:03 EDT 2016

tests/src/effects/test-pitchshift.c: use 64 hopsize by default

--- a/tests/src/effects/test-pitchshift.c
+++ b/tests/src/effects/test-pitchshift.c
@@ -16,7 +16,7 @@
 
 #ifdef HAVE_RUBBERBAND
   uint_t samplerate = 0;
-  uint_t hop_size = 256;
+  uint_t hop_size = 64;
   smpl_t transpose = 0.;
   uint_t n_frames = 0, read = 0;
 
--