From 195a3d15e490465b64a19d2f09e8a2d8d81e2b2a Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Mon, 6 Jun 2016 20:26:13 +0200 Subject: Add basic latency reporting methods. --- src/chresampler.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/chresampler.h') diff --git a/src/chresampler.h b/src/chresampler.h index 4148aee..d21d1cb 100644 --- a/src/chresampler.h +++ b/src/chresampler.h @@ -48,6 +48,8 @@ public: void process(); + std::size_t getLatency() const; + std::size_t getInputSampleCount() const; std::size_t getOutputSampleCount() const; @@ -96,5 +98,10 @@ public: return resamplers[0].getOutputSampleCount(); } + std::size_t getLatency() const + { + return resamplers[0].getLatency(); + } + std::array resamplers; }; -- cgit v1.2.3