Changeset 456a784 for src


Ignore:
Timestamp:
Dec 7, 2018, 1:28:54 AM (5 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/cnn, feature/crepe, feature/timestretch, fix/ffmpeg5, master
Children:
a874c48
Parents:
85755eb
git-author:
Paul Brossier <piem@piem.org> (09/29/16 16:16:57)
git-committer:
Paul Brossier <piem@piem.org> (12/07/18 01:28:54)
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/effects/timestretch_rubberband.c

    r85755eb r456a784  
    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.