Changeset dd18484
- Timestamp:
- Jul 1, 2016, 4:02:04 PM (8 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:
- 8470144
- Parents:
- ba303e8
- Location:
- src/notes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/notes/notes.c
rba303e8 rdd18484 53 53 }; 54 54 55 aubio_notes_t * new_aubio_notes (const char_t * notes_method,55 aubio_notes_t * new_aubio_notes (const char_t * method, 56 56 uint_t buf_size, uint_t hop_size, uint_t samplerate) { 57 57 aubio_notes_t *o = AUBIO_NEW(aubio_notes_t); … … 81 81 o->pitch_output = new_fvec (1); 82 82 83 if (strcmp( notes_method, "default") != 0) {83 if (strcmp(method, "default") != 0) { 84 84 AUBIO_ERR("unknown notes detection method %s, using default.\n", 85 notes_method);85 method); 86 86 goto fail; 87 87 } -
src/notes/notes.h
rba303e8 rdd18484 39 39 40 40 */ 41 aubio_notes_t * new_aubio_notes (const char_t * notes_method,41 aubio_notes_t * new_aubio_notes (const char_t * method, 42 42 uint_t buf_size, uint_t hop_size, uint_t samplerate); 43 43 … … 56 56 57 57 */ 58 void aubio_notes_do (aubio_notes_t *o, const fvec_t * input, fvec_t *output);58 void aubio_notes_do (aubio_notes_t *o, const fvec_t * input, fvec_t * output); 59 59 60 60 #ifdef __cplusplus
Note: See TracChangeset
for help on using the changeset viewer.