- Timestamp:
- Oct 8, 2009, 8:51:06 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:
- 05773a2c
- Parents:
- 22d33e2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/src/test-pitchdetection.c
r22d33e2 r7a6cbbe 10 10 aubio_pitchdetection_type type = aubio_pitch_yinfft; 11 11 fvec_t * in = new_fvec (hop_s, channels); /* input buffer */ 12 fvec_t * out = new_fvec (1, channels); /* input buffer */ 12 13 aubio_pitchdetection_t * o = new_aubio_pitchdetection( 13 14 win_s, hop_s, channels, samplerate, type, mode … … 15 16 uint_t i = 0; 16 17 17 while (i < 100 0) {18 aubio_pitchdetection_do (o,in );18 while (i < 100) { 19 aubio_pitchdetection_do (o,in, out); 19 20 i++; 20 21 };
Note: See TracChangeset
for help on using the changeset viewer.