mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-08 12:30:12 +02:00
Implement IAudioProcessor::canProcessSampleSize()
This commit is contained in:
@@ -193,9 +193,11 @@ tresult PLUGIN_API YaComponentPluginImpl::getBusArrangement(
|
||||
|
||||
tresult PLUGIN_API
|
||||
YaComponentPluginImpl::canProcessSampleSize(int32 symbolicSampleSize) {
|
||||
// TODO: Implement
|
||||
bridge.logger.log("TODO: IAudioProcessor::canProcessSampleSize()");
|
||||
return Steinberg::kNotImplemented;
|
||||
return bridge
|
||||
.send_message(YaComponent::CanProcessSampleSize{
|
||||
.instance_id = arguments.instance_id,
|
||||
.symbolic_sample_size = symbolicSampleSize})
|
||||
.native();
|
||||
}
|
||||
|
||||
uint32 PLUGIN_API YaComponentPluginImpl::getLatencySamples() {
|
||||
|
||||
Reference in New Issue
Block a user