mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2026-06-27 22:14:26 -04:00
Remove public access to demod internal state vars and clean-up improper use
This commit is contained in:
@@ -70,8 +70,8 @@ std::vector<DemodulatorInstance *> *DemodulatorMgr::getDemodulatorsAt(long long
|
||||
for (int i = 0, iMax = demods.size(); i < iMax; i++) {
|
||||
DemodulatorInstance *testDemod = demods[i];
|
||||
|
||||
long long freqTest = testDemod->getParams().frequency;
|
||||
long long bandwidthTest = testDemod->getParams().bandwidth;
|
||||
long long freqTest = testDemod->getFrequency();
|
||||
long long bandwidthTest = testDemod->getBandwidth();
|
||||
long long halfBandwidthTest = bandwidthTest / 2;
|
||||
|
||||
long long halfBuffer = bandwidth / 2;
|
||||
|
||||
Reference in New Issue
Block a user