-
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.
Merge pull request #36 from AidaDSP/optional-dc-blocker
import v1.1 changes from lv2 repo (LPF and dc blocker optional)
- Loading branch information
Showing
3 changed files
with
31 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
/* | ||
* AIDA-X DPF plugin | ||
* Copyright (C) 2022-2023 Massimo Pennazio <[email protected]> | ||
* Copyright (C) 2023 Filipe Coelho <[email protected]> | ||
* Copyright (C) 2023-2024 Filipe Coelho <[email protected]> | ||
* SPDX-License-Identifier: GPL-3.0-or-later | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include "DistrhoDetails.hpp" | ||
|
||
static constexpr const char* const kVersionString = "v1.0.0"; | ||
static constexpr const uint32_t kVersionNumber = d_version(1, 0, 0); | ||
static constexpr const char* const kVersionString = "v1.1.0"; | ||
static constexpr const uint32_t kVersionNumber = d_version(1, 1, 0); | ||
|
||
#define DISTRHO_PLUGIN_BRAND "AIDA DSP" | ||
#define DISTRHO_PLUGIN_NAME "AIDA-X" | ||
|
@@ -80,6 +80,7 @@ enum Parameters { | |
kParameterGLOBALBYPASS, | ||
kParameterPARAM1, | ||
kParameterPARAM2, | ||
kParameterDCBLOCKER, | ||
kParameterModelInputSize, | ||
kParameterMeterIn, | ||
kParameterMeterOut, | ||
|
@@ -148,6 +149,7 @@ static const Parameter kParameters[] = { | |
{ kParameterIsAutomatable|kParameterIsBoolean|kParameterIsInteger, "Bypass", "dpf_bypass", "", 0.f, 0.f, 1.f, ARRAY_SIZE(kBYPASS), kBYPASS }, | ||
{ kParameterIsAutomatable, "PARAM1", "PARAM1", "", 0.f, 0.f, 1.f, }, | ||
{ kParameterIsAutomatable, "PARAM2", "PARAM2", "", 0.f, 0.f, 1.f, }, | ||
{ kParameterIsAutomatable|kParameterIsBoolean|kParameterIsInteger, "DCBLOCKER", "DCBLOCKER", "", 1.f, 0.f, 1.f, }, | ||
{ kParameterIsOutput, "Model Input Size", "ModelInSize", "", 0.f, 0.f, 3.f, ARRAY_SIZE(kModelInSize), kModelInSize }, | ||
{ kParameterIsOutput, "Meter In", "MeterIn", "dB", 0.f, 0.f, 2.f, }, | ||
{ kParameterIsOutput, "Meter Out", "MeterOut", "dB", 0.f, 0.f, 2.f, }, | ||
|
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