comparison vamp-capnp/VampnProto.h @ 185:3eb00e5c76c4

Pull step & block size out into framing struct, return in config Update the C++ code to separate out the framing parameters (step and block size) from the configuration structure into their own structure, as in the latest schema, and to return the accepted framing params in the configuration response. This also implies that the plugin stub (which adapts Piper API back to Vamp) makes a note of the returned values, making them available via its own getPreferredStep/BlockSize so that the host can retry the initialise call in the case where it failed for having the wrong values first time.
author Chris Cannam <cannam@all-day-breakfast.com>
date Fri, 03 Feb 2017 16:23:21 +0000
parents 590b1a1fd955
children 328ffacfc70e
comparison
equal deleted inserted replaced
184:150cfa0c71e1 185:3eb00e5c76c4
475 param.setValue(pp.second); 475 param.setValue(pp.second);
476 } 476 }
477 477
478 b.setCurrentProgram(c.currentProgram); 478 b.setCurrentProgram(c.currentProgram);
479 b.setChannelCount(c.channelCount); 479 b.setChannelCount(c.channelCount);
480 b.setStepSize(c.stepSize); 480
481 b.setBlockSize(c.blockSize); 481 auto framing = b.initFraming();
482 framing.setStepSize(c.framing.stepSize);
483 framing.setBlockSize(c.framing.blockSize);
482 } 484 }
483 485
484 static void 486 static void
485 readConfiguration(PluginConfiguration &c, 487 readConfiguration(PluginConfiguration &c,
486 const piper::Configuration::Reader &r) { 488 const piper::Configuration::Reader &r) {
490 c.parameterValues[p.getParameter()] = p.getValue(); 492 c.parameterValues[p.getParameter()] = p.getValue();
491 } 493 }
492 494
493 c.currentProgram = r.getCurrentProgram(); 495 c.currentProgram = r.getCurrentProgram();
494 c.channelCount = r.getChannelCount(); 496 c.channelCount = r.getChannelCount();
495 c.stepSize = r.getStepSize(); 497 c.framing.stepSize = r.getFraming().getStepSize();
496 c.blockSize = r.getBlockSize(); 498 c.framing.blockSize = r.getFraming().getBlockSize();
497 } 499 }
498 500
499 static void 501 static void
500 buildListRequest(piper::ListRequest::Builder &r, 502 buildListRequest(piper::ListRequest::Builder &r,
501 const ListRequest &resp) { 503 const ListRequest &resp) {
640 auto olist = b.initOutputs(unsigned(cr.outputs.size())); 642 auto olist = b.initOutputs(unsigned(cr.outputs.size()));
641 for (int i = 0; i < int(cr.outputs.size()); ++i) { 643 for (int i = 0; i < int(cr.outputs.size()); ++i) {
642 auto od = olist[i]; 644 auto od = olist[i];
643 buildOutputDescriptor(od, cr.outputs[i]); 645 buildOutputDescriptor(od, cr.outputs[i]);
644 } 646 }
647 auto framing = b.initFraming();
648 framing.setStepSize(cr.framing.stepSize);
649 framing.setBlockSize(cr.framing.blockSize);
645 } 650 }
646 651
647 static void 652 static void
648 readConfigurationResponse(ConfigurationResponse &cr, 653 readConfigurationResponse(ConfigurationResponse &cr,
649 const piper::ConfigurationResponse::Reader &r, 654 const piper::ConfigurationResponse::Reader &r,
655 for (const auto &o: oo) { 660 for (const auto &o: oo) {
656 Vamp::Plugin::OutputDescriptor desc; 661 Vamp::Plugin::OutputDescriptor desc;
657 readOutputDescriptor(desc, o); 662 readOutputDescriptor(desc, o);
658 cr.outputs.push_back(desc); 663 cr.outputs.push_back(desc);
659 } 664 }
665 cr.framing.stepSize = r.getFraming().getStepSize();
666 cr.framing.blockSize = r.getFraming().getBlockSize();
660 } 667 }
661 668
662 static void 669 static void
663 buildProcessInput(piper::ProcessInput::Builder &b, 670 buildProcessInput(piper::ProcessInput::Builder &b,
664 Vamp::RealTime timestamp, 671 Vamp::RealTime timestamp,