Changeset 96c97d0 for examples/utils.c


Ignore:
Timestamp:
Oct 5, 2018, 9:38:58 PM (6 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
Children:
6f33badc, fb1c5e2
Parents:
dbed3ea (diff), c8b52ab (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'fix/msvcwarnings' into feature/azureci

File:
1 edited

Legend:

Unmodified
Added
Removed
  • examples/utils.c

    rdbed3ea r96c97d0  
    6363aubio_source_t *this_source = NULL;
    6464aubio_sink_t *this_sink = NULL;
    65 fvec_t *ibuf;
    66 fvec_t *obuf;
     65fvec_t *input_buffer;
     66fvec_t *output_buffer;
    6767
    6868smpl_t miditap_note = 69.;
     
    126126#endif /* HAVE_JACK */
    127127  }
    128   ibuf = new_fvec (hop_size);
    129   obuf = new_fvec (hop_size);
     128  input_buffer = new_fvec (hop_size);
     129  output_buffer = new_fvec (hop_size);
    130130
    131131}
     
    133133void examples_common_del (void)
    134134{
    135   del_fvec (ibuf);
    136   del_fvec (obuf);
     135  del_fvec (input_buffer);
     136  del_fvec (output_buffer);
    137137  aubio_cleanup ();
    138138  fflush(stderr);
     
    166166
    167167    do {
    168       aubio_source_do (this_source, ibuf, &read);
    169       process_func (ibuf, obuf);
     168      aubio_source_do (this_source, input_buffer, &read);
     169      process_func (input_buffer, output_buffer);
    170170      // print to console if verbose or no output given
    171171      if (verbose || sink_uri == NULL) {
     
    173173      }
    174174      if (this_sink) {
    175         aubio_sink_do (this_sink, obuf, hop_size);
     175        aubio_sink_do (this_sink, output_buffer, hop_size);
    176176      }
    177177      blocks++;
Note: See TracChangeset for help on using the changeset viewer.