23#ifndef SINCRESAMPLER_H
24#define SINCRESAMPLER_H
57 static const int RINGSIZE = 2048;
71 const int cyclesPerSample;
77 short sample[RINGSIZE * 2];
80 int fir(
int subcycle);
103 SincResampler(
double clockFrequency,
double samplingFrequency,
double highestAccurateFrequency);
107 int output()
const override {
return outputValue; }
109 void reset()
override;
Definition Resampler.h:39
Definition SincResampler.h:54
bool input(int input) override
Definition SincResampler.cpp:364