Browse Source

Preparations for AU support, cleanup

Signed-off-by: falkTX <falktx@falktx.com>
master
falkTX 1 year ago
parent
commit
8cdbaba8c0
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
10 changed files with 28 additions and 31 deletions
  1. +1
    -1
      dpf
  2. +0
    -5
      plugins/3BandEQ/DistrhoPlugin3BandEQ.hpp
  3. +6
    -1
      plugins/3BandEQ/DistrhoPluginInfo.h
  4. +3
    -4
      plugins/3BandEQ/Makefile
  5. +0
    -5
      plugins/3BandSplitter/DistrhoPlugin3BandSplitter.hpp
  6. +6
    -1
      plugins/3BandSplitter/DistrhoPluginInfo.h
  7. +3
    -4
      plugins/3BandSplitter/Makefile
  8. +6
    -1
      plugins/PingPongPan/DistrhoPluginInfo.h
  9. +0
    -5
      plugins/PingPongPan/DistrhoPluginPingPongPan.hpp
  10. +3
    -4
      plugins/PingPongPan/Makefile

+ 1
- 1
dpf

@@ -1 +1 @@
Subproject commit a2887f427bc444070d29ab30977a0caf475e50fc
Subproject commit 0ceb411fde5192ad4aaa1c89b079a861e4dac5df

+ 0
- 5
plugins/3BandEQ/DistrhoPlugin3BandEQ.hpp View File

@@ -74,11 +74,6 @@ protected:
return d_version(1, 0, 0);
}
int64_t getUniqueId() const noexcept override
{
return d_cconst('D', '3', 'E', 'Q');
}
// -------------------------------------------------------------------
// Init


+ 6
- 1
plugins/3BandEQ/DistrhoPluginInfo.h View File

