23#ifndef SINCRESAMPLER_H
24#define SINCRESAMPLER_H
52 static constexpr int RINGSIZE = 2048;
66 const int cyclesPerSample;
72 int sample[RINGSIZE * 2];
75 int fir(
int subcycle);
95 double clockFrequency,
96 double samplingFrequency,
97 double highestAccurateFrequency);
102 int output()
const override {
return outputValue; }
104 void reset()
override;
Definition Resampler.h:40
Definition SincResampler.h:49
bool input(int input) override
Definition SincResampler.cpp:236