Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/audacity/audacity
/ ClipZeroToOne
Function
ClipZeroToOne
src/widgets/MeterPanel.cpp:878–886 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
876
}
877
878
static float ClipZeroToOne(float z)
879
{
880
if (z > 1.0)
881
return 1.0;
882
else if (z < 0.0)
883
return 0.0;
884
else
885
return z;
886
}
887
888
static float ToDB(float v, float range)
889
{
Callers
1
ToDB
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected