-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Preparations for AU support, cleanup
Signed-off-by: falkTX <[email protected]>
- Loading branch information
Showing
10 changed files
with
28 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* DISTRHO 3BandEQ Plugin, based on 3BandEQ by Michael Gruhn | ||
* Copyright (C) 2012-2022 Filipe Coelho <[email protected]> | ||
* Copyright (C) 2012-2024 Filipe Coelho <[email protected]> | ||
* | ||
* 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* DISTRHO 3BandSplitter Plugin, based on 3BandSplitter by Michael Gruhn | ||
* Copyright (C) 2012-2022 Filipe Coelho <[email protected]> | ||
* Copyright (C) 2012-2024 Filipe Coelho <[email protected]> | ||
* | ||
* 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* DISTRHO PingPongPan Plugin, based on PingPongPan by Michael Gruhn | ||
* Copyright (C) 2012-2022 Filipe Coelho <[email protected]> | ||
* Copyright (C) 2012-2024 Filipe Coelho <[email protected]> | ||
* | ||
* 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters