From 9ace3c6d56fa6f260533ec8e68c047d5069f73e8 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 4 Oct 2023 16:26:24 +0200 Subject: [PATCH] Remove debug messages (VST2 bypass feature) --- libs/ardour/vst_plugin.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/libs/ardour/vst_plugin.cc b/libs/ardour/vst_plugin.cc index 359e05ecd8..2f6dc6a95f 100644 --- a/libs/ardour/vst_plugin.cc +++ b/libs/ardour/vst_plugin.cc @@ -112,10 +112,7 @@ VSTPlugin::designated_bypass_port () */ intptr_t value = 0; // not bypassed if (0 != _plugin->dispatcher (_plugin, 44 /*effSetBypass*/, 0, value, NULL, 0)) { - cerr << "Emulate VST Bypass Port for " << name() << endl; // XXX DEBUG return UINT32_MAX - 1; // emulate a port - } else { - cerr << "Do *not* Emulate VST Bypass Port for " << name() << endl; // XXX DEBUG } #endif } @@ -190,7 +187,6 @@ VSTPlugin::set_parameter (uint32_t which, float newval, sampleoffset_t when) if (which == UINT32_MAX - 1) { // ardour uses enable-semantics: 1: enabled, 0: bypassed intptr_t value = (newval <= 0.f) ? 1 : 0; - cerr << "effSetBypass " << value << endl; // XXX DEBUG int rv = _plugin->dispatcher (_plugin, 44 /*effSetBypass*/, 0, value, NULL, 0); if (0 != rv) { _eff_bypassed = (value == 1);