tests/src/test-pitch*: update pitch prototypes
authorPaul Brossier <piem@piem.org>
Wed, 7 Oct 2009 17:36:31 +0000 (19:36 +0200)
committerPaul Brossier <piem@piem.org>
Wed, 7 Oct 2009 17:36:31 +0000 (19:36 +0200)
tests/src/test-pitchdetection.c
tests/src/test-pitchfcomb.c
tests/src/test-pitchmcomb.c
tests/src/test-pitchschmitt.c
tests/src/test-pitchyinfft.c

index 71f8120ec0da2dfdcae54b1cfc4f8334d6d633dd..03a0761c253f616144c81fb7dcd0f3103ade1d8a 100644 (file)
@@ -15,7 +15,7 @@ int main(){
         uint_t i = 0;
 
         while (i < 1000) {
-          aubio_pitchdetection(o,in);
+          aubio_pitchdetection_do (o,in);
           i++;
         };
 
index be59ec7f9c402c7414a553c7e2b4ab74bc68f32f..802f156073663031918e6666cb0bd1032302e06c 100644 (file)
@@ -13,7 +13,7 @@ int main(){
         uint_t i = 0;
 
         while (i < 1000) {
-          aubio_pitchfcomb_detect(o,in);
+          aubio_pitchfcomb_d(o,in);
           i++;
         };
 
index a05ab7aa7e796019b11aae05f86b5dfa56645619..59967bed3b3adf43c8796fe0b0f5f156fb78b617 100644 (file)
@@ -12,7 +12,7 @@ int main(){
         uint_t i = 0;
 
         while (i < 1000) {
-          aubio_pitchmcomb_detect (o,in);
+          aubio_pitchmcomb_do (o,in);
           i++;
         };
 
index 8a61c5c5a197be564641de432b672dae21ba8189..1fd1b6a14e9c38dec70c37e91f5463d1ccaa86d2 100644 (file)
@@ -10,7 +10,7 @@ int main(){
         uint_t i = 0;
 
         while (i < 1000) {
-          aubio_pitchschmitt_detect (o,in);
+          aubio_pitchschmitt_do (o,in);
           i++;
         };
 
index dfb8fc61c272c36578ea0ff23593e7052ccbda3c..5e74c8b70fef13c1f96a97bfb43fde16267dc3c6 100644 (file)
@@ -9,7 +9,7 @@ int main(){
         uint_t i = 0;
 
         while (i < 10) {
-          aubio_pitchyinfft_detect (o,in,0.2);
+          aubio_pitchyinfft_do (o,in,0.2);
           i++;
         };