1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
|
/*
* ZaMultiComp multiband compressor
* Copyright (C) 2014 Damien Zammit <damien@zamaudio.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#ifndef ZAMULTICOMPX2PLUGIN_HPP_INCLUDED
#define ZAMULTICOMPX2PLUGIN_HPP_INCLUDED
#include "DistrhoPlugin.hpp"
#include <algorithm>
START_NAMESPACE_DISTRHO
#define MAX_FILT 2
#define MAX_COMP 3
#define MAX_SAMPLES 480
#define DANGER 100000.f
#define EPS 1e-20f
// -----------------------------------------------------------------------
class ZaMultiCompPlugin : public Plugin
{
public:
enum Parameters
{
paramAttack1 = 0,
paramAttack2,
paramAttack3,
paramRelease1,
paramRelease2,
paramRelease3,
paramKnee1,
paramKnee2,
paramKnee3,
paramRatio1,
paramRatio2,
paramRatio3,
paramThresh1,
paramThresh2,
paramThresh3,
paramMakeup1,
paramMakeup2,
paramMakeup3,
paramXover1,
paramXover2,
paramToggle1,
paramToggle2,
paramToggle3,
paramListen1,
paramListen2,
paramListen3,
paramGlobalGain,
paramOutputLevel,
paramOutputLevelLow,
paramOutputLevelMed,
paramOutputLevelHigh,
paramGainR1,
paramGainR2,
paramGainR3,
paramCount
};
enum States
{
stateReadMeter,
stateCount
};
ZaMultiCompPlugin();
protected:
// -------------------------------------------------------------------
// Information
const char* getLabel() const noexcept override
{
return "ZaMultiComp";
}
const char* getDescription() const noexcept override
{
return "Mono multiband compressor, with 3 adjustable bands.";
}
const char* getMaker() const noexcept override
{
return "Damien Zammit";
}
const char* getHomePage() const noexcept override
{
return "http://www.zamaudio.com";
}
const char* getLicense() const noexcept override
{
return "GPL v2+";
}
uint32_t getVersion() const noexcept override
{
return d_version(3, 14, 0);
}
int64_t getUniqueId() const noexcept override
{
return d_cconst('Z', 'M', 'M', 'C');
}
// -------------------------------------------------------------------
// Init
void initParameter(uint32_t index, Parameter& parameter) ;
void initProgramName(uint32_t index, String& programName) ;
void initState(uint32_t, String&, String&) override;
// -------------------------------------------------------------------
// Internal data
float getParameterValue(uint32_t index) const override;
void setParameterValue(uint32_t index, float value) override;
void loadProgram(uint32_t index) override;
String getState(const char* key) const override;
void setState(const char* key, const char* value) override;
// -------------------------------------------------------------------
// Process
static inline float
sanitize_denormal(float v) {
if(!std::isnormal(v))
return 0.f;
return v;
}
static inline float
from_dB(float gdb) {
return (expf(0.05f*gdb*logf(10.f)));
}
static inline float
to_dB(float g) {
return (20.f*log10f(g));
}
void run_comp(int k, float in, float *out);
void run_limit(float in, float *out);
void run_lr4(int i, float in, float *outlo, float *outhi);
void calc_lr4(float f, int i);
void activate() override;
void run(const float** inputs, float** outputs, uint32_t frames) override;
struct linear_svf {
double k;
double g;
double s[2];
};
struct linear_svf simper[2][MAX_FILT];
void linear_svf_set_xover(struct linear_svf *self, float sample_rate, float cutoff, float resonance);
void linear_svf_reset(struct linear_svf *self);
float run_linear_svf_xover(struct linear_svf *self, float in, float mixlow, float mixhigh);
void pushsample(float sample, int k);
// -------------------------------------------------------------------
private:
float attack[MAX_COMP],release[MAX_COMP],knee[MAX_COMP],ratio[MAX_COMP],thresdb[MAX_COMP],makeup[MAX_COMP],globalgain;
float gainr[MAX_COMP],toggle[MAX_COMP],listen[MAX_COMP],max,out,xover1,xover2;
float old_yl[MAX_COMP], old_y1[MAX_COMP], old_yg[MAX_COMP];
float old_ll, old_l1;
float limit, outlevel[3];
int pos[3];
float average[3];
float oldxover1, oldxover2;
bool reset;
};
// -----------------------------------------------------------------------
END_NAMESPACE_DISTRHO
#endif
|