Ignore:
Timestamp:
Oct 8, 2009, 8:20:19 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:
2ba3440
Parents:
e5757cf
Message:

src/pitch/pitchschmitt.c: remove unneeded samplerate parameter, update prototypes, make multichannel

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/pitch/pitchschmitt.h

    re5757cf rf162cf9  
    4646  \param p pitch detection object as returned by new_aubio_pitchschmitt
    4747  \param input input signal window (length as specified at creation time)
     48  \param output pitch period estimates, in samples
    4849 
    4950*/
    50 smpl_t aubio_pitchschmitt_do (aubio_pitchschmitt_t *p, fvec_t * input);
     51void aubio_pitchschmitt_do (aubio_pitchschmitt_t *p, fvec_t * input, fvec_t * output);
    5152/** creation of the pitch detection object
    5253 
    5354  \param size size of the input buffer to analyse
    54   \param samplerate sampling rate of the signal
    5555 
    5656*/
    57 aubio_pitchschmitt_t * new_aubio_pitchschmitt (uint_t size, uint_t samplerate);
     57aubio_pitchschmitt_t * new_aubio_pitchschmitt (uint_t size);
    5858/** deletion of the pitch detection object
    5959 
Note: See TracChangeset for help on using the changeset viewer.