From 2bba7d602744ccd6dab26940661f0fdfbf231af8 Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Sun, 25 Dec 2016 21:34:03 +0100 Subject: Refactor flowgraph and puncturing rules --- src/NullSymbol.cpp | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) (limited to 'src/NullSymbol.cpp') diff --git a/src/NullSymbol.cpp b/src/NullSymbol.cpp index f2c600e..015e564 100644 --- a/src/NullSymbol.cpp +++ b/src/NullSymbol.cpp @@ -1,6 +1,11 @@ /* Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011 Her Majesty the Queen in Right of Canada (Communications Research Center Canada) + + Copyright (C) 2016 + Matthias P. Braendli, matthias.braendli@mpb.li + + http://opendigitalradio.org */ /* This file is part of ODR-DabMod. @@ -29,31 +34,27 @@ typedef std::complex complexf; - NullSymbol::NullSymbol(size_t nbCarriers) : - ModCodec(), + ModInput(), myNbCarriers(nbCarriers) { PDEBUG("NullSymbol::NullSymbol(%zu) @ %p\n", nbCarriers, this); - } NullSymbol::~NullSymbol() { PDEBUG("NullSymbol::~NullSymbol() @ %p\n", this); - } -int NullSymbol::process(Buffer* const dataIn, Buffer* dataOut) +int NullSymbol::process(Buffer* dataOut) { - PDEBUG("NullSymbol::process" - "(dataIn: %p, dataOut: %p)\n", - dataIn, dataOut); - + PDEBUG("NullSymbol::process(dataOut: %p)\n", dataOut); + dataOut->setLength(myNbCarriers * 2 * sizeof(float)); bzero(dataOut->getData(), dataOut->getLength()); return dataOut->getLength(); } + -- cgit v1.2.3