From d90fd6f81d5bfed12664e5a4ae432b527c4a01c3 Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Tue, 11 Feb 2014 18:06:52 +0100 Subject: fix invalid initialisation in OfdmGenerator and GuardIntervalInserter --- src/GuardIntervalInserter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/GuardIntervalInserter.cpp') 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), -- cgit v1.2.3