Intel IPP support for aubio
[aubio.git] / tests / src / test-lvec.c
index 17b5fc6..58ac4a4 100644 (file)
@@ -3,6 +3,8 @@
 
 int main (void)
 {
+  aubio_init();
+
   uint_t win_s = 32; // window size
   lvec_t * sp = new_lvec (win_s); // input buffer
   lvec_set_sample (sp, 2./3., 0);
@@ -13,6 +15,9 @@ int main (void)
   lvec_set_all (sp, 3./5.);
   lvec_print (sp);
   del_lvec(sp);
+
+  aubio_cleanup();
+  
   return 0;
 }