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

Method callSetChunk

libraries/lib-vst/VSTWrapper.cpp:721–732  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

719}
720
721void VSTWrapper::callSetChunk(bool isPgm, int len, void *buf)
722{
723 VstPatchChunkInfo info;
724
725 memset(&info, 0, sizeof(info));
726 info.version = 1;
727 info.pluginUniqueID = mAEffect->uniqueID;
728 info.pluginVersion = mAEffect->version;
729 info.numElements = isPgm ? mAEffect->numParams : mAEffect->numPrograms;
730
731 callSetChunk(isPgm, len, buf, &info);
732}
733
734void VSTWrapper::callSetChunk(bool isPgm, int len, void *buf, VstPatchChunkInfo *info) const
735{

Callers 1

ApplyChunkMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected