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

Method RescaleTimesBy

libraries/lib-mixer/Envelope.cpp:871–877  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

869}
870
871void Envelope::RescaleTimesBy(double ratio)
872{
873 for (auto& point : mEnv)
874 point.SetT(point.GetT() * ratio);
875 if (mTrackLen != DBL_MAX)
876 mTrackLen *= ratio;
877}
878
879// Accessors
880double Envelope::GetValue( double t, double sampleDur ) const

Callers 5

OnProjectTempoChangeMethod · 0.80
StretchLeftToMethod · 0.80
StretchByMethod · 0.80
StretchCutLinesMethod · 0.80

Calls 2

SetTMethod · 0.80
GetTMethod · 0.80

Tested by

no test coverage detected