MCPcopy Create free account
hub / github.com/audacity/audacity / GetMinMaxRMS

Method GetMinMaxRMS

libraries/lib-wave-track/SampleBlock.cpp:85–94  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

83}
84
85 MinMaxRMS SampleBlock::GetMinMaxRMS(
86 size_t start, size_t len, bool mayThrow)
87{
88 try{ return DoGetMinMaxRMS(start, len); }
89 catch( ... ) {
90 if( mayThrow )
91 throw;
92 return {};
93 }
94}
95
96 MinMaxRMS SampleBlock::GetMinMaxRMS(bool mayThrow) const
97{

Callers 2

GetMinMaxMethod · 0.80
GetRMSMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected