tests/src/synth/test-sampler.c: shorter frames, repeat three times
authorPaul Brossier <piem@piem.org>
Sat, 23 Mar 2013 00:41:03 +0000 (19:41 -0500)
committerPaul Brossier <piem@piem.org>
Sat, 23 Mar 2013 00:41:03 +0000 (19:41 -0500)
tests/src/synth/test-sampler.c

index cfb9d1fa15625d401fc8e97f812e90d70bb26548..0f3bfa7d0c71fc120bf7b20d4836d275fc76e5c2 100644 (file)
@@ -13,7 +13,7 @@ int main (int argc, char **argv)
   }
 
   uint_t samplerate = 0; // default is the samplerate of input_path
-  uint_t hop_size = 512;
+  uint_t hop_size = 256;
   uint_t n_frames = 0, read = 0;
 
   char_t *source_path = argv[1];
@@ -35,7 +35,10 @@ int main (int argc, char **argv)
     if (n_frames / hop_size == 10) {
       aubio_sampler_play ( sampler );
     }
-    if (n_frames / hop_size == 20) {
+    if (n_frames / hop_size == 40) {
+      aubio_sampler_play ( sampler );
+    }
+    if (n_frames / hop_size == 70) {
       aubio_sampler_play ( sampler );
     }
     if (n_frames > 10.0 * samplerate) {