Browse Source

Update dpf, enable clap

Signed-off-by: falkTX <falktx@falktx.com>
master
falkTX 2 years ago
parent
commit
51e92c0b84
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
10 changed files with 29 additions and 48 deletions
  1. +0
    -3
      Makefile
  2. +1
    -1
      dpf
  3. +6
    -4
      plugins/bitcrush/DistrhoPluginInfo.h
  4. +1
    -7
      plugins/bitcrush/Makefile
  5. +6
    -4
      plugins/freeverb/DistrhoPluginInfo.h
  6. +1
    -7
      plugins/freeverb/Makefile
  7. +6
    -4
      plugins/gigaverb/DistrhoPluginInfo.h
  8. +1
    -7
      plugins/gigaverb/Makefile
  9. +6
    -4
      plugins/pitchshift/DistrhoPluginInfo.h
  10. +1
    -7
      plugins/pitchshift/Makefile

+ 0
- 3
Makefile View File

@@ -19,9 +19,6 @@ plugins:
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


+ 1
- 1
dpf

@@ -1 +1 @@
Subproject commit 1aa5892a13d7797935964443ae7dda6e08c470cd
Subproject commit 57fcfcaf07f8dced0f643aff46bd0d3bb1b0b476

+ 6
- 4
plugins/bitcrush/DistrhoPluginInfo.h View File

@@ -17,16 +17,18 @@
#ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED
#define DISTRHO_PLUGIN_INFO_H_INCLUDED

#define DISTRHO_PLUGIN_BRAND "DISTRHO"
#define DISTRHO_PLUGIN_NAME "MaBitcrush"
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/MaBitcrush"
#define DISTRHO_PLUGIN_BRAND "DISTRHO"
#define DISTRHO_PLUGIN_NAME "MaBitcrush"
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/MaBitcrush"
#define DISTRHO_PLUGIN_CLAP_ID "studio.kx.distrho.MaBitcrush"

#define DISTRHO_PLUGIN_HAS_UI 0
#define DISTRHO_PLUGIN_IS_RT_SAFE 0
#define DISTRHO_PLUGIN_NUM_INPUTS 1
#define DISTRHO_PLUGIN_NUM_OUTPUTS 2

#define DISTRHO_PLUGIN_LV2_CATEGORY "lv2:DistortionPlugin"
#define DISTRHO_PLUGIN_CLAP_FEATURES "audio-effect", "distortion", "stereo"
#define DISTRHO_PLUGIN_LV2_CATEGORY "lv2:DistortionPlugin"
#define DISTRHO_PLUGIN_VST3_CATEGORIES "Fx|Distortion"

#define DISTRHO_PLUGIN_DESCRIPTION "Max Gen Bitcrush example."


+ 1
- 7
plugins/bitcrush/Makefile View File

@@ -29,12 +29,6 @@ BUILD_CXX_FLAGS += -Wno-unused-parameter
# --------------------------------------------------------------
# Enable all possible plugin types

TARGETS += jack
TARGETS += ladspa
TARGETS += lv2_dsp
TARGETS += vst2
TARGETS += vst3

all: $(TARGETS)
all: jack ladspa lv2_dsp vst2 vst3 clap

# --------------------------------------------------------------

+ 6
- 4
plugins/freeverb/DistrhoPluginInfo.h View File

@@ -17,16 +17,18 @@
#ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED
#define DISTRHO_PLUGIN_INFO_H_INCLUDED

#define DISTRHO_PLUGIN_BRAND "DISTRHO"
#define DISTRHO_PLUGIN_NAME "MaFreeverb"
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/MaFreeverb"
#define DISTRHO_PLUGIN_BRAND "DISTRHO"
#define DISTRHO_PLUGIN_NAME "MaFreeverb"
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/MaFreeverb"
#define DISTRHO_PLUGIN_CLAP_ID "studio.kx.distrho.MaFreeverb"

#define DISTRHO_PLUGIN_HAS_UI 0
#define DISTRHO_PLUGIN_IS_RT_SAFE 0
#define DISTRHO_PLUGIN_NUM_INPUTS 1
#define DISTRHO_PLUGIN_NUM_OUTPUTS 1

#define DISTRHO_PLUGIN_LV2_CATEGORY "lv2:ReverbPlugin"
#define DISTRHO_PLUGIN_CLAP_FEATURES "audio-effect", "reverb", "stereo"
#define DISTRHO_PLUGIN_LV2_CATEGORY "lv2:ReverbPlugin"
#define DISTRHO_PLUGIN_VST3_CATEGORIES "Fx|Reverb"

