Ignore:
Timestamp:
Mar 10, 2017, 2:26:32 PM (7 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, sampler
Children:
ee8a57c
Parents:
00d0275 (diff), 67b6618 (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 'master' into awhitening

File:
1 edited

Legend:

Unmodified
Added
Removed
  • examples/aubiomfcc.c

    r00d0275 r155cc10  
    4949
    5050int main(int argc, char **argv) {
     51  int ret = 0;
    5152  // change some default params
    5253  buffer_size  = 512;
     
    6364  mfcc = new_aubio_mfcc(buffer_size, n_filters, n_coefs, samplerate);
    6465  mfcc_out = new_fvec(n_coefs);
     66  if (pv == NULL || fftgrain == NULL || mfcc == NULL || mfcc_out == NULL) {
     67    ret = 1;
     68    goto beach;
     69  }
    6570
    6671  examples_common_process((aubio_process_func_t)process_block, process_print);
     
    7176  del_fvec(mfcc_out);
    7277
     78beach:
    7379  examples_common_del();
    74   return 0;
     80  return ret;
    7581}
    76 
Note: See TracChangeset for help on using the changeset viewer.