Changeset 177f09a


Ignore:
Timestamp:
Sep 16, 2007, 6:26:40 PM (17 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, pitchshift, sampler, timestretch, yinfft+
Children:
aeb38cf
Parents:
e5f6a0b
Message:

remove dump_filterbank kludge, move aubio_dct_do to mfcc.c

Location:
src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/mfcc.c

    re5f6a0b r177f09a  
    8888}
    8989
     90
     91/** intermediate dct involved in aubio_mfcc_do
     92
     93  \param mf mfcc object as returned by new_aubio_mfcc
     94  \param in input spectrum (n_filters long)
     95  \param out output mel coefficients buffer (n_filters/2 +1 long)
     96
     97*/
     98void aubio_dct_do(aubio_mfcc_t * mf, fvec_t *in, fvec_t *out);
     99
    90100void aubio_mfcc_do(aubio_mfcc_t * mf, cvec_t *in, fvec_t *out){
    91101    // compute filterbank
     
    113123}
    114124
    115 //a bit a kludge
    116 void dump_filterbank(aubio_mfcc_t * mf){
    117   aubio_dump_filterbank(mf->fb);
    118 
    119 }
    120 
  • src/mfcc.h

    re5f6a0b r177f09a  
    6161void aubio_mfcc_do(aubio_mfcc_t * mf, cvec_t *in, fvec_t *out);
    6262
    63 /** intermediate dct involved in aubio_mfcc_do
    64 
    65   \param mf mfcc object as returned by new_aubio_mfcc
    66   \param in input spectrum (n_filters long)
    67   \param out output mel coefficients buffer (n_filters/2 +1 long)
    68 
    69 */
    70 void aubio_dct_do(aubio_mfcc_t * mf, fvec_t *in, fvec_t *out);
    71 
    72 /** dump filterbank to log file
    73 
    74   \param mf mfcc object as returned by new_aubio_mfcc
    75  
    76 */
    77 void dump_filterbank(aubio_mfcc_t * mf);
    78 
    7963#ifdef __cplusplus
    8064}
Note: See TracChangeset for help on using the changeset viewer.