diff options
author | F5OEO <evaristec@gmail.com> | 2019-05-16 10:24:33 +0100 |
---|---|---|
committer | F5OEO <evaristec@gmail.com> | 2019-05-16 10:24:33 +0100 |
commit | 558d74bffd9f069955af52c0b308a1d6169bcff0 (patch) | |
tree | c5d545cd73673ec2dbe4d79b0b670cd6a03463d3 /src/output/Lime.h | |
parent | 8a1f6365833008781bee02a44ccc7a3ca55cbe3a (diff) | |
download | dabmod-558d74bffd9f069955af52c0b308a1d6169bcff0.tar.gz dabmod-558d74bffd9f069955af52c0b308a1d6169bcff0.tar.bz2 dabmod-558d74bffd9f069955af52c0b308a1d6169bcff0.zip |
Change lowpass filter. Remove interpolation (no need). Set samples in I16 instead of CF32.
Diffstat (limited to 'src/output/Lime.h')
-rw-r--r-- | src/output/Lime.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/output/Lime.h b/src/output/Lime.h index 594ef58..72a018e 100644 --- a/src/output/Lime.h +++ b/src/output/Lime.h @@ -93,8 +93,9 @@ class Lime : public Output::SDRDevice bool m_tx_stream_active = false; size_t m_interpolate = 1; std::vector<complexf> interpolatebuf; - + std::vector<short> m_i16samples; std::atomic<float> m_last_fifo_fill_percent = ATOMIC_VAR_INIT(0); + size_t underflows = 0; size_t overflows = 0; |