Update version number, other builds, and C API

This commit is contained in:
Chris Cannam
2022-06-29 17:58:09 +01:00
parent c6e4d9a3b2
commit f41c9a257e
10 changed files with 220 additions and 198 deletions

View File

@@ -73,6 +73,16 @@ double rubberband_get_pitch_scale(const RubberBandState state)
return state->m_s->getPitchScale();
}
void rubberband_set_formant_scale(RubberBandState state, double scale)
{
state->m_s->setFormantScale(scale);
}
double rubberband_get_formant_scale(const RubberBandState state)
{
return state->m_s->getFormantScale();
}
unsigned int rubberband_get_latency(const RubberBandState state)
{
return state->m_s->getLatency();