# HG changeset patch # User Chris Cannam # Date 1318853299 -3600 # Node ID f66ed426a14f4cc775da69ecaf6033cc1fa5e429 # Parent 55969570044e58d103bef253981c6c06dd73d632 Fix uninitialised sample rate in descriptor diff -r 55969570044e -r f66ed426a14f BeatRootVampPlugin.cpp --- a/BeatRootVampPlugin.cpp Fri Oct 14 10:44:38 2011 +0100 +++ b/BeatRootVampPlugin.cpp Mon Oct 17 13:08:19 2011 +0100 @@ -154,6 +154,7 @@ d.hasKnownExtents = false; d.isQuantized = false; d.sampleType = OutputDescriptor::VariableSampleRate; + d.sampleRate = m_inputSampleRate; d.hasDuration = false; list.push_back(d);