Changeset 3ac7cb0 for src/spectral


Ignore:
Timestamp:
Nov 6, 2009, 1:08:44 AM (14 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:
8b8336b
Parents:
b8ee46c
Message:

src/: cleanup variable names in prototypes

Location:
src/spectral
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/spectral/mfcc.h

    rb8ee46c r3ac7cb0  
    3939/** create mfcc object
    4040
    41   \param win_s size of analysis buffer (and length the FFT transform)
     41  \param buf_size size of analysis buffer (and length the FFT transform)
    4242  \param samplerate audio sampling rate
    4343  \param n_coeffs number of desired coefficients
     
    4545
    4646*/
    47 aubio_mfcc_t *new_aubio_mfcc (uint_t win_s,
     47aubio_mfcc_t *new_aubio_mfcc (uint_t buf_size,
    4848    uint_t n_filters, uint_t n_coeffs, uint_t samplerate);
    4949
     
    5858
    5959  \param mf mfcc object as returned by new_aubio_mfcc
    60   \param in input spectrum (win_s long)
     60  \param in input spectrum (buf_size long)
    6161  \param out output mel coefficients buffer (n_coeffs long)
    6262
  • src/spectral/tss.h

    rb8ee46c r3ac7cb0  
    4747/** create tss object
    4848
    49   \param win_s buffer size
    50   \param hop_s step size
     49  \param buf_size buffer size
     50  \param hop_size step size
    5151  \param channels number of input channels
    5252
    5353*/
    54 aubio_tss_t *new_aubio_tss (uint_t win_s, uint_t hop_s, uint_t channels);
     54aubio_tss_t *new_aubio_tss (uint_t buf_size, uint_t hop_size, uint_t channels);
    5555
    5656/** delete tss object
Note: See TracChangeset for help on using the changeset viewer.