diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-08-17 15:25:47 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-08-17 15:33:19 +0200 |
commit | a82f72eb04d4b5766f12d94febdf2f989ca7210a (patch) | |
tree | fc43378dbb7ae7c2e16e81814fdbe9bfcff38a1f /src/DabModulator.h | |
parent | 15651ab0020ba594bff02491b3d2b6472f5e4fda (diff) | |
download | dabmod-a82f72eb04d4b5766f12d94febdf2f989ca7210a.tar.gz dabmod-a82f72eb04d4b5766f12d94febdf2f989ca7210a.tar.bz2 dabmod-a82f72eb04d4b5766f12d94febdf2f989ca7210a.zip |
Add number of threads setting for MemlessPoly
Diffstat (limited to 'src/DabModulator.h')
-rw-r--r-- | src/DabModulator.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/DabModulator.h b/src/DabModulator.h index 0c691dd..56a6f91 100644 --- a/src/DabModulator.h +++ b/src/DabModulator.h @@ -56,7 +56,9 @@ public: float& digGain, float normalise, float gainmodeVariance, const std::string& filterTapsFilename, - const std::string& polyCoefFilename); + const std::string& polyCoefFilename, + unsigned int polyNumThreads); + DabModulator(const DabModulator& other) = delete; DabModulator& operator=(const DabModulator& other) = delete; virtual ~DabModulator(); @@ -82,6 +84,7 @@ protected: OutputMemory* myOutput; std::string myFilterTapsFilename; std::string myPolyCoefFilename; + unsigned int myPolyNumThreads; tii_config_t& myTiiConfig; size_t myNbSymbols; |