aboutsummaryrefslogtreecommitdiffstats
path: root/Transceiver52M/Resampler.h
diff options
context:
space:
mode:
Diffstat (limited to 'Transceiver52M/Resampler.h')
-rw-r--r--Transceiver52M/Resampler.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/Transceiver52M/Resampler.h b/Transceiver52M/Resampler.h
index cf2defd..072ec92 100644
--- a/Transceiver52M/Resampler.h
+++ b/Transceiver52M/Resampler.h
@@ -59,6 +59,11 @@ public:
*/
size_t len();
+ /*
+ * Enable/disable history
+ */
+ void enableHistory(bool on);
+
private:
size_t p;
size_t q;
@@ -68,6 +73,7 @@ private:
float **partitions;
float *history;
+ bool history_on;
bool initFilters(float bw);
void releaseFilters();