diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-12-24 04:06:10 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-12-24 04:06:10 +0100 |
commit | 626cfba78e2885200450ff8b4f4cf09ff6d0b830 (patch) | |
tree | 8c99d6ec4af5dbd68b3e0ab27700562227b47b1b /src/TII.h | |
parent | 215e8143e3feefd69a76d0b6eaf36ed42a7a904f (diff) | |
download | dabmod-626cfba78e2885200450ff8b4f4cf09ff6d0b830.tar.gz dabmod-626cfba78e2885200450ff8b4f4cf09ff6d0b830.tar.bz2 dabmod-626cfba78e2885200450ff8b4f4cf09ff6d0b830.zip |
Fix TII insertion for positive frequency carriers
Diffstat (limited to 'src/TII.h')
-rw-r--r-- | src/TII.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -122,6 +122,9 @@ class TII : public ModCodec, public RemoteControllable // m_enabled_carriers is read by modulator thread, and written // to by RC thread. mutable boost::mutex m_enabled_carriers_mutex; + + // m_enabled_carriers is true only for the first carrier in the + // active pair std::vector<bool> m_enabled_carriers; }; |