chore: clean up Gain comments
This commit is contained in:
parent
59afc726da
commit
229b3eb1e2
1 changed files with 2 additions and 4 deletions
|
|
@ -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
|
||||||
Loading…
Add table
Add a link
Reference in a new issue