diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-02-11 18:06:52 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-02-11 18:08:03 +0100 |
commit | d90fd6f81d5bfed12664e5a4ae432b527c4a01c3 (patch) | |
tree | 0ded92c218c4f5adb2c9244fe7a4af456c8cc865 /src/GuardIntervalInserter.cpp | |
parent | 4c6edcfd277b0987bbf39345bcdcc223ed323813 (diff) | |
download | dabmod-d90fd6f81d5bfed12664e5a4ae432b527c4a01c3.tar.gz dabmod-d90fd6f81d5bfed12664e5a4ae432b527c4a01c3.tar.bz2 dabmod-d90fd6f81d5bfed12664e5a4ae432b527c4a01c3.zip |
fix invalid initialisation in OfdmGenerator and GuardIntervalInserter
Diffstat (limited to 'src/GuardIntervalInserter.cpp')
-rw-r--r-- | src/GuardIntervalInserter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/GuardIntervalInserter.cpp b/src/GuardIntervalInserter.cpp index 28e9fb0..50faf65 100644 --- a/src/GuardIntervalInserter.cpp +++ b/src/GuardIntervalInserter.cpp @@ -35,8 +35,8 @@ GuardIntervalInserter::GuardIntervalInserter(size_t nbSymbols, size_t spacing, size_t nullSize, size_t symSize) : - ModCodec(ModFormat(d_nbSymbols * d_spacing * sizeof(complexf)), - ModFormat((d_nullSize + (d_nbSymbols * d_symSize)) + ModCodec(ModFormat(nbSymbols * spacing * sizeof(complexf)), + ModFormat((nullSize + (nbSymbols * symSize)) * sizeof(complexf))), d_nbSymbols(nbSymbols), d_spacing(spacing), |