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

Method HandleControlPoint

modules/import-export/mod-aup/ImportAUP.cpp:1064–1081  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1062}
1063
1064bool AUPImportFileHandle::HandleControlPoint(XMLTagHandler *&handler)
1065{
1066 struct node node = mHandlers.back();
1067
1068 if (mParentTag == "envelope")
1069 {
1070 // If an imported timetrack was bypassed, then we want to bypass the
1071 // control points as well. (See HandleTimeTrack and HandleEnvelope)
1072 if (node.handler)
1073 {
1074 Envelope *envelope = static_cast<Envelope *>(node.handler);
1075
1076 handler = envelope->HandleXMLChild(mCurrentTag);
1077 }
1078 }
1079
1080 return true;
1081}
1082
1083bool AUPImportFileHandle::HandleSequence(XMLTagHandler *&handler)
1084{

Callers

nothing calls this directly

Calls 1

HandleXMLChildMethod · 0.45

Tested by

no test coverage detected