chore: consistant names

This commit is contained in:
Liam Kerr 2026-08-05 13:46:38 +01:00
parent 75843a7309
commit 386f8b7e54
5 changed files with 7 additions and 7 deletions

View file

@ -1,6 +1,6 @@
#include "Gain.hpp"
Gain::Gain(float init_gain) : gain_(init_gain) {}
Gain::Gain(float initGain) : gain_(initGain) {}
void Gain::process(const float *in, float *out, uint32_t frames) {
for (uint32_t i = 0; i < frames; ++i) {