complete test-phasevoc memory freeing
authorPaul Brossier <piem@altern.org>
Fri, 21 Jul 2006 18:11:29 +0000 (18:11 +0000)
committerPaul Brossier <piem@altern.org>
Fri, 21 Jul 2006 18:11:29 +0000 (18:11 +0000)
complete test-phasevoc memory freeing

examples/tests/test-phasevoc.c

index df49b133cf97d61bc3444f3f2d59f5c164022b0b..3914bef9b4bbce24e04ded3b2d495eacea69a722 100644 (file)
@@ -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 <aubio.h>
 
 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;
 }