Skip to content

Commit e8484b1

Browse files
committed
Set sidechain flags for AmplitudeImposer now that vst3 works
1 parent 7d41abf commit e8484b1

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

Makefile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@ plugins: dgl
2323
ifneq ($(CROSS_COMPILING),true)
2424
gen: plugins dpf/utils/lv2_ttl_generator
2525
@$(CURDIR)/dpf/utils/generate-ttl.sh
26-
ifeq ($(MACOS),true)
27-
@$(CURDIR)/dpf/utils/generate-vst-bundles.sh
28-
endif
2926

3027
dpf/utils/lv2_ttl_generator:
3128
$(MAKE) -C dpf/utils/lv2-ttl-generator

dpf

Submodule dpf updated 106 files

plugins/AmplitudeImposer/DistrhoPluginAmplitudeImposer.cpp

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,15 +60,13 @@ void DistrhoPluginAmplitudeImposer::initAudioPort(bool input, uint32_t index, Au
6060
port.name = "Input Left (Amp Env)";
6161
port.symbol = "in_left_amp";
6262
port.groupId = kPortGroupAmpEnv;
63-
// FIXME VST3 sidechain handling
64-
// port.hints = kAudioPortIsSidechain;
63+
port.hints = kAudioPortIsSidechain;
6564
break;
6665
case 1:
6766
port.name = "Input Right (Amp Env)";
6867
port.symbol = "in_right_amp";
6968
port.groupId = kPortGroupAmpEnv;
70-
// FIXME VST3 sidechain handling
71-
// port.hints = kAudioPortIsSidechain;
69+
port.hints = kAudioPortIsSidechain;
7270
break;
7371
case 2:
7472
port.name = "Input Left (Audio)";

0 commit comments

Comments
 (0)