Ignore:
Timestamp:
Sep 15, 2018, 6:01:51 PM (6 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master
Children:
8c4918a
Parents:
c9ca2608
Message:

src/spectral/mfcc.c: move declaration up

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/spectral/mfcc.c

    rc9ca2608 r3aa60b2  
    123123aubio_mfcc_do (aubio_mfcc_t * mf, const cvec_t * in, fvec_t * out)
    124124{
     125#ifndef HAVE_SLOW_DCT
     126  fvec_t tmp;
     127#endif
    125128  /* compute filterbank */
    126129  aubio_filterbank_do (mf->fb, in, mf->in_dct);
     
    139142  // copy only first n_coeffs elements
    140143  // TODO assert mf->output->length == n_coeffs
    141   fvec_t tmp;
    142144  tmp.data = mf->output->data;
    143145  tmp.length = out->length;
Note: See TracChangeset for help on using the changeset viewer.