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/FicSource.cpp | |
parent | e919a3b2cdfd22ac15b34d2212b46ec8650a5e71 (diff) | |
download | dabmod-b5fd4a6ab6ac92af2141233f802e71c861cd89f4.tar.gz dabmod-b5fd4a6ab6ac92af2141233f802e71c861cd89f4.tar.bz2 dabmod-b5fd4a6ab6ac92af2141233f802e71c861cd89f4.zip |
Remove ModFormat
Diffstat (limited to 'src/FicSource.cpp')
-rw-r--r-- | src/FicSource.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/FicSource.cpp b/src/FicSource.cpp index b106955..64bd1a7 100644 --- a/src/FicSource.cpp +++ b/src/FicSource.cpp @@ -35,7 +35,7 @@ const std::vector<PuncturingRule*>& FicSource::get_rules() FicSource::FicSource(eti_FC &fc) : - ModInput(ModFormat(0), ModFormat(0)) + ModInput() { // PDEBUG("FicSource::FicSource(...)\n"); // PDEBUG(" Start address: %i\n", d_start_address); @@ -58,8 +58,6 @@ FicSource::FicSource(eti_FC &fc) : d_puncturing_rules.push_back(new PuncturingRule(3 * 16, 0xeeeeeeec)); } d_buffer.setLength(d_framesize); - - myOutputFormat.size(d_framesize); } |