Changeset b4ad853


Ignore:
Timestamp:
Sep 29, 2016, 4:16:57 PM (7 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
sampler, timestretch
Children:
1e4b7f6
Parents:
fb5bd55
Message:

src/effects/timestretch_rubberband.c: remove unused variable, erase internal vector

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/effects/timestretch_rubberband.c

    rfb5bd55 rb4ad853  
    4444  aubio_source_t *source;
    4545  fvec_t *in;
    46   fvec_t *zeros;
    4746  uint_t eof;
    4847
     
    6867
    6968  p->in = new_fvec(hopsize);
    70   p->zeros = new_fvec(hopsize);
    7169
    7270  if (stretchratio <= MAX_STRETCH_RATIO && stretchratio >= MIN_STRETCH_RATIO) {
     
    112110del_aubio_timestretch (aubio_timestretch_t * p)
    113111{
     112  if (p->in) del_fvec(p->in);
    114113  if (p->source) del_aubio_source(p->source);
    115114  if (p->rb) {
Note: See TracChangeset for help on using the changeset viewer.