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

Method Push

libraries/lib-wave-track/WaveTrackUtilities.cpp:52–63  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

50}
51
52void WaveTrackUtilities::AllClipsIterator::Push(IntervalHolders clips)
53{
54 if (!mpTrack)
55 return;
56
57 // Go depth first while there are cutlines
58 while (!clips.empty()) {
59 auto nextClips = clips[0]->GetCutLines();
60 mStack.push_back({ move(clips), 0 });
61 clips = move(nextClips);
62 }
63}
64
65namespace {
66bool ReverseOneClip(WaveTrack &track,

Callers 1

OnTimerMethod · 0.45

Calls 3

moveFunction · 0.85
emptyMethod · 0.45
push_backMethod · 0.45

Tested by

no test coverage detected