Changeset 3ac7cb0 for src/pitch


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

src/: cleanup variable names in prototypes

Location:
src/pitch
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • src/pitch/pitch.h

    rb8ee46c r3ac7cb0  
    4141
    4242  \param o pitch detection object as returned by new_aubio_pitch()
    43   \param in input signal of size [hopsize x channels]
    44   \param out output pitch candidates of size [1 x channes]
     43  \param in input signal of size [hop_size x channels]
     44  \param out output pitch candidates of size [1 x channels]
    4545
    4646*/
     
    6464/** creation of the pitch detection object
    6565
    66   \param mode set pitch detection algorithm
    67   \param bufsize size of the input buffer to analyse
    68   \param hopsize step size between two consecutive analysis instant
     66  \param method set pitch detection algorithm
     67  \param buf_size size of the input buffer to analyse
     68  \param hop_size step size between two consecutive analysis instant
    6969  \param channels number of channels to analyse
    7070  \param samplerate sampling rate of the signal
    7171
    7272*/
    73 aubio_pitch_t *new_aubio_pitch (char_t * mode,
    74     uint_t bufsize, uint_t hopsize, uint_t channels, uint_t samplerate);
     73aubio_pitch_t *new_aubio_pitch (char_t * method,
     74    uint_t buf_size, uint_t hop_size, uint_t channels, uint_t samplerate);
    7575
    7676/** set the output unit of the pitch detection object
  • src/pitch/pitchfcomb.h

    rb8ee46c r3ac7cb0  
    5555/** creation of the pitch detection object
    5656 
    57   \param bufsize size of the input buffer to analyse
    58   \param hopsize step size between two consecutive analysis instant
     57  \param buf_size size of the input buffer to analyse
     58  \param hop_size step size between two consecutive analysis instant
    5959  \param channels number of channels to detect pitch on
    6060 
    6161*/
    62 aubio_pitchfcomb_t *new_aubio_pitchfcomb (uint_t bufsize, uint_t hopsize,
     62aubio_pitchfcomb_t *new_aubio_pitchfcomb (uint_t buf_size, uint_t hop_size,
    6363    uint_t channels);
    6464
  • src/pitch/pitchmcomb.h

    rb8ee46c r3ac7cb0  
    5555/** creation of the pitch detection object
    5656 
    57   \param bufsize size of the input buffer to analyse
    58   \param hopsize step size between two consecutive analysis instant
     57  \param buf_size size of the input buffer to analyse
     58  \param hop_size step size between two consecutive analysis instant
    5959  \param channels number of channels to analyse
    6060  \param samplerate sampling rate of the signal
    6161 
    6262*/
    63 aubio_pitchmcomb_t *new_aubio_pitchmcomb (uint_t bufsize, uint_t hopsize,
     63aubio_pitchmcomb_t *new_aubio_pitchmcomb (uint_t buf_size, uint_t hop_size,
    6464    uint_t channels);
    6565
  • src/pitch/pitchschmitt.h

    rb8ee46c r3ac7cb0  
    5555/** creation of the pitch detection object
    5656 
    57   \param size size of the input buffer to analyse
     57  \param buf_size size of the input buffer to analyse
    5858 
    5959*/
    60 aubio_pitchschmitt_t *new_aubio_pitchschmitt (uint_t bufsize);
     60aubio_pitchschmitt_t *new_aubio_pitchschmitt (uint_t buf_size);
    6161
    6262/** deletion of the pitch detection object
  • src/pitch/pitchyin.h

    rb8ee46c r3ac7cb0  
    4545/** creation of the pitch detection object
    4646 
    47   \param bufsize size of the input buffer to analyse
     47  \param buf_size size of the input buffer to analyse
    4848 
    4949*/
    50 aubio_pitchyin_t *new_aubio_pitchyin (uint_t bufsize);
     50aubio_pitchyin_t *new_aubio_pitchyin (uint_t buf_size);
    5151
    5252/** deletion of the pitch detection object
  • src/pitch/pitchyinfft.h

    rb8ee46c r3ac7cb0  
    5454/** creation of the pitch detection object
    5555 
    56   \param bufsize size of the input buffer to analyse
     56  \param buf_size size of the input buffer to analyse
    5757 
    5858*/
    59 aubio_pitchyinfft_t *new_aubio_pitchyinfft (uint_t bufsize);
     59aubio_pitchyinfft_t *new_aubio_pitchyinfft (uint_t buf_size);
    6060/** deletion of the pitch detection object
    6161 
Note: See TracChangeset for help on using the changeset viewer.