ATV Demod: method names should start with lowercase

This commit is contained in:
f4exb 2017-03-17 02:05:13 +01:00
parent f84b19c828
commit 8bafb07795
3 changed files with 10 additions and 10 deletions

View File

@ -68,7 +68,7 @@ ATVDemod::~ATVDemod()
{ {
} }
bool ATVDemod::SetATVScreen(ATVScreen *objScreen) bool ATVDemod::setATVScreen(ATVScreen *objScreen)
{ {
m_objRegisteredATVScreen = objScreen; m_objRegisteredATVScreen = objScreen;
} }
@ -473,7 +473,7 @@ bool ATVDemod::handleMessage(const Message& cmd)
qDebug() << "ATVDemod::handleMessage: MsgChannelizerNotification:" qDebug() << "ATVDemod::handleMessage: MsgChannelizerNotification:"
<< " m_intMsps: " << m_objConfig.m_intSampleRate; << " m_intMsps: " << m_objConfig.m_intSampleRate;
ApplySettings(); applySettings();
return true; return true;
} }
@ -502,7 +502,7 @@ bool ATVDemod::handleMessage(const Message& cmd)
<< " m_blnHSync" << m_objConfig.m_blnHSync << " m_blnHSync" << m_objConfig.m_blnHSync
<< " m_blnVSync" << m_objConfig.m_blnVSync; << " m_blnVSync" << m_objConfig.m_blnVSync;
ApplySettings(); applySettings();
return true; return true;
} }
@ -512,7 +512,7 @@ bool ATVDemod::handleMessage(const Message& cmd)
} }
} }
void ATVDemod::ApplySettings() void ATVDemod::applySettings()
{ {
if (m_objConfig.m_intSampleRate == 0) if (m_objConfig.m_intSampleRate == 0)
@ -555,7 +555,7 @@ void ATVDemod::ApplySettings()
m_objRunning.m_blnVSync = m_objConfig.m_blnVSync; m_objRunning.m_blnVSync = m_objConfig.m_blnVSync;
} }
int ATVDemod::GetSampleRate() int ATVDemod::getSampleRate()
{ {
return m_objRunning.m_intSampleRate; return m_objRunning.m_intSampleRate;
} }

View File

@ -93,8 +93,8 @@ public:
virtual void stop(); virtual void stop();
virtual bool handleMessage(const Message& cmd); virtual bool handleMessage(const Message& cmd);
bool SetATVScreen(ATVScreen *objScreen); bool setATVScreen(ATVScreen *objScreen);
int GetSampleRate(); int getSampleRate();
double getMagSq() const { return m_objMagSqAverage.average(); } //!< Beware this is scaled to 2^30 double getMagSq() const { return m_objMagSqAverage.average(); } //!< Beware this is scaled to 2^30
private: private:
@ -199,7 +199,7 @@ private:
static const float m_fltSecondToUs; static const float m_fltSecondToUs;
void ApplySettings(); void applySettings();
}; };

View File

@ -217,7 +217,7 @@ ATVDemodGUI::ATVDemodGUI(PluginAPI* objPluginAPI, DeviceSourceAPI *objDeviceAPI,
connect(this, SIGNAL(menuDoubleClickEvent()), this, SLOT(onMenuDoubleClicked())); connect(this, SIGNAL(menuDoubleClickEvent()), this, SLOT(onMenuDoubleClicked()));
m_objATVDemod = new ATVDemod(); m_objATVDemod = new ATVDemod();
m_objATVDemod->SetATVScreen(ui->screenTV); m_objATVDemod->setATVScreen(ui->screenTV);
m_objChannelizer = new DownChannelizer(m_objATVDemod); m_objChannelizer = new DownChannelizer(m_objATVDemod);
m_objThreadedChannelizer = new ThreadedBasebandSampleSink(m_objChannelizer, this); m_objThreadedChannelizer = new ThreadedBasebandSampleSink(m_objChannelizer, this);
@ -289,7 +289,7 @@ void ATVDemodGUI::applySettings()
qDebug() << "ATVDemodGUI::applySettings:" qDebug() << "ATVDemodGUI::applySettings:"
<< " m_objChannelizer.inputSampleRate: " << m_objChannelizer->getInputSampleRate() << " m_objChannelizer.inputSampleRate: " << m_objChannelizer->getInputSampleRate()
<< " m_objATVDemod.sampleRate: " << m_objATVDemod->GetSampleRate(); << " m_objATVDemod.sampleRate: " << m_objATVDemod->getSampleRate();
//m_objChannelMarker.setBandwidth(m_objATVDemod->GetSampleRate()); it is unreliable at this moment //m_objChannelMarker.setBandwidth(m_objATVDemod->GetSampleRate()); it is unreliable at this moment
m_blnDoApplySettings = false; // avoid infinite recursion m_blnDoApplySettings = false; // avoid infinite recursion