Skip to content

Commit 5fe2c18

Browse files
committed
Update dpf and enable clap
Signed-off-by: falkTX <falktx@falktx.com>
1 parent 694f080 commit 5fe2c18

File tree

7 files changed

+23
-44
lines changed

7 files changed

+23
-44
lines changed

dpf

Submodule dpf updated 134 files

plugins/3BandEQ/DistrhoPluginInfo.h

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,19 @@
1717
#ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED
1818
#define DISTRHO_PLUGIN_INFO_H_INCLUDED
1919

20-
#define DISTRHO_PLUGIN_BRAND "DISTRHO"
21-
#define DISTRHO_PLUGIN_NAME "3 Band EQ"
22-
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/3BandEQ"
20+
#define DISTRHO_PLUGIN_BRAND "DISTRHO"
21+
#define DISTRHO_PLUGIN_NAME "3 Band EQ"
22+
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/3BandEQ"
23+
#define DISTRHO_PLUGIN_CLAP_ID "studio.kx.distrho.MVerb"
2324

2425
#define DISTRHO_PLUGIN_HAS_UI 1
2526
#define DISTRHO_PLUGIN_IS_RT_SAFE 1
2627
#define DISTRHO_PLUGIN_NUM_INPUTS 2
2728
#define DISTRHO_PLUGIN_NUM_OUTPUTS 2
2829
#define DISTRHO_PLUGIN_WANT_PROGRAMS 1
2930

30-
#define DISTRHO_PLUGIN_LV2_CATEGORY "lv2:EQPlugin"
31+
#define DISTRHO_PLUGIN_CLAP_FEATURES "audio-effect", "equalizer", "stereo"
32+
#define DISTRHO_PLUGIN_LV2_CATEGORY "lv2:EQPlugin"
3133
#define DISTRHO_PLUGIN_VST3_CATEGORIES "Fx|EQ"
3234

3335
#endif // DISTRHO_PLUGIN_INFO_H_INCLUDED

plugins/3BandEQ/Makefile

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -29,23 +29,14 @@ include ../../dpf/Makefile.plugins.mk
2929
# --------------------------------------------------------------
3030
# Enable all possible plugin types
3131

32-
TARGETS += jack
33-
TARGETS += ladspa
34-
TARGETS += vst2
35-
TARGETS += vst3
32+
TARGETS = jack ladspa lv2_sep vst2 vst3 clap
3633

3734
ifeq ($(HAVE_CAIRO_OR_OPENGL),true)
3835
ifeq ($(HAVE_LIBLO),true)
3936
TARGETS += dssi
4037
endif
4138
endif
4239

43-
ifeq ($(HAVE_CAIRO_OR_OPENGL),true)
44-
TARGETS += lv2_sep
45-
else
46-
TARGETS += lv2_dsp
47-
endif
48-
4940
all: $(TARGETS)
5041

5142
# --------------------------------------------------------------

plugins/3BandSplitter/DistrhoPluginInfo.h

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,19 @@
1717
#ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED
1818
#define DISTRHO_PLUGIN_INFO_H_INCLUDED
1919

20-
#define DISTRHO_PLUGIN_BRAND "DISTRHO"
21-
#define DISTRHO_PLUGIN_NAME "3 Band Splitter"
22-
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/3BandSplitter"
20+
#define DISTRHO_PLUGIN_BRAND "DISTRHO"
21+
#define DISTRHO_PLUGIN_NAME "3 Band Splitter"
22+
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/3BandSplitter"
23+
#define DISTRHO_PLUGIN_CLAP_ID "studio.kx.distrho.MVerb"
2324

2425
#define DISTRHO_PLUGIN_HAS_UI 1
2526
#define DISTRHO_PLUGIN_IS_RT_SAFE 1
2627
#define DISTRHO_PLUGIN_NUM_INPUTS 2
2728
#define DISTRHO_PLUGIN_NUM_OUTPUTS 6
2829
#define DISTRHO_PLUGIN_WANT_PROGRAMS 1
2930

