From e5e693e033054b7b90b5e708d9d4a9344477fc94 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Wed, 7 Oct 2009 19:36:31 +0200 Subject: [PATCH] tests/src/test-pitch*: update pitch prototypes --- tests/src/test-pitchdetection.c | 2 +- tests/src/test-pitchfcomb.c | 2 +- tests/src/test-pitchmcomb.c | 2 +- tests/src/test-pitchschmitt.c | 2 +- tests/src/test-pitchyinfft.c | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/src/test-pitchdetection.c b/tests/src/test-pitchdetection.c index 71f8120e..03a0761c 100644 --- a/tests/src/test-pitchdetection.c +++ b/tests/src/test-pitchdetection.c @@ -15,7 +15,7 @@ int main(){ uint_t i = 0; while (i < 1000) { - aubio_pitchdetection(o,in); + aubio_pitchdetection_do (o,in); i++; }; diff --git a/tests/src/test-pitchfcomb.c b/tests/src/test-pitchfcomb.c index be59ec7f..802f1560 100644 --- a/tests/src/test-pitchfcomb.c +++ b/tests/src/test-pitchfcomb.c @@ -13,7 +13,7 @@ int main(){ uint_t i = 0; while (i < 1000) { - aubio_pitchfcomb_detect(o,in); + aubio_pitchfcomb_do (o,in); i++; }; diff --git a/tests/src/test-pitchmcomb.c b/tests/src/test-pitchmcomb.c index a05ab7aa..59967bed 100644 --- a/tests/src/test-pitchmcomb.c +++ b/tests/src/test-pitchmcomb.c @@ -12,7 +12,7 @@ int main(){ uint_t i = 0; while (i < 1000) { - aubio_pitchmcomb_detect (o,in); + aubio_pitchmcomb_do (o,in); i++; }; diff --git a/tests/src/test-pitchschmitt.c b/tests/src/test-pitchschmitt.c index 8a61c5c5..1fd1b6a1 100644 --- a/tests/src/test-pitchschmitt.c +++ b/tests/src/test-pitchschmitt.c @@ -10,7 +10,7 @@ int main(){ uint_t i = 0; while (i < 1000) { - aubio_pitchschmitt_detect (o,in); + aubio_pitchschmitt_do (o,in); i++; }; diff --git a/tests/src/test-pitchyinfft.c b/tests/src/test-pitchyinfft.c index dfb8fc61..5e74c8b7 100644 --- a/tests/src/test-pitchyinfft.c +++ b/tests/src/test-pitchyinfft.c @@ -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++; }; -- 2.26.2