Removed logging from the DSP lib

This commit is contained in:
AlexandreRouma
2023-03-09 08:56:48 +01:00
parent 007761a027
commit 5f0858bab2
4 changed files with 2 additions and 7 deletions

View File

@@ -83,8 +83,6 @@ namespace dsp::multirate {
int interp = OutSR / gcd;
int decim = InSR / gcd;
flog::warn("interp: {0}, decim: {1}", interp, decim);
// Configure resampler
double tapSamplerate = _symbolrate * (double)interp;
rrcTaps = taps::rootRaisedCosine<float>(_rrcTapCount * interp, _rrcBeta, _symbolrate, tapSamplerate);