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
|
/*
* ZamNoise Noise detection and removal plugin
* 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 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.
*
* For a full copy of the GNU General Public License see the doc/GPL.txt file.
*/
#include "ZamNoisePlugin.hpp"
START_NAMESPACE_DISTRHO
// -----------------------------------------------------------------------
ZamNoisePlugin::ZamNoisePlugin()
: Plugin(paramCount, 1, 0) // 1 program, 0 states
{
ZamNoisePlugin::init(getSampleRate());
zamnoise = new Denoise(getSampleRate());
// set default values
loadProgram(0);
// reset
deactivate();
}
ZamNoisePlugin::~ZamNoisePlugin()
{
free(buffer.cbi);
delete zamnoise;
}
// -----------------------------------------------------------------------
// Init
void ZamNoisePlugin::initParameter(uint32_t index, Parameter& parameter)
{
switch (index)
{
case paramNoiseToggle:
parameter.hints = kParameterIsAutomable | kParameterIsBoolean;
parameter.name = "Noise Capture";
parameter.symbol = "noisecapture";
parameter.unit = "";
parameter.ranges.def = 0.f;
parameter.ranges.min = 0.f;
parameter.ranges.max = 1.f;
break;
default:
break;
}
}
void ZamNoisePlugin::initProgramName(uint32_t index, String& programName)
{
if (index != 0)
return;
programName = "Default";
}
// -----------------------------------------------------------------------
// Internal data
float ZamNoisePlugin::getParameterValue(uint32_t index) const
{
switch (index)
{
case paramNoiseToggle:
return noisetoggle;
break;
default:
return 0.0f;
break;
}
}
void ZamNoisePlugin::setParameterValue(uint32_t index, float value)
{
switch (index)
{
case paramNoiseToggle:
if (value == 1.f) {
memset(buffer.cbi, 0, buffer.cbsize*sizeof(float));
}
noisetoggle = value;
break;
}
}
void ZamNoisePlugin::loadProgram(uint32_t index)
{
if (index != 0)
return;
noisetoggle = 0.f;
activate();
}
void ZamNoisePlugin::InstantiateCircularBuffer(CircularBuffer* buffer, unsigned long SampleRate) {
buffer->cbsize = 16384;
buffer->cbi = (float*) calloc(buffer->cbsize, sizeof(float));
}
void ZamNoisePlugin::init (float fsamp)
{
InstantiateCircularBuffer(&buffer,fsamp);
unsigned long N=buffer.cbsize;
noverlap = 2;
}
// -----------------------------------------------------------------------
// Process
void ZamNoisePlugin::activate()
{
}
void ZamNoisePlugin::deactivate()
{
}
void ZamNoisePlugin::run(const float** inputs, float** outputs, uint32_t frames)
{
zamnoise->process(inputs[0], outputs[0], buffer.cbi, frames, (int)noisetoggle);
}
// -----------------------------------------------------------------------
Plugin* createPlugin()
{
return new ZamNoisePlugin();
}
// -----------------------------------------------------------------------
END_NAMESPACE_DISTRHO
|