Skip to content

Commit

Permalink
Add workaround for broken GitHub Actions caching.
Browse files Browse the repository at this point in the history
  • Loading branch information
psobot committed Jul 30, 2024
1 parent 63ab054 commit e58ab5b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions pedalboard/ExternalPlugin.h
Original file line number Diff line number Diff line change
Expand Up @@ -1730,6 +1730,16 @@ example: a Windows VST3 plugin bundle will not load on Linux or macOS.)
},
"A string that can be saved and used to uniquely identify this "
"plugin (and version) again.\n\n*Introduced in v0.9.4.*")
.def_property_readonly(
"reported_latency_samples",
[](ExternalPlugin<juce::PatchedVST3PluginFormat> &plugin) {
return plugin.getLatencyHint();
},
"The number of samples of latency (delay) that this plugin reports "
"to introduce into the audio signal due to internal buffering "
"and processing. Note that not all plugins correctly report "
"the latency that they introduce, so this value may be inaccurate "
"(especially if the plugin reports 0).\n\n*Introduced in v0.9.12.*")
.def_property_readonly(
"_parameters",
&ExternalPlugin<juce::PatchedVST3PluginFormat>::getParameters,
Expand Down Expand Up @@ -1944,6 +1954,16 @@ see :class:`pedalboard.VST3Plugin`.)
},
"A string that can be saved and used to uniquely identify this "
"plugin (and version) again.\n\n*Introduced in v0.9.4.*")
.def_property_readonly(
"reported_latency_samples",
[](ExternalPlugin<juce::AudioUnitPluginFormat> &plugin) {
return plugin.getLatencyHint();
},
"The number of samples of latency (delay) that this plugin reports "
"to introduce into the audio signal due to internal buffering "
"and processing. Note that not all plugins correctly report "
"the latency that they introduce, so this value may be inaccurate "
"(especially if the plugin reports 0).\n\n*Introduced in v0.9.12.*")
.def_property_readonly(
"_parameters",
&ExternalPlugin<juce::AudioUnitPluginFormat>::getParameters,
Expand Down

0 comments on commit e58ab5b

Please sign in to comment.