Ignore:
Timestamp:
Dec 6, 2013, 8:39:41 PM (10 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:
cc6b221
Parents:
9ec63a0 (diff), 7816f2b (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 'avcodec' into develop

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/src/io/test-source.c

    r9ec63a0 re8c4de2  
    2828  char_t *source_path = argv[1];
    2929
     30
     31  aubio_source_t* s =
     32    new_aubio_source(source_path, samplerate, hop_size);
     33  if (!s) { err = 1; goto beach; }
    3034  fvec_t *vec = new_fvec(hop_size);
    31 
    32   aubio_source_t* s = new_aubio_source(source_path, samplerate, hop_size);
    33   if (!s) { err = 1; goto beach; }
    3435
    3536  if (samplerate == 0 ) samplerate = aubio_source_get_samplerate(s);
     
    4445    n_frames / hop_size, source_path);
    4546
     47  del_fvec (vec);
    4648  del_aubio_source (s);
    4749beach:
    48   del_fvec (vec);
    49 
    5050  return err;
    5151}
Note: See TracChangeset for help on using the changeset viewer.