tests/: undo changes, removing calls to aubio_init
[aubio.git] / tests / src / spectral / test-mfcc.c
index bb6eedd..23f8c64 100644 (file)
@@ -2,8 +2,6 @@
 
 int main (void)
 {
-  aubio_init();
-
   uint_t win_s = 512; // fft size
   uint_t n_filters = 40; // number of filters
   uint_t n_coefs = 13; // number of coefficients
@@ -26,7 +24,6 @@ int main (void)
   del_aubio_mfcc (o);
   del_cvec (in);
   del_fvec (out);
-  
   aubio_cleanup ();
 
   return 0;