diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-08-04 20:42:09 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-08-04 20:42:09 +0200 |
commit | 0c96ac35b3d6758a556959b37ee2316357e0ae0c (patch) | |
tree | 30265af24517fe331caf7a47fe76d343981c6e18 /src/DabModulator.cpp | |
parent | 0c31bc95ca1ca4ee420a6e2d82bad6b1e50177c6 (diff) | |
download | dabmod-0c96ac35b3d6758a556959b37ee2316357e0ae0c.tar.gz dabmod-0c96ac35b3d6758a556959b37ee2316357e0ae0c.tar.bz2 dabmod-0c96ac35b3d6758a556959b37ee2316357e0ae0c.zip |
Move MemlessPoly m_coefs to private
Diffstat (limited to 'src/DabModulator.cpp')
-rw-r--r-- | src/DabModulator.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/DabModulator.cpp b/src/DabModulator.cpp index 4e0bc33..5282a2d 100644 --- a/src/DabModulator.cpp +++ b/src/DabModulator.cpp @@ -223,12 +223,6 @@ int DabModulator::process(Buffer* dataOut) shared_ptr<MemlessPoly> cifPoly; if (not myPolyCoefFilename.empty()) { cifPoly = make_shared<MemlessPoly>(myPolyCoefFilename); - etiLog.level(debug) << myPolyCoefFilename << "\n"; - etiLog.level(debug) << cifPoly->m_coefs[0] << " " << - cifPoly->m_coefs[1] << " "<< cifPoly->m_coefs[2] << " "<< - cifPoly->m_coefs[3] << " "<< cifPoly->m_coefs[4] << " "<< - cifPoly->m_coefs[5] << " "<< cifPoly->m_coefs[6] << " "<< - cifPoly->m_coefs[7] << "\n"; rcs.enrol(cifPoly.get()); } |