Changeset dd18484 for src/notes/notes.c


Ignore:
Timestamp:
Jul 1, 2016, 4:02:04 PM (8 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:
8470144
Parents:
ba303e8
Message:

src/notes/notes.h: clean up prototypes for python generator

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/notes/notes.c

    rba303e8 rdd18484  
    5353};
    5454
    55 aubio_notes_t * new_aubio_notes (const char_t * notes_method,
     55aubio_notes_t * new_aubio_notes (const char_t * method,
    5656    uint_t buf_size, uint_t hop_size, uint_t samplerate) {
    5757  aubio_notes_t *o = AUBIO_NEW(aubio_notes_t);
     
    8181  o->pitch_output = new_fvec (1);
    8282
    83   if (strcmp(notes_method, "default") != 0) {
     83  if (strcmp(method, "default") != 0) {
    8484    AUBIO_ERR("unknown notes detection method %s, using default.\n",
    85        notes_method);
     85       method);
    8686    goto fail;
    8787  }
Note: See TracChangeset for help on using the changeset viewer.