Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • examples/utils.c

    ra07fdb4 rfef012a  
    6464aubio_source_t *this_source = NULL;
    6565aubio_sink_t *this_sink = NULL;
    66 fvec_t *ibuf;
    67 fvec_t *obuf;
     66fvec_t *input_buffer;
     67fvec_t *output_buffer;
    6868
    6969smpl_t miditap_note = 69.;
     
    127127#endif /* HAVE_JACK */
    128128  }
    129   ibuf = new_fvec (hop_size);
    130   obuf = new_fvec (hop_size);
     129  input_buffer = new_fvec (hop_size);
     130  output_buffer = new_fvec (hop_size);
    131131
    132132}
     
    134134void examples_common_del (void)
    135135{
    136   del_fvec (ibuf);
    137   del_fvec (obuf);
     136  del_fvec (input_buffer);
     137  del_fvec (output_buffer);
    138138  aubio_cleanup ();
    139139  fflush(stderr);
     
    167167
    168168    do {
    169       aubio_source_do (this_source, ibuf, &read);
    170       process_func (ibuf, obuf);
     169      aubio_source_do (this_source, input_buffer, &read);
     170      process_func (input_buffer, output_buffer);
    171171      // print to console if verbose or no output given
    172172      if (verbose || sink_uri == NULL) {
     
    174174      }
    175175      if (this_sink) {
    176         aubio_sink_do (this_sink, obuf, hop_size);
     176        aubio_sink_do (this_sink, output_buffer, hop_size);
    177177      }
    178178      blocks++;
     
    185185
    186186    del_aubio_source (this_source);
    187     del_aubio_sink   (this_sink);
     187    if (this_sink)
     188      del_aubio_sink   (this_sink);
    188189
    189190  }
Note: See TracChangeset for help on using the changeset viewer.