| 261 | using namespace dsp; |
| 262 | |
| 263 | DEPRECATED inline float gainToDb(float gain) { |
| 264 | return dsp::amplitudeToDb(gain); |
| 265 | } |
| 266 | |
| 267 | DEPRECATED inline float dbToGain(float db) { |
| 268 | return dsp::dbToAmplitude(db); |
nothing calls this directly
no test coverage detected