Fixed recording bug when decimation is enabled (issue #828)

pull/829/head
AlexandreRouma 2022-08-03 00:59:44 +02:00
rodzic 90a8f617e9
commit fb85177987
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -23,7 +23,7 @@ public:
void setInput(dsp::stream<dsp::complex_t>* in);
void setSampleRate(double sampleRate);
inline double getSampleRate() { return _sampleRate; }
inline double getSampleRate() { return _sampleRate / _decimRatio; }
void setBuffering(bool enabled);
void setDecimation(int ratio);