From 40536fa0f024beead477bdeb34b512b52c38ff46 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Fri, 21 Jul 2006 18:11:29 +0000 Subject: [PATCH] complete test-phasevoc memory freeing complete test-phasevoc memory freeing --- examples/tests/test-phasevoc.c | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/examples/tests/test-phasevoc.c b/examples/tests/test-phasevoc.c index df49b133..3914bef9 100644 --- a/examples/tests/test-phasevoc.c +++ b/examples/tests/test-phasevoc.c @@ -1,11 +1,6 @@ -/* test sample for phase vocoder - * - * this program should start correctly using JACK_START_SERVER=true and - * reconstruct each audio input frame perfectly on the corresponding input with - * a delay equal to the window size, hop_s. - */ +/* test sample for phase vocoder */ -#include "aubio.h" +#include int main(){ uint_t win_s = 1024; /* window size */ @@ -29,6 +24,7 @@ int main(){ del_fvec(in); del_cvec(fftgrain); del_fvec(out); + aubio_cleanup(); printf("memory freed\n"); return 0; } -- 2.26.2