diff options
Diffstat (limited to 'src/chresampler.h')
-rw-r--r-- | src/chresampler.h | 7 |
1 files changed, 7 insertions, 0 deletions
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<CHResampler, 64> resamplers; }; |