diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-12-25 14:11:26 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-12-25 14:11:26 +0100 |
commit | b5fd4a6ab6ac92af2141233f802e71c861cd89f4 (patch) | |
tree | 1be362d5b0bbe9abe410a8647a5b79050846cbce /src/TII.cpp | |
parent | e919a3b2cdfd22ac15b34d2212b46ec8650a5e71 (diff) | |
download | dabmod-b5fd4a6ab6ac92af2141233f802e71c861cd89f4.tar.gz dabmod-b5fd4a6ab6ac92af2141233f802e71c861cd89f4.tar.bz2 dabmod-b5fd4a6ab6ac92af2141233f802e71c861cd89f4.zip |
Remove ModFormat
Diffstat (limited to 'src/TII.cpp')
-rw-r--r-- | src/TII.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/TII.cpp b/src/TII.cpp index 00106ed..15e5b4a 100644 --- a/src/TII.cpp +++ b/src/TII.cpp @@ -107,7 +107,7 @@ const int pattern_tm1_2_4[][8] = { // {{{ {1,1,1,1,0,0,0,0} }; // }}} TII::TII(unsigned int dabmode, tii_config_t& tii_config) : - ModCodec(ModFormat(0), ModFormat(0)), + ModCodec(), RemoteControllable("tii"), m_dabmode(dabmode), m_conf(tii_config), @@ -156,8 +156,6 @@ TII::TII(unsigned int dabmode, tii_config_t& tii_config) : m_dataIn.clear(); m_dataIn.resize(m_carriers); prepare_pattern(); - - myOutputFormat.size(m_carriers * sizeof(complexf)); } |