Separate variables for the decoding parameters that had been packed into ndepth.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6170 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor
2015-11-24 15:05:45 +00:00
parent 818c6f1724
commit b71d62a873
8 changed files with 30 additions and 27 deletions
+7 -3
View File
@@ -1660,9 +1660,13 @@ void MainWindow::decode() //decode()
}
jt9com_.nfqso=m_wideGraph->rxFreq();
jt9com_.ndepth=100000 + 1000*m_config.ntrials() + 10*m_config.aggressive() + m_ndepth;
if(m_config.twoPass()) jt9com_.ndepth += 100000;
if(m_config.sync1Bit()) jt9com_.ndepth += 10000;
jt9com_.ndepth=m_ndepth;
jt9com_.n2pass=1;
if(m_config.twoPass()) jt9com_.n2pass=2;
jt9com_.nranera=m_config.ntrials();
jt9com_.naggressive=m_config.aggressive();
jt9com_.nrobust=0;
if(m_config.sync1Bit()) jt9com_.nrobust=1;
jt9com_.ndiskdat=0;
if(m_diskData) jt9com_.ndiskdat=1;
jt9com_.nfa=m_wideGraph->nStartFreq();