pcm/Resampler: add method Reset()

Hook for src_reset(), not yet used.
This commit is contained in:
Max Kellermann
2017-01-11 15:26:48 +01:00
parent bece023028
commit 3dcb082015
5 changed files with 24 additions and 0 deletions

View File

@@ -65,6 +65,12 @@ GluePcmResampler::Close()
resampler->Close();
}
void
GluePcmResampler::Reset()
{
resampler->Reset();
}
ConstBuffer<void>
GluePcmResampler::Resample(ConstBuffer<void> src)
{