1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-07-11 13:24:19 -04:00

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
+5 -5
View File
@@ -68,7 +68,7 @@ ATVDemod::~ATVDemod()
{
}
bool ATVDemod::SetATVScreen(ATVScreen *objScreen)
bool ATVDemod::setATVScreen(ATVScreen *objScreen)
{
m_objRegisteredATVScreen = objScreen;
}
@@ -473,7 +473,7 @@ bool ATVDemod::handleMessage(const Message& cmd)
qDebug() << "ATVDemod::handleMessage: MsgChannelizerNotification:"
<< " m_intMsps: " << m_objConfig.m_intSampleRate;
ApplySettings();
applySettings();
return true;
}
@@ -502,7 +502,7 @@ bool ATVDemod::handleMessage(const Message& cmd)
<< " m_blnHSync" << m_objConfig.m_blnHSync
<< " m_blnVSync" << m_objConfig.m_blnVSync;
ApplySettings();
applySettings();
return true;
}
@@ -512,7 +512,7 @@ bool ATVDemod::handleMessage(const Message& cmd)
}
}
void ATVDemod::ApplySettings()
void ATVDemod::applySettings()
{
if (m_objConfig.m_intSampleRate == 0)
@@ -555,7 +555,7 @@ void ATVDemod::ApplySettings()
m_objRunning.m_blnVSync = m_objConfig.m_blnVSync;
}
int ATVDemod::GetSampleRate()
int ATVDemod::getSampleRate()
{
return m_objRunning.m_intSampleRate;
}
+3 -3
View File
@@ -93,8 +93,8 @@ public:
virtual void stop();
virtual bool handleMessage(const Message& cmd);
bool SetATVScreen(ATVScreen *objScreen);
int GetSampleRate();
bool setATVScreen(ATVScreen *objScreen);
int getSampleRate();
double getMagSq() const { return m_objMagSqAverage.average(); } //!< Beware this is scaled to 2^30
private:
@@ -199,7 +199,7 @@ private:
static const float m_fltSecondToUs;
void ApplySettings();
void applySettings();
};
+2 -2
View File
@@ -217,7 +217,7 @@ ATVDemodGUI::ATVDemodGUI(PluginAPI* objPluginAPI, DeviceSourceAPI *objDeviceAPI,
connect(this, SIGNAL(menuDoubleClickEvent()), this, SLOT(onMenuDoubleClicked()));
m_objATVDemod = new ATVDemod();
m_objATVDemod->SetATVScreen(ui->screenTV);
m_objATVDemod->setATVScreen(ui->screenTV);
m_objChannelizer = new DownChannelizer(m_objATVDemod);
m_objThreadedChannelizer = new ThreadedBasebandSampleSink(m_objChannelizer, this);
@@ -289,7 +289,7 @@ void ATVDemodGUI::applySettings()
qDebug() << "ATVDemodGUI::applySettings:"
<< " 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_blnDoApplySettings = false; // avoid infinite recursion