Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Set sidechain flags for AmplitudeImposer now that vst3 works
  • Loading branch information
falkTX committed Sep 8, 2022
1 parent 7d41abf commit e8484b1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
3 changes: 0 additions & 3 deletions Makefile
Expand Up @@ -23,9 +23,6 @@ plugins: dgl
ifneq ($(CROSS_COMPILING),true)
gen: plugins dpf/utils/lv2_ttl_generator
@$(CURDIR)/dpf/utils/generate-ttl.sh
ifeq ($(MACOS),true)
@$(CURDIR)/dpf/utils/generate-vst-bundles.sh
endif

dpf/utils/lv2_ttl_generator:
$(MAKE) -C dpf/utils/lv2-ttl-generator
Expand Down
2 changes: 1 addition & 1 deletion dpf
Submodule dpf updated 106 files
6 changes: 2 additions & 4 deletions plugins/AmplitudeImposer/DistrhoPluginAmplitudeImposer.cpp
Expand Up @@ -60,15 +60,13 @@ void DistrhoPluginAmplitudeImposer::initAudioPort(bool input, uint32_t index, Au
port.name = "Input Left (Amp Env)";
port.symbol = "in_left_amp";
port.groupId = kPortGroupAmpEnv;
// FIXME VST3 sidechain handling
// port.hints = kAudioPortIsSidechain;
port.hints = kAudioPortIsSidechain;
break;
case 1:
port.name = "Input Right (Amp Env)";
port.symbol = "in_right_amp";
port.groupId = kPortGroupAmpEnv;
// FIXME VST3 sidechain handling
// port.hints = kAudioPortIsSidechain;
port.hints = kAudioPortIsSidechain;
break;
case 2:
port.name = "Input Left (Audio)";
Expand Down

0 comments on commit e8484b1

Please sign in to comment.