summaryrefslogtreecommitdiff
path: root/gtk2_ardour/plugin_eq_gui.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/plugin_eq_gui.cc')
-rw-r--r--gtk2_ardour/plugin_eq_gui.cc8
1 files changed, 7 insertions, 1 deletions
diff --git a/gtk2_ardour/plugin_eq_gui.cc b/gtk2_ardour/plugin_eq_gui.cc
index 19ee2c9f1a..5b842d62a4 100644
--- a/gtk2_ardour/plugin_eq_gui.cc
+++ b/gtk2_ardour/plugin_eq_gui.cc
@@ -407,9 +407,15 @@ PluginEqGui::run_impulse_analysis ()
}
samplepos_t sample_pos = 0;
- samplecnt_t latency = _plugin->signal_latency ();
+ samplecnt_t latency = _plugin_insert->effective_latency ();
samplecnt_t samples_remain = _buffer_size + latency;
+ /* Note: https://discourse.ardour.org/t/plugins-ladspa-questions/101292/15
+ * Capture the complete response from the beginning, and more than "latency" samples,
+ * Then unwrap the phase-response corresponding to reported latency, leaving the
+ * magnitude unchanged.
+ */
+
_impulse_fft->reset ();
while (samples_remain > 0) {