tests/: undo changes, removing calls to aubio_init
[aubio.git] / tests / src / test-cvec.c
index 02975a6..c1e6bca 100644 (file)
@@ -3,8 +3,6 @@
 
 int main (void)
 {
-  aubio_init();
-
   uint_t i, window_size = 16; // window size
   cvec_t * complex_vector = new_cvec (window_size); // input buffer
   uint_t rand_times = 4;
@@ -46,8 +44,5 @@ int main (void)
 
   // destroy it
   del_cvec(complex_vector);
-
-  aubio_cleanup();
-
   return 0;
 }