aboutsummaryrefslogtreecommitdiffstats
path: root/src/GuardIntervalInserter.cpp
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2016-12-25 14:11:26 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2016-12-25 14:11:26 +0100
commitb5fd4a6ab6ac92af2141233f802e71c861cd89f4 (patch)
tree1be362d5b0bbe9abe410a8647a5b79050846cbce /src/GuardIntervalInserter.cpp
parente919a3b2cdfd22ac15b34d2212b46ec8650a5e71 (diff)
downloaddabmod-b5fd4a6ab6ac92af2141233f802e71c861cd89f4.tar.gz
dabmod-b5fd4a6ab6ac92af2141233f802e71c861cd89f4.tar.bz2
dabmod-b5fd4a6ab6ac92af2141233f802e71c861cd89f4.zip
Remove ModFormat
Diffstat (limited to 'src/GuardIntervalInserter.cpp')
-rw-r--r--src/GuardIntervalInserter.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/GuardIntervalInserter.cpp b/src/GuardIntervalInserter.cpp
index 50faf65..80ba900 100644
--- a/src/GuardIntervalInserter.cpp
+++ b/src/GuardIntervalInserter.cpp
@@ -35,9 +35,7 @@ GuardIntervalInserter::GuardIntervalInserter(size_t nbSymbols,
size_t spacing,
size_t nullSize,
size_t symSize) :
- ModCodec(ModFormat(nbSymbols * spacing * sizeof(complexf)),
- ModFormat((nullSize + (nbSymbols * symSize))
- * sizeof(complexf))),
+ ModCodec(),
d_nbSymbols(nbSymbols),
d_spacing(spacing),
d_nullSize(nullSize),
@@ -48,7 +46,6 @@ GuardIntervalInserter::GuardIntervalInserter(size_t nbSymbols,
if (d_nullSize) {
myHasNull = true;
- myInputFormat.size((d_nbSymbols + 1) * d_spacing * sizeof(complexf));
} else {
myHasNull = false;
}