Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Fletcher-Munson Curve Approximation
- float LinearToPerceivedLoudness(float volume)
- {
- return powf(volume, 0.3f) * (1.0f - powf(1.0f - volume, 0.6f));
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement