aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2018-01-07 11:50:35 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2018-01-07 11:50:35 +0100
commit7ddaefab49e31a3ff360225b929633e7be161947 (patch)
tree2ad1d83a6972014352ec5fb52e7ec2ac5ec0372d
parent72f6740ebb93dc940c3894658824ba6142c15bfa (diff)
downloaddabmod-7ddaefab49e31a3ff360225b929633e7be161947.tar.gz
dabmod-7ddaefab49e31a3ff360225b929633e7be161947.tar.bz2
dabmod-7ddaefab49e31a3ff360225b929633e7be161947.zip
Avoid some includes, remove unused variables, update comments
-rw-r--r--src/BlockPartitioner.cpp1
-rw-r--r--src/Flowgraph.cpp3
-rw-r--r--src/Flowgraph.h2
-rw-r--r--src/Resampler.h1
4 files changed, 2 insertions, 5 deletions
diff --git a/src/BlockPartitioner.cpp b/src/BlockPartitioner.cpp
index 54405d9..5767650 100644
--- a/src/BlockPartitioner.cpp
+++ b/src/BlockPartitioner.cpp
@@ -27,7 +27,6 @@
#include "BlockPartitioner.h"
#include "PcDebug.h"
#include "Log.h"
-#include "TimestampDecoder.h"
#include <stdio.h>
#include <stdexcept>
diff --git a/src/Flowgraph.cpp b/src/Flowgraph.cpp
index 0b80a8c..e12ff1e 100644
--- a/src/Flowgraph.cpp
+++ b/src/Flowgraph.cpp
@@ -2,7 +2,7 @@
Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011 Her Majesty
the Queen in Right of Canada (Communications Research Center Canada)
- Copyright (C) 2016
+ Copyright (C) 2018
Matthias P. Braendli, matthias.braendli@mpb.li
http://opendigitalradio.org
@@ -27,7 +27,6 @@
#include "Flowgraph.h"
#include "PcDebug.h"
#include "Log.h"
-#include "TimestampDecoder.h"
#include <string>
#include <memory>
#include <algorithm>
diff --git a/src/Flowgraph.h b/src/Flowgraph.h
index 2742824..b074ee6 100644
--- a/src/Flowgraph.h
+++ b/src/Flowgraph.h
@@ -2,7 +2,7 @@
Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011 Her Majesty
the Queen in Right of Canada (Communications Research Center Canada)
- Copyright (C) 2016
+ Copyright (C) 2018
Matthias P. Braendli, matthias.braendli@mpb.li
http://opendigitalradio.org
diff --git a/src/Resampler.h b/src/Resampler.h
index d9d9d89..ed94a8c 100644
--- a/src/Resampler.h
+++ b/src/Resampler.h
@@ -59,7 +59,6 @@ protected:
FFT_PLAN myFftPlan2;
size_t L;
size_t M;
- size_t K;
size_t myFftSizeIn;
size_t myFftSizeOut;
FFT_TYPE* myFftIn;