You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
MiniDexed/src/fx_dry.cpp

21 lines
294 B

#include "fx_dry.h"
Dry::Dry(float32_t samplingRate) :
FXElement(samplingRate)
{
}
Dry::~Dry()
{
}
void Dry::reset()
{
// does nothing
}
void Dry::processSample(float32_t inL, float32_t inR, float32_t& outL, float32_t& outR)
{
outL = inL;
outR = inR;
}