summaryrefslogtreecommitdiff
path: root/src/pcm/GlueResampler.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2017-01-11 15:26:48 +0100
committerMax Kellermann <max@musicpd.org>2017-01-11 15:26:48 +0100
commit3dcb08201511ffdb47c69b5efe4cf390df8a5471 (patch)
treef358f20e0cff9c3a33498f4353741f1d8f0ec371 /src/pcm/GlueResampler.hxx
parentbece023028dd914b90a8dd2c525cf7123c3c74fc (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.hxx5
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);
};