30-
#define DISTRHO_PLUGIN_LV2_CATEGORY "lv2:EQPlugin"
31+
#define DISTRHO_PLUGIN_CLAP_FEATURES "audio-effect", "equalizer", "stereo"
32+
#define DISTRHO_PLUGIN_LV2_CATEGORY "lv2:EQPlugin"
3133
#define DISTRHO_PLUGIN_VST3_CATEGORIES "Fx|EQ"
3234

3335
#endif // DISTRHO_PLUGIN_INFO_H_INCLUDED

plugins/3BandSplitter/Makefile

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -29,23 +29,14 @@ include ../../dpf/Makefile.plugins.mk
2929
# --------------------------------------------------------------
3030
# Enable all possible plugin types
3131

32-
TARGETS += jack
33-
TARGETS += ladspa
34-
TARGETS += vst2
35-
TARGETS += vst3
32+
TARGETS = jack ladspa lv2_sep vst2 vst3 clap
3633

3734
ifeq ($(HAVE_CAIRO_OR_OPENGL),true)
3835
ifeq ($(HAVE_LIBLO),true)
3936
TARGETS += dssi
4037
endif
4138
endif
4239

43-
ifeq ($(HAVE_CAIRO_OR_OPENGL),true)
44-
TARGETS += lv2_sep
45-
else
46-
TARGETS += lv2_dsp
47-
endif
48-
4940
all: $(TARGETS)
5041

5142
# --------------------------------------------------------------

plugins/PingPongPan/DistrhoPluginInfo.h

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,19 @@
1717
#ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED
1818
#define DISTRHO_PLUGIN_INFO_H_INCLUDED
1919

20-
#define DISTRHO_PLUGIN_BRAND "DISTRHO"
21-
#define DISTRHO_PLUGIN_NAME "Ping Pong Pan"
22-
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/PingPongPan"
20+
#define DISTRHO_PLUGIN_BRAND "DISTRHO"
21+
#define DISTRHO_PLUGIN_NAME "Ping Pong Pan"
22+
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/PingPongPan"
23+
#define DISTRHO_PLUGIN_CLAP_ID "studio.kx.distrho.MVerb"
2324

2425
#define DISTRHO_PLUGIN_HAS_UI 1
2526
#define DISTRHO_PLUGIN_IS_RT_SAFE 1
2627
#define DISTRHO_PLUGIN_NUM_INPUTS 2
2728
#define DISTRHO_PLUGIN_NUM_OUTPUTS 2
2829
#define DISTRHO_PLUGIN_WANT_PROGRAMS 1
2930

30-
#define DISTRHO_PLUGIN_LV2_CATEGORY "lv2:SpatialPlugin"
31-
#define DISTRHO_PLUGIN_VST3_CATEGORIES "Fx|EQ"
31+
#define DISTRHO_PLUGIN_CLAP_FEATURES "audio-effect", "stereo"
32+
#define DISTRHO_PLUGIN_LV2_CATEGORY "lv2:SpatialPlugin"
33+
#define DISTRHO_PLUGIN_VST3_CATEGORIES "Fx|Spatial"
3234

3335
#endif // DISTRHO_PLUGIN_INFO_H_INCLUDED

plugins/PingPongPan/Makefile

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -29,23 +29,14 @@ include ../../dpf/Makefile.plugins.mk
2929
# --------------------------------------------------------------
3030
# Enable all possible plugin types
3131

32-
TARGETS += jack
33-
TARGETS += ladspa
34-
TARGETS += vst2
35-
TARGETS += vst3
32+
TARGETS = jack ladspa lv2_sep vst2 vst3 clap
3633

3734
ifeq ($(HAVE_CAIRO_OR_OPENGL),true)
3835
ifeq ($(HAVE_LIBLO),true)
3936
TARGETS += dssi
4037
endif
4138
endif
4239

43-
ifeq ($(HAVE_CAIRO_OR_OPENGL),true)
44-
TARGETS += lv2_sep
45-
else
46-
TARGETS += lv2_dsp
47-
endif
48-
4940
all: $(TARGETS)
5041

5142
# --------------------------------------------------------------

0 commit comments

Comments
 (0)