| 8 | #include "LabSound/core/Macros.h" |
| 9 | |
| 10 | float lab::AudioUtilities::decibelsToLinear(float decibels) |
| 11 | { |
| 12 | return std::pow(10.f, 0.05f * decibels); |
| 13 | } |
| 14 | |
| 15 | float lab::AudioUtilities::linearToDecibels(float linear) |
| 16 | { |
nothing calls this directly
no outgoing calls
no test coverage detected