@@ -1,6 +1,6 @@
/*
* DISTRHO 3BandEQ Plugin, based on 3BandEQ by Michael Gruhn
* Copyright (C) 2012-2022 Filipe Coelho <falktx@falktx.com>
* Copyright (C) 2012-2024 Filipe Coelho <falktx@falktx.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -22,6 +22,9 @@
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/3BandEQ"
#define DISTRHO_PLUGIN_CLAP_ID "studio.kx.distrho.3BandEQ"

#define DISTRHO_PLUGIN_BRAND_ID Dstr
#define DISTRHO_PLUGIN_UNIQUE_ID D3EQ

#define DISTRHO_PLUGIN_HAS_UI 1
#define DISTRHO_PLUGIN_IS_RT_SAFE 1
#define DISTRHO_PLUGIN_NUM_INPUTS 2
@@ -32,4 +35,6 @@
#define DISTRHO_PLUGIN_LV2_CATEGORY "lv2:EQPlugin"
#define DISTRHO_PLUGIN_VST3_CATEGORIES "Fx|EQ"

#define DPF_VST3_DONT_USE_BRAND_ID

#endif // DISTRHO_PLUGIN_INFO_H_INCLUDED

+ 3
- 4
plugins/3BandEQ/Makefile View File

@@ -24,18 +24,17 @@ FILES_UI = \

UI_TYPE = generic
FILE_BROWSER_DISABLED = true
SKIP_NATIVE_AUDIO_FALLBACK = true
include ../../dpf/Makefile.plugins.mk

# --------------------------------------------------------------
# Enable all possible plugin types

TARGETS = jack ladspa lv2_sep vst2 vst3 clap
TARGETS = au clap jack ladspa lv2_sep vst2 vst3

ifeq ($(HAVE_CAIRO_OR_OPENGL),true)
ifeq ($(HAVE_LIBLO),true)
ifeq ($(HAVE_CAIRO_OR_OPENGL)$(HAVE_LIBLO),truetrue)
TARGETS += dssi
endif
endif

all: $(TARGETS)



+ 0
- 5
plugins/3BandSplitter/DistrhoPlugin3BandSplitter.hpp View File

@@ -82,11 +82,6 @@ protected:
return d_version(1, 0, 0);
}
int64_t getUniqueId() const noexcept override
{
return d_cconst('D', '3', 'E', 'S');
}
// -------------------------------------------------------------------
// Init


+ 6
- 1
plugins/3BandSplitter/DistrhoPluginInfo.h View File

@@ -1,6 +1,6 @@
/*
* DISTRHO 3BandSplitter Plugin, based on 3BandSplitter by Michael Gruhn
* Copyright (C) 2012-2022 Filipe Coelho <falktx@falktx.com>
* Copyright (C) 2012-2024 Filipe Coelho <falktx@falktx.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -22,6 +22,9 @@
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/3BandSplitter"
#define DISTRHO_PLUGIN_CLAP_ID "studio.kx.distrho.3BandSplitter"

#define DISTRHO_PLUGIN_BRAND_ID Dstr
#define DISTRHO_PLUGIN_UNIQUE_ID D3ES

#define DISTRHO_PLUGIN_HAS_UI 1
#define DISTRHO_PLUGIN_IS_RT_SAFE 1
#define DISTRHO_PLUGIN_NUM_INPUTS 2
@@ -32,4 +35,6 @@
#define DISTRHO_PLUGIN_LV2_CATEGORY "lv2:EQPlugin"
#define DISTRHO_PLUGIN_VST3_CATEGORIES "Fx|EQ"

#define DPF_VST3_DONT_USE_BRAND_ID

#endif // DISTRHO_PLUGIN_INFO_H_INCLUDED

+ 3
- 4
plugins/3BandSplitter/Makefile View File

@@ -24,18 +24,17 @@ FILES_UI = \

UI_TYPE = generic
FILE_BROWSER_DISABLED = true
SKIP_NATIVE_AUDIO_FALLBACK = true
include ../../dpf/Makefile.plugins.mk

# --------------------------------------------------------------
# Enable all possible plugin types

TARGETS = jack ladspa lv2_sep vst2 vst3 clap
TARGETS = au clap jack ladspa lv2_sep vst2 vst3

ifeq ($(HAVE_CAIRO_OR_OPENGL),true)
ifeq ($(HAVE_LIBLO),true)
ifeq ($(HAVE_CAIRO_OR_OPENGL)$(HAVE_LIBLO),truetrue)
TARGETS += dssi
endif
endif

all: $(TARGETS)



+ 6
- 1
plugins/PingPongPan/DistrhoPluginInfo.h View File

@@ -1,6 +1,6 @@
/*
* DISTRHO PingPongPan Plugin, based on PingPongPan by Michael Gruhn
* Copyright (C) 2012-2022 Filipe Coelho <falktx@falktx.com>
* Copyright (C) 2012-2024 Filipe Coelho <falktx@falktx.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -22,6 +22,9 @@
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/PingPongPan"
#define DISTRHO_PLUGIN_CLAP_ID "studio.kx.distrho.PingPongPan"

#define DISTRHO_PLUGIN_BRAND_ID Dstr
#define DISTRHO_PLUGIN_UNIQUE_ID DPPP

#define DISTRHO_PLUGIN_HAS_UI 1
#define DISTRHO_PLUGIN_IS_RT_SAFE 1
#define DISTRHO_PLUGIN_NUM_INPUTS 2
@@ -32,4 +35,6 @@
#define DISTRHO_PLUGIN_LV2_CATEGORY "lv2:SpatialPlugin"
#define DISTRHO_PLUGIN_VST3_CATEGORIES "Fx|Spatial"

#define DPF_VST3_DONT_USE_BRAND_ID

#endif // DISTRHO_PLUGIN_INFO_H_INCLUDED

+ 0
- 5
plugins/PingPongPan/DistrhoPluginPingPongPan.hpp View File

@@ -70,11 +70,6 @@ protected:
return d_version(1, 0, 0);
}
int64_t getUniqueId() const noexcept override
{
return d_cconst('D', 'P', 'P', 'P');
}
// -------------------------------------------------------------------
// Init


+ 3
- 4
plugins/PingPongPan/Makefile View File

@@ -24,18 +24,17 @@ FILES_UI = \

UI_TYPE = generic
FILE_BROWSER_DISABLED = true
SKIP_NATIVE_AUDIO_FALLBACK = true
include ../../dpf/Makefile.plugins.mk

# --------------------------------------------------------------
# Enable all possible plugin types

TARGETS = jack ladspa lv2_sep vst2 vst3 clap
TARGETS = au clap jack ladspa lv2_sep vst2 vst3

ifeq ($(HAVE_CAIRO_OR_OPENGL),true)
ifeq ($(HAVE_LIBLO),true)
ifeq ($(HAVE_CAIRO_OR_OPENGL)$(HAVE_LIBLO),truetrue)
TARGETS += dssi
endif
endif

all: $(TARGETS)



Loading…
Cancel
Save