diff options
author | Max Kellermann <max@musicpd.org> | 2017-01-11 15:26:48 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2017-01-11 15:26:48 +0100 |
commit | 3dcb08201511ffdb47c69b5efe4cf390df8a5471 (patch) | |
tree | f358f20e0cff9c3a33498f4353741f1d8f0ec371 /src/pcm/GlueResampler.hxx | |
parent | bece023028dd914b90a8dd2c525cf7123c3c74fc (diff) |
pcm/Resampler: add method Reset()
Hook for src_reset(), not yet used.
Diffstat (limited to 'src/pcm/GlueResampler.hxx')
-rw-r--r-- | src/pcm/GlueResampler.hxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/pcm/GlueResampler.hxx b/src/pcm/GlueResampler.hxx index 0edb44713..e2afa30ce 100644 --- a/src/pcm/GlueResampler.hxx +++ b/src/pcm/GlueResampler.hxx @@ -55,6 +55,11 @@ public: return output_sample_format; } + /** + * @see PcmResampler::Reset() + */ + void Reset(); + ConstBuffer<void> Resample(ConstBuffer<void> src); }; |