pcm/Normalizer: add method Reset()

This commit is contained in:
Max Kellermann
2023-03-13 13:52:43 +01:00
parent f547a56b1d
commit bc51bc2933
3 changed files with 16 additions and 0 deletions

View File

@@ -24,6 +24,10 @@ public:
NormalizeFilter &operator=(const NormalizeFilter &) = delete;
/* virtual methods from class Filter */
void Reset() noexcept override {
normalizer.Reset();
}
std::span<const std::byte> FilterPCM(std::span<const std::byte> src) override;
};