refactor: optimize Clipper class with extracted clip helper method for cleaner stereo processing logic

This commit is contained in:
Liam Kerr 2026-08-02 20:26:06 +01:00
parent ce7844d7af
commit 3a11f43fdc
2 changed files with 13 additions and 10 deletions

View file

@ -13,6 +13,7 @@ public:
private:
float clip_;
float clip(const float in);
public:
void setGain(float c) { clip_ = c; }