- Timestamp:
- Nov 6, 2009, 1:08:44 AM (15 years ago)
- 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
- Location:
- src/pitch
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
src/pitch/pitch.h
rb8ee46c r3ac7cb0 41 41 42 42 \param o pitch detection object as returned by new_aubio_pitch() 43 \param in input signal of size [hop size x channels]44 \param out output pitch candidates of size [1 x channe s]43 \param in input signal of size [hop_size x channels] 44 \param out output pitch candidates of size [1 x channels] 45 45 46 46 */ … … 64 64 /** creation of the pitch detection object 65 65 66 \param m odeset pitch detection algorithm67 \param buf size size of the input buffer to analyse68 \param hop size step size between two consecutive analysis instant66 \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 69 69 \param channels number of channels to analyse 70 70 \param samplerate sampling rate of the signal 71 71 72 72 */ 73 aubio_pitch_t *new_aubio_pitch (char_t * m ode,74 uint_t buf size, uint_t hopsize, uint_t channels, uint_t samplerate);73 aubio_pitch_t *new_aubio_pitch (char_t * method, 74 uint_t buf_size, uint_t hop_size, uint_t channels, uint_t samplerate); 75 75 76 76 /** set the output unit of the pitch detection object -
src/pitch/pitchfcomb.h
rb8ee46c r3ac7cb0 55 55 /** creation of the pitch detection object 56 56 57 \param buf size size of the input buffer to analyse58 \param hop size step size between two consecutive analysis instant57 \param buf_size size of the input buffer to analyse 58 \param hop_size step size between two consecutive analysis instant 59 59 \param channels number of channels to detect pitch on 60 60 61 61 */ 62 aubio_pitchfcomb_t *new_aubio_pitchfcomb (uint_t buf size, uint_t hopsize,62 aubio_pitchfcomb_t *new_aubio_pitchfcomb (uint_t buf_size, uint_t hop_size, 63 63 uint_t channels); 64 64 -
src/pitch/pitchmcomb.h
rb8ee46c r3ac7cb0 55 55 /** creation of the pitch detection object 56 56 57 \param buf size size of the input buffer to analyse58 \param hop size step size between two consecutive analysis instant57 \param buf_size size of the input buffer to analyse 58 \param hop_size step size between two consecutive analysis instant 59 59 \param channels number of channels to analyse 60 60 \param samplerate sampling rate of the signal 61 61 62 62 */ 63 aubio_pitchmcomb_t *new_aubio_pitchmcomb (uint_t buf size, uint_t hopsize,63 aubio_pitchmcomb_t *new_aubio_pitchmcomb (uint_t buf_size, uint_t hop_size, 64 64 uint_t channels); 65 65 -
src/pitch/pitchschmitt.h
rb8ee46c r3ac7cb0 55 55 /** creation of the pitch detection object 56 56 57 \param size size of the input buffer to analyse57 \param buf_size size of the input buffer to analyse 58 58 59 59 */ 60 aubio_pitchschmitt_t *new_aubio_pitchschmitt (uint_t buf size);60 aubio_pitchschmitt_t *new_aubio_pitchschmitt (uint_t buf_size); 61 61 62 62 /** deletion of the pitch detection object -
src/pitch/pitchyin.h
rb8ee46c r3ac7cb0 45 45 /** creation of the pitch detection object 46 46 47 \param buf size size of the input buffer to analyse47 \param buf_size size of the input buffer to analyse 48 48 49 49 */ 50 aubio_pitchyin_t *new_aubio_pitchyin (uint_t buf size);50 aubio_pitchyin_t *new_aubio_pitchyin (uint_t buf_size); 51 51 52 52 /** deletion of the pitch detection object -
src/pitch/pitchyinfft.h
rb8ee46c r3ac7cb0 54 54 /** creation of the pitch detection object 55 55 56 \param buf size size of the input buffer to analyse56 \param buf_size size of the input buffer to analyse 57 57 58 58 */ 59 aubio_pitchyinfft_t *new_aubio_pitchyinfft (uint_t buf size);59 aubio_pitchyinfft_t *new_aubio_pitchyinfft (uint_t buf_size); 60 60 /** deletion of the pitch detection object 61 61
Note: See TracChangeset
for help on using the changeset viewer.