Intel IPP support for aubio
[aubio.git] / tests / src / utils / test-hist.c
index ee3bc9b..3f84acb 100644 (file)
@@ -4,6 +4,8 @@
 
 int main (void)
 {
+  aubio_init();
+
   uint_t length;
   for (length = 1; length < 10; length ++ ) {
     aubio_hist_t *o = new_aubio_hist(0, 1, length);
@@ -25,6 +27,9 @@ int main (void)
     del_aubio_hist(o);
     del_fvec(t);
   }
+
+  aubio_cleanup();
+  
   return 0;
 }