Mercurial > hg > vamp-aubio-plugins
changeset 146:c89b3954de00
plugins/MelEnergy.cpp: fix output rate
author | Paul Brossier <piem@piem.org> |
---|---|
date | Fri, 22 Jul 2016 15:49:33 +0200 |
parents | 4e37f52e78df |
children | d41b5d593fc4 |
files | plugins/MelEnergy.cpp |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/MelEnergy.cpp Fri Jul 22 15:41:19 2016 +0200 +++ b/plugins/MelEnergy.cpp Fri Jul 22 15:49:33 2016 +0200 @@ -188,8 +188,8 @@ d.hasFixedBinCount = true; d.binCount = m_nfilters; d.isQuantized = true; - d.sampleType = OutputDescriptor::FixedSampleRate; - d.sampleRate = OutputDescriptor::OneSamplePerStep; + d.quantizeStep = 1.0; + d.sampleType = OutputDescriptor::OneSamplePerStep; list.push_back(d); return list;