From: Paul Brossier Date: Sat, 3 Nov 2007 15:50:17 +0000 (+0100) Subject: phasevoc.c: do not window the signal again during resynthesis X-Git-Tag: bzr2git~487 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=4f56a35f2325cdea1665330545fe2befd1e0577e;p=aubio.git phasevoc.c: do not window the signal again during resynthesis --- diff --git a/src/phasevoc.c b/src/phasevoc.c index 8eeaef8b..d879ef38 100644 --- a/src/phasevoc.c +++ b/src/phasevoc.c @@ -82,7 +82,6 @@ void aubio_pvoc_rdo(aubio_pvoc_t *pv,cvec_t * fftgrain, fvec_t * synthnew) { /* unshift */ vec_shift(pv->synth); for (i=0; ichannels; i++) { - for (j=0; jwin_s; j++) pv->synth->data[i][j] *= pv->w[j]; aubio_pvoc_addsynth(pv->synth->data[i],pv->synthold->data[i], synthnew->data[i],pv->win_s,pv->hop_s); }