mfcc.c: make structure declaration somewhat more compact
authorPaul Brossier <piem@piem.org>
Sat, 8 Sep 2007 12:16:37 +0000 (14:16 +0200)
committerPaul Brossier <piem@piem.org>
Sat, 8 Sep 2007 12:16:37 +0000 (14:16 +0200)
src/mfcc.c

index e4de069fad5b2091bddfd538ae95fb6c37aaaf6f..488e3c2b405b00350fcf0e507a919322c0c35bb5 100644 (file)
 /** Internal structure for mfcc object **/
 
 struct aubio_mfcc_t_{
-
-  /** grain length */
-  uint_t win_s;
-  
-  /** sample rate (needed?) */
-  uint_t samplerate;
-
-  /** number of channels */
-  uint_t channels;
-  
-  /** filter bank */
-  aubio_filterbank_t * fb;
-
-  /** number of coefficients (= fb->n_filters/2 +1) */
-  uint_t n_coefs;
-
-  /** lowest frequency for filters */ 
-  smpl_t lowfreq;
-  
-  /** highest frequency for filters */
-  smpl_t highfreq;
-
-  /** input buffer for dct * [fb->n_filters] */
-  fvec_t * in_dct;
-
-  /** fft object for dct */
-  aubio_mfft_t * fft_dct;
-
-  /** output buffer for dct */
-  cvec_t * fftgrain_dct;
-
+  uint_t win_s;             /** grain length */
+  uint_t samplerate;        /** sample rate (needed?) */
+  uint_t channels;          /** number of channels */
+  uint_t n_coefs;           /** number of coefficients (= fb->n_filters/2 +1) */
+  smpl_t lowfreq;           /** lowest frequency for filters */ 
+  smpl_t highfreq;          /** highest frequency for filters */
+  aubio_filterbank_t * fb;  /** filter bank */
+  fvec_t * in_dct;          /** input buffer for dct * [fb->n_filters] */
+  aubio_mfft_t * fft_dct;   /** fft object for dct */
+  cvec_t * fftgrain_dct;    /** output buffer for dct */
 };