Changeset d99d819


Ignore:
Timestamp:
Sep 25, 2009, 11:00:44 PM (15 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:
6f0b8a0
Parents:
705aec8
Message:

src/spectral/mfcc.{c,h}: add documentation

Location:
src/spectral
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/spectral/mfcc.c

    r705aec8 rd99d819  
    2929/** Internal structure for mfcc object */
    3030
    31 struct aubio_mfcc_t_
     31struct _aubio_mfcc_t
    3232{
    3333  uint_t win_s;             /** grain length */
  • src/spectral/mfcc.h

    r705aec8 rd99d819  
    2020*/
    2121
     22/** \file
     23
     24  Mel-frequency cepstrum coefficients object
     25
     26*/
     27
    2228#ifndef MFCC_H
    2329#define MFCC_H
     
    2834#endif
    2935
    30 typedef struct aubio_mfcc_t_ aubio_mfcc_t;
     36/** mfcc object */
     37typedef struct _aubio_mfcc_t aubio_mfcc_t;
    3138
    3239/** create mfcc object
     
    3441  \param win_s size of analysis buffer (and length the FFT transform)
    3542  \param samplerate audio sampling rate
    36   \param n_coefs number of desired coefficientss
     43  \param n_coefs number of desired coefficients
     44  \param n_filters number of desired filters
    3745
    3846*/
Note: See TracChangeset for help on using the changeset viewer.