chore: clean up Gain comments

This commit is contained in:
Liam Kerr 2026-08-02 20:02:26 +01:00
parent 59afc726da
commit 229b3eb1e2

View file

@ -6,10 +6,8 @@
class Gain { class Gain {
public: public:
Gain(float init_gain = 1.0f); Gain(float init_gain = 1.0f);
// Process mono signal
void process(const float *in, float *out, uint32_t frames);
// Process stereo (two channels) void process(const float *in, float *out, uint32_t frames);
void processStereo(const float *inLeft, const float *inRight, float *outLeft, void processStereo(const float *inLeft, const float *inRight, float *outLeft,
float *outRight, uint32_t frames); float *outRight, uint32_t frames);
@ -21,4 +19,4 @@ public:
float getGain() const { return gain_; } float getGain() const { return gain_; }
}; };
#endif // GAIN_H__INCLUDED #endif // GAIN_H_INCLUDED