Changeset dd18484 for src/notes


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

Location:
src/notes
Files:
2 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  }
  • src/notes/notes.h

    rba303e8 rdd18484  
    3939
    4040*/
    41 aubio_notes_t * new_aubio_notes (const char_t * notes_method,
     41aubio_notes_t * new_aubio_notes (const char_t * method,
    4242    uint_t buf_size, uint_t hop_size, uint_t samplerate);
    4343
     
    5656
    5757*/
    58 void aubio_notes_do (aubio_notes_t *o, const fvec_t *input, fvec_t *output);
     58void aubio_notes_do (aubio_notes_t *o, const fvec_t * input, fvec_t * output);
    5959
    6060#ifdef __cplusplus
Note: See TracChangeset for help on using the changeset viewer.