MCPcopy Create free account
hub / github.com/GuitarML/NeuralPi / loadIR

Method loadIR

Source/PluginProcessor.cpp:363–376  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

361}
362
363void NeuralPiAudioProcessor::loadIR(File irFile)
364{
365 this->suspendProcessing(true);
366
367 try {
368 cabSimIR.load(irFile);
369 ir_loaded = 1;
370 }
371 catch (const std::exception& e) {
372 DBG("Unable to load IR file: " + irFile.getFullPathName());
373 std::cout << e.what();
374 }
375 this->suspendProcessing(false);
376}
377
378void NeuralPiAudioProcessor::resetDirectory(const File& file)
379{

Callers 2

irSelectChangedMethod · 0.80
loadIRClickedMethod · 0.80

Calls 1

loadMethod · 0.80

Tested by

no test coverage detected