From: Paul Brossier Date: Fri, 21 Jul 2006 18:11:29 +0000 (+0000) Subject: complete test-phasevoc memory freeing X-Git-Tag: bzr2git~608 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=40536fa0f024beead477bdeb34b512b52c38ff46;p=aubio.git complete test-phasevoc memory freeing complete test-phasevoc memory freeing --- 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; }