Changeset d9b5009
- Timestamp:
- Oct 15, 2009, 3:09:07 PM (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:
- c9cebe1
- Parents:
- 202ffa5
- Location:
- src/pitch
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/pitch/pitchdetection.h
r202ffa5 rd9b5009 89 89 uint_t channels, 90 90 uint_t samplerate, 91 aubio_pitchdetection_type type,92 aubio_pitchdetection_mode mode);91 aubio_pitchdetection_type pitch_type, 92 aubio_pitchdetection_mode pitch_mode); 93 93 94 94 #ifdef __cplusplus -
src/pitch/pitchschmitt.h
r202ffa5 rd9b5009 49 49 50 50 */ 51 void aubio_pitchschmitt_do (aubio_pitchschmitt_t *p, fvec_t * in put, fvec_t * output);51 void aubio_pitchschmitt_do (aubio_pitchschmitt_t *p, fvec_t * in, fvec_t * out); 52 52 /** creation of the pitch detection object 53 53 … … 55 55 56 56 */ 57 aubio_pitchschmitt_t * new_aubio_pitchschmitt (uint_t size);57 aubio_pitchschmitt_t * new_aubio_pitchschmitt (uint_t bufsize); 58 58 /** deletion of the pitch detection object 59 59 -
src/pitch/pitchyin.h
r202ffa5 rd9b5009 62 62 63 63 */ 64 void aubio_pitchyin_do (aubio_pitchyin_t * o, fvec_t * in, fvec_t *out);64 void aubio_pitchyin_do (aubio_pitchyin_t * o, fvec_t * in, fvec_t * out); 65 65 66 66 … … 79 79 80 80 */ 81 smpl_t aubio_pitchyin_get_tolerance (aubio_pitchyin_t * o);81 smpl_t aubio_pitchyin_get_tolerance (aubio_pitchyin_t * o); 82 82 83 83 #ifdef __cplusplus -
src/pitch/pitchyinfft.h
r202ffa5 rd9b5009 49 49 50 50 */ 51 void aubio_pitchyinfft_do (aubio_pitchyinfft_t *p, fvec_t * in put, fvec_t * output);51 void aubio_pitchyinfft_do (aubio_pitchyinfft_t *p, fvec_t * in, fvec_t * out); 52 52 /** creation of the pitch detection object 53 53
Note: See TracChangeset
for help on using the changeset viewer.