#define DISTRHO_PLUGIN_DESCRIPTION "Max Gen Freeverb example."


+ 1
- 7
plugins/freeverb/Makefile View File

@@ -29,12 +29,6 @@ BUILD_CXX_FLAGS += -Wno-unused-parameter
# --------------------------------------------------------------
# Enable all possible plugin types

TARGETS += jack
TARGETS += ladspa
TARGETS += lv2_dsp
TARGETS += vst2
TARGETS += vst3

all: $(TARGETS)
all: jack ladspa lv2_dsp vst2 vst3 clap

# --------------------------------------------------------------

+ 6
- 4
plugins/gigaverb/DistrhoPluginInfo.h View File

@@ -17,16 +17,18 @@
#ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED
#define DISTRHO_PLUGIN_INFO_H_INCLUDED

#define DISTRHO_PLUGIN_BRAND "DISTRHO"
#define DISTRHO_PLUGIN_NAME "MaGigaverb"
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/MaGigaverb"
#define DISTRHO_PLUGIN_BRAND "DISTRHO"
#define DISTRHO_PLUGIN_NAME "MaGigaverb"
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/MaGigaverb"
#define DISTRHO_PLUGIN_CLAP_ID "studio.kx.distrho.MaGigaverb"

#define DISTRHO_PLUGIN_HAS_UI 0
#define DISTRHO_PLUGIN_IS_RT_SAFE 0
#define DISTRHO_PLUGIN_NUM_INPUTS 2
#define DISTRHO_PLUGIN_NUM_OUTPUTS 2

#define DISTRHO_PLUGIN_LV2_CATEGORY "lv2:ReverbPlugin"
#define DISTRHO_PLUGIN_CLAP_FEATURES "audio-effect", "reverb", "stereo"
#define DISTRHO_PLUGIN_LV2_CATEGORY "lv2:ReverbPlugin"
#define DISTRHO_PLUGIN_VST3_CATEGORIES "Fx|Reverb"

#define DISTRHO_PLUGIN_DESCRIPTION "Max Gen Gigaverb example."


+ 1
- 7
plugins/gigaverb/Makefile View File

@@ -29,12 +29,6 @@ BUILD_CXX_FLAGS += -Wno-unused-parameter
# --------------------------------------------------------------
# Enable all possible plugin types

TARGETS += jack
TARGETS += ladspa
TARGETS += lv2_dsp
TARGETS += vst2
TARGETS += vst3

all: $(TARGETS)
all: jack ladspa lv2_dsp vst2 vst3 clap

# --------------------------------------------------------------

+ 6
- 4
plugins/pitchshift/DistrhoPluginInfo.h View File

@@ -17,16 +17,18 @@
#ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED
#define DISTRHO_PLUGIN_INFO_H_INCLUDED

#define DISTRHO_PLUGIN_BRAND "DISTRHO"
#define DISTRHO_PLUGIN_NAME "MaPitchshift"
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/MaPitchshift"
#define DISTRHO_PLUGIN_BRAND "DISTRHO"
#define DISTRHO_PLUGIN_NAME "MaPitchshift"
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/MaPitchshift"
#define DISTRHO_PLUGIN_CLAP_ID "studio.kx.distrho.MaPitchshift"

#define DISTRHO_PLUGIN_HAS_UI 0
#define DISTRHO_PLUGIN_IS_RT_SAFE 0
#define DISTRHO_PLUGIN_NUM_INPUTS 1
#define DISTRHO_PLUGIN_NUM_OUTPUTS 2

#define DISTRHO_PLUGIN_LV2_CATEGORY "lv2:PitchPlugin"
#define DISTRHO_PLUGIN_CLAP_FEATURES "audio-effect", "pitch-shifter", "stereo"
#define DISTRHO_PLUGIN_LV2_CATEGORY "lv2:PitchPlugin"
#define DISTRHO_PLUGIN_VST3_CATEGORIES "Fx|Pitch Shift"

#define DISTRHO_PLUGIN_DESCRIPTION "Max Gen Pitchshifter example."


+ 1
- 7
plugins/pitchshift/Makefile View File

@@ -29,12 +29,6 @@ BUILD_CXX_FLAGS += -Wno-unused-parameter
# --------------------------------------------------------------
# Enable all possible plugin types

TARGETS += jack
TARGETS += ladspa
TARGETS += lv2_dsp
TARGETS += vst2
TARGETS += vst3

all: $(TARGETS)
all: jack ladspa lv2_dsp vst2 vst3 clap

# --------------------------------------------------------------

Loading…
Cancel
Save