Home
last modified time | relevance | path

Searched refs:smoothfilt (Results 1 – 2 of 2) sorted by relevance

/dports/audio/epos-devel/epos-2.5.37/src/
H A Dtdpsyn.cc163 for (i = 0; i < MAX_OFILT_ORDER; smoothfilt[i++] = 0); in tdpsyn()
387 smoothfilt[0] = segment_pitch; in synseg()
390 smoothfilt[0] -= a[m] * smoothfilt[m]; in synseg()
394 for (m = 0; m < F0_FILT_ORD; m++) lppitch += b[m] * smoothfilt[m]; in synseg()
396 for (m = F0_FILT_ORD - 1; m > 0; m--) smoothfilt[m] = smoothfilt[m - 1]; in synseg()
H A Dtdpsyn.h44 double smoothfilt[MAX_OFILT_ORDER]; variable