Changeset faf2702


Ignore:
Timestamp:
Oct 5, 2018, 8:51:00 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:
c8b52ab
Parents:
f5b8800
Message:

examples/: avoid hiding global

Location:
examples
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • examples/parse_args.h

    rf5b8800 rfaf2702  
    6565extern int blocks;
    6666
    67 extern fvec_t *ibuf;
    68 extern fvec_t *obuf;
     67extern fvec_t *input_buffer;
     68extern fvec_t *output_buffer;
    6969
    7070const char *prog_name;
  • examples/utils.c

    rf5b8800 rfaf2702  
